Searched refs:subprocesses (Results 1 – 25 of 48) sorted by relevance
12
/external/python/cpython3/Doc/library/ |
D | asyncio-subprocess.rst | 15 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
|
D | asyncio.rst | 40 * control :ref:`subprocesses <asyncio-subprocess>`; 51 running :meth:`subprocesses <loop.subprocess_exec>`,
|
D | asyncio-platforms.rst | 78 subprocesses, whereas :class:`SelectorEventLoop` does not.
|
D | asyncio-policy.rst | 227 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
|
D | asyncio-api-index.rst | 108 Utilities to spawn subprocesses and run shell commands.
|
D | asyncio-dev.rst | 102 To handle signals and to execute subprocesses, the event loop must be
|
D | asyncio-llapi-index.rst | 373 Low-level transport abstraction over subprocesses.
|
D | concurrent.futures.rst | 228 The ``__main__`` module must be importable by worker subprocesses. This means
|
D | warnings.rst | 274 os.environ["PYTHONWARNINGS"] = "default" # Also affect subprocesses
|
/external/angle/src/tests/ |
D | capture_replay_tests.py | 206 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/ |
D | build.js | 123 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/ |
D | results.txt | 1 …subprocesses.\n13:22:48 INFO | autoserv| Finished waiting on autotestd to start.\n13:22:48 INFO | …
|
/external/python/cpython2/Doc/library/ |
D | commands.rst | 79 Module for spawning and managing subprocesses.
|
D | popen2.rst | 198 Module for spawning and managing subprocesses.
|
D | os.rst | 278 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
|
D | socketserver.rst | 163 connected for a long time (if threads or subprocesses cannot be used). See
|
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/ |
D | README.rst | 23 for patterns from file descriptors or subprocesses—are also available on
|
/external/autotest/client/tests/crashme/ |
D | crashme_2.4-9.diff | 296 - sprintf(notes,"Creating %d crashme subprocesses",nsubs);} 297 + sprintf(notes,"Creating %ld crashme subprocesses",nsubs);}
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | lldbtest.py | 866 self.subprocesses = [] 946 for p in reversed(self.subprocesses): 949 del self.subprocesses[:] 958 self.subprocesses.append(proc)
|
/external/python/cpython2/Mac/ |
D | README | 170 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/ |
D | README.rst | 178 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/ |
D | 3.6.0a2.rst | 711 regrtest now uses subprocesses when the -j1 command line option is used:
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7b1.rst | 541 CTRL+BREAK events to console subprocesses.
|
D | 2.7.3rc1.rst | 957 inherited by other subprocesses. 1246 process. This could cause failures in non-Distutils subprocesses and was
|
/external/python/cpython2/Doc/faq/ |
D | windows.rst | 325 to console subprocesses which are designed to handle those signals. See
|
12