Searched refs:subprocesses (Results 1 – 25 of 39) sorted by relevance
12
/third_party/ninja/misc/ |
D | inherited-fds.ninja | 2 # Ninja subprocesses, to help verify we don't accidentally leak 5 # Because one fd leak was in the code managing multiple subprocesses, 6 # this test brings up multiple subprocesses and then dumps the fd
|
/third_party/node/test/pummel/ |
D | test-hash-seed.js | 28 const subprocesses = [...new Array(kRepetitions)].map(generateSeed); variable 30 Promise.all(subprocesses)
|
/third_party/node/test/internet/ |
D | test-dgram-broadcast-multi-process.js | 210 function killSubprocesses(subprocesses) { argument 211 Object.keys(subprocesses).forEach((key) => { 212 const subprocess = subprocesses[key];
|
D | test-dgram-multicast-multi-process.js | 125 function killSubprocesses(subprocesses) { argument 126 Object.keys(subprocesses).forEach(function(key) { 127 const subprocess = subprocesses[key];
|
D | test-dgram-multicast-set-interface-lo.js | 87 const killSubprocesses = (subprocesses) => { argument 88 for (const i in subprocesses) 89 subprocesses[i].kill();
|
/third_party/python/Doc/library/ |
D | asyncio-subprocess.rst | 15 create and manage subprocesses. 48 and monitor multiple subprocesses in parallel. It is indeed trivial 124 asyncio also has the following *low-level* APIs to work with subprocesses: 164 wrapper that allows communicating with subprocesses and watching for 312 Standard asyncio event loop supports running subprocesses from different threads by 315 On Windows subprocesses are provided by :class:`ProactorEventLoop` only (default), 324 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
|
D | socketserver.rst | 178 connected for a long time (if threads or subprocesses cannot be used). See
|
D | asyncio-eventloop.rst | 17 IO operations, and run subprocesses. 1251 subprocesses, whereas :class:`SelectorEventLoop` does not. See
|
D | contextlib.rst | 340 applications. It also has no effect on the output of subprocesses.
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
D | capture_replay_tests.py | 132 self.subprocesses = {} 146 self.subprocesses[proc.Pid()] = proc 149 returncode, output = self.subprocesses[proc.Pid()].Join(timeout) 168 assert subprocess_id in self.subprocesses 169 self.subprocesses[subprocess_id].Kill() 170 del self.subprocesses[subprocess_id] 176 for subprocess_id in self.subprocesses: 177 self.subprocesses[subprocess_id].Kill() 182 self.subprocesses = {}
|
/third_party/mbedtls/tests/ |
D | CMakeLists.txt | 136 # CMake generates sub-makefiles for each target and calls them in subprocesses.
|
/third_party/python/Mac/ |
D | README.rst | 181 not automatically carry through to subprocesses launched by programs and tests 183 subprocesses also run in 32-bit-mode if the main interpreter does, use
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a2.rst | 711 regrtest now uses subprocesses when the -j1 command line option is used:
|
/third_party/glib/patch/ |
D | backport-gtestutils-Add-G_TEST_SUBPROCESS_DEFAULT.patch | 7 This makes calls to test subprocesses with default behaviour more
|
/third_party/python/Lib/idlelib/ |
D | NEWS2x.txt | 483 concurrent IDLE instances with subprocesses is a future feature)
|
/third_party/libwebsockets/ |
D | CMakeLists.txt | 297 option(LWS_WITH_SPAWN "Spawn subprocesses with piped stdin/out/stderr" OFF)
|
/third_party/python/Doc/using/ |
D | cmdline.rst | 894 library), the updated setting is also seen in subprocesses (regardless of
|
12