Home
last modified time | relevance | path

Searched refs:subprocesses (Results 1 – 25 of 48) sorted by relevance

12

/external/python/cpython3/Doc/library/
Dasyncio-subprocess.rst15 create and manage subprocesses.
48 and monitor multiple subprocesses in parallel. It is indeed trivial
119 asyncio also has the following *low-level* APIs to work with subprocesses:
159 wrapper that allows communicating with subprocesses and watching for
307 Standard asyncio event loop supports running subprocesses from different threads by
310 On Windows subprocesses are provided by :class:`ProactorEventLoop` only (default),
319 UNIX switched to use :class:`ThreadedChildWatcher` for spawning subprocesses from
Dasyncio.rst40 * control :ref:`subprocesses <asyncio-subprocess>`;
51 running :meth:`subprocesses <loop.subprocess_exec>`,
Dasyncio-platforms.rst78 subprocesses, whereas :class:`SelectorEventLoop` does not.
Dasyncio-policy.rst227 There is no limitation for running subprocesses from different threads once the
266 loop, and scales linearly with the number of subprocesses launched by the
Dasyncio-api-index.rst108 Utilities to spawn subprocesses and run shell commands.
Dasyncio-dev.rst102 To handle signals and to execute subprocesses, the event loop must be
Dasyncio-llapi-index.rst373 Low-level transport abstraction over subprocesses.
Dconcurrent.futures.rst228 The ``__main__`` module must be importable by worker subprocesses. This means
Dwarnings.rst274 os.environ["PYTHONWARNINGS"] = "default" # Also affect subprocesses
/external/angle/src/tests/
Dcapture_replay_tests.py206 self.subprocesses = {}
216 self.subprocesses[proc.Pid()] = proc
218 returncode, output = self.subprocesses[proc.Pid()].Join(timeout)
233 assert subprocess_id in self.subprocesses
234 self.subprocesses[subprocess_id].Kill()
235 del self.subprocesses[subprocess_id]
241 for subprocess_id in self.subprocesses:
242 self.subprocesses[subprocess_id].Kill()
247 self.subprocesses = {}
/external/perfetto/ui/
Dbuild.js123 let subprocesses = []; variable
154 for (const proc of subprocesses) {
536 const procIndex = subprocesses.length;
537 subprocesses.push(proc);
540 delete subprocesses[procIndex];
/external/toolchain-utils/crosperf/test_cache/test_input/
Dresults.txt1subprocesses.\n13:22:48 INFO | autoserv| Finished waiting on autotestd to start.\n13:22:48 INFO | …
/external/python/cpython2/Doc/library/
Dcommands.rst79 Module for spawning and managing subprocesses.
Dpopen2.rst198 Module for spawning and managing subprocesses.
Dos.rst278 changes to the environment affect subprocesses started with :func:`os.system`,
442 environment affect subprocesses started with :func:`os.system`, :func:`popen` or
515 different ways to create subprocesses.
1976 e.g., some subprocesses. Any other value for *sig* will cause the process
Dsocketserver.rst163 connected for a long time (if threads or subprocesses cannot be used). See
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/
DREADME.rst23 for patterns from file descriptors or subprocesses—are also available on
/external/autotest/client/tests/crashme/
Dcrashme_2.4-9.diff296 - sprintf(notes,"Creating %d crashme subprocesses",nsubs);}
297 + sprintf(notes,"Creating %ld crashme subprocesses",nsubs);}
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbtest.py866 self.subprocesses = []
946 for p in reversed(self.subprocesses):
949 del self.subprocesses[:]
958 self.subprocesses.append(proc)
/external/python/cpython2/Mac/
DREADME170 not automatically carry through to subprocesses launched by programs and tests
172 subprocesses also run in 32-bit-mode if the main interpreter does, use
/external/python/cpython3/Mac/
DREADME.rst178 not automatically carry through to subprocesses launched by programs and tests
180 subprocesses also run in 32-bit-mode if the main interpreter does, use
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a2.rst711 regrtest now uses subprocesses when the -j1 command line option is used:
/external/python/cpython2/Misc/NEWS.d/
D2.7b1.rst541 CTRL+BREAK events to console subprocesses.
D2.7.3rc1.rst957 inherited by other subprocesses.
1246 process. This could cause failures in non-Distutils subprocesses and was
/external/python/cpython2/Doc/faq/
Dwindows.rst325 to console subprocesses which are designed to handle those signals. See

12