[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib64
/
python3.12
/
multiprocessing
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📁 dummy
SET
[ DEL ]
📄 __init__.py
916 B
SET
[ EDIT ]
|
[ DEL ]
📄 connection.py
41,398 B
SET
[ EDIT ]
|
[ DEL ]
📄 context.py
11,673 B
SET
[ EDIT ]
|
[ DEL ]
📄 forkserver.py
12,202 B
SET
[ EDIT ]
|
[ DEL ]
📄 heap.py
11,626 B
SET
[ EDIT ]
|
[ DEL ]
📄 managers.py
47,893 B
SET
[ EDIT ]
|
[ DEL ]
📄 pool.py
32,760 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_fork.py
2,377 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_forkserver.py
2,230 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_spawn_posix.py
2,029 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_spawn_win32.py
4,515 B
SET
[ EDIT ]
|
[ DEL ]
📄 process.py
12,139 B
SET
[ EDIT ]
|
[ DEL ]
📄 queues.py
12,693 B
SET
[ EDIT ]
|
[ DEL ]
📄 reduction.py
9,512 B
SET
[ EDIT ]
|
[ DEL ]
📄 resource_sharer.py
5,145 B
SET
[ EDIT ]
|
[ DEL ]
📄 resource_tracker.py
11,077 B
SET
[ EDIT ]
|
[ DEL ]
📄 shared_memory.py
18,458 B
SET
[ EDIT ]
|
[ DEL ]
📄 sharedctypes.py
6,306 B
SET
[ EDIT ]
|
[ DEL ]
📄 spawn.py
9,644 B
SET
[ EDIT ]
|
[ DEL ]
📄 synchronize.py
12,272 B
SET
[ EDIT ]
|
[ DEL ]
📄 util.py
14,261 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: __init__.py
# # 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__']