Current Path: > > lib64 > python3.8 > multiprocessing > >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
dummy | Directory | - | - | |
__init__.py | File | 916 bytes | June 06 2023 13:32:21. | |
connection.py | File | 31856 bytes | October 17 2023 18:02:14. | |
context.py | File | 11257 bytes | June 06 2023 13:32:21. | |
forkserver.py | File | 12531 bytes | June 06 2023 13:32:21. | |
heap.py | File | 11626 bytes | June 06 2023 13:32:21. | |
managers.py | File | 48917 bytes | June 06 2023 13:32:21. | |
pool.py | File | 32509 bytes | June 06 2023 13:32:21. | |
popen_fork.py | File | 2568 bytes | June 06 2023 13:32:21. | |
popen_forkserver.py | File | 2230 bytes | June 06 2023 13:32:21. | |
popen_spawn_posix.py | File | 2029 bytes | June 06 2023 13:32:21. | |
popen_spawn_win32.py | File | 4011 bytes | June 06 2023 13:32:21. | |
process.py | File | 12005 bytes | June 06 2023 13:32:21. | |
queues.py | File | 11690 bytes | June 06 2023 13:32:21. | |
reduction.py | File | 9512 bytes | June 06 2023 13:32:21. | |
resource_sharer.py | File | 5352 bytes | June 06 2023 13:32:21. | |
resource_tracker.py | File | 8613 bytes | June 06 2023 13:32:21. | |
shared_memory.py | File | 17422 bytes | June 06 2023 13:32:21. | |
sharedctypes.py | File | 6306 bytes | June 06 2023 13:32:21. | |
spawn.py | File | 9296 bytes | June 06 2023 13:32:21. | |
synchronize.py | File | 11610 bytes | June 06 2023 13:32:21. | |
util.py | File | 13950 bytes | June 06 2023 13:32:21. |
# # Package analogous to 'threading.py' but using processes # # multiprocessing/__init__.py # # This package is intended to duplicate the functionality (and much of # the API) of threading.py but uses processes instead of threads. A # subpackage 'multiprocessing.dummy' has the same API but is a simple # wrapper for 'threading'. # # Copyright (c) 2006-2008, R Oudkerk # Licensed to PSF under a Contributor Agreement. # import sys from . import context # # Copy stuff from default context # __all__ = [x for x in dir(context._default_context) if not x.startswith('_')] globals().update((name, getattr(context._default_context, name)) for name in __all__) # # XXX These should not really be documented or public. # SUBDEBUG = 5 SUBWARNING = 25 # # Alias for main module -- will be reset by bootstrapping child processes # if '__main__' in sys.modules: sys.modules['__mp_main__'] = sys.modules['__main__']
SILENT KILLER Tool