Home
last modified time | relevance | path

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

12

/third_party/ninja/misc/
Dinherited-fds.ninja2 # 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/
Dtest-hash-seed.js28 const subprocesses = [...new Array(kRepetitions)].map(generateSeed); variable
30 Promise.all(subprocesses)
/third_party/node/test/internet/
Dtest-dgram-broadcast-multi-process.js210 function killSubprocesses(subprocesses) { argument
211 Object.keys(subprocesses).forEach((key) => {
212 const subprocess = subprocesses[key];
Dtest-dgram-multicast-multi-process.js125 function killSubprocesses(subprocesses) { argument
126 Object.keys(subprocesses).forEach(function(key) {
127 const subprocess = subprocesses[key];
Dtest-dgram-multicast-set-interface-lo.js87 const killSubprocesses = (subprocesses) => { argument
88 for (const i in subprocesses)
89 subprocesses[i].kill();
/third_party/python/Doc/library/
Dasyncio-subprocess.rst15 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
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
Dsocketserver.rst178 connected for a long time (if threads or subprocesses cannot be used). See
Dasyncio-eventloop.rst17 IO operations, and run subprocesses.
1251 subprocesses, whereas :class:`SelectorEventLoop` does not. See
Dcontextlib.rst340 applications. It also has no effect on the output of subprocesses.
/third_party/skia/third_party/externals/angle2/src/tests/
Dcapture_replay_tests.py132 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/
DCMakeLists.txt136 # CMake generates sub-makefiles for each target and calls them in subprocesses.
/third_party/python/Mac/
DREADME.rst181 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/
D3.6.0a2.rst711 regrtest now uses subprocesses when the -j1 command line option is used:
/third_party/glib/patch/
Dbackport-gtestutils-Add-G_TEST_SUBPROCESS_DEFAULT.patch7 This makes calls to test subprocesses with default behaviour more
/third_party/python/Lib/idlelib/
DNEWS2x.txt483 concurrent IDLE instances with subprocesses is a future feature)
/third_party/libwebsockets/
DCMakeLists.txt297 option(LWS_WITH_SPAWN "Spawn subprocesses with piped stdin/out/stderr" OFF)
/third_party/python/Doc/using/
Dcmdline.rst894 library), the updated setting is also seen in subprocesses (regardless of

12