Current Path: > > opt > alt > python310 > > lib64 > python3.10 > 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 03 2025 18:23:41. | |
connection.py | File | 31685 bytes | June 03 2025 18:23:41. | |
context.py | File | 11597 bytes | June 03 2025 18:23:41. | |
forkserver.py | File | 12142 bytes | June 03 2025 18:23:41. | |
heap.py | File | 11626 bytes | June 03 2025 18:23:41. | |
managers.py | File | 47502 bytes | June 03 2025 18:23:41. | |
pool.py | File | 32759 bytes | June 03 2025 18:23:41. | |
popen_fork.py | File | 2377 bytes | June 03 2025 18:23:41. | |
popen_forkserver.py | File | 2230 bytes | June 03 2025 18:23:41. | |
popen_spawn_posix.py | File | 2029 bytes | June 03 2025 18:23:41. | |
popen_spawn_win32.py | File | 4011 bytes | June 03 2025 18:23:41. | |
process.py | File | 12089 bytes | June 03 2025 18:23:41. | |
queues.py | File | 12023 bytes | June 03 2025 18:23:41. | |
reduction.py | File | 9512 bytes | June 03 2025 18:23:41. | |
resource_sharer.py | File | 5132 bytes | June 03 2025 18:23:41. | |
resource_tracker.py | File | 8973 bytes | June 03 2025 18:23:41. | |
shared_memory.py | File | 18458 bytes | June 03 2025 18:23:41. | |
sharedctypes.py | File | 6306 bytes | June 03 2025 18:23:41. | |
spawn.py | File | 9296 bytes | June 03 2025 18:23:41. | |
synchronize.py | File | 11610 bytes | June 03 2025 18:23:41. | |
util.py | File | 14024 bytes | June 03 2025 18:23:41. |
# # 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