Home
last modified time | relevance | path

Searched refs:spawn (Results 51 - 75 of 1388) sorted by relevance

12345678910>>...56

/third_party/node/deps/npm/node_modules/foreground-child/dist/cjs/
H A Dindex.js8 const cross_spawn_1 = __importDefault(require("cross-spawn"));
13 const spawn = process?.platform === 'win32' ? cross_spawn_1.default : child_process_1.spawn;
52 const child = spawn(program, args, spawnOpts);
/third_party/node/test/parallel/
H A Dtest-tracing-no-crash.js4 const { spawn } = require('child_process');
11 const child = spawn(process.execPath, [
H A Dtest-child-process-flush-stdio.js10 const p = cp.spawn('echo', [], opts);
22 const p = cp.spawn('echo', ['123'], opts);
H A Dtest-child-process-spawn-args.js4 // can be used as a placeholder for the second argument (`args`) of `spawn()`.
13 const { spawn } = require('child_process');
39 const subprocess = spawn(command, testCase, options);
H A Dtest-process-exit-code.js43 const { spawn } = require('child_process');
49 spawn(node, [f, arg], option).on('exit', (code) => {
H A Dtest-child-process-bad-stdio.js12 // Monkey patch spawn() to create a child process normally, but destroy the
16 const original = ChildProcess.prototype.spawn;
18 ChildProcess.prototype.spawn = function() {
H A Dtest-child-process-send-returns-boolean.js10 const { fork, spawn } = require('child_process');
26 // Test `send` return value on `spawn` and saturate backlog with handles.
27 // Call `spawn` with options that open an IPC channel.
29 const s = spawn(process.execPath, [subScript], spawnOptions);
H A Dtest-child-process-cwd.js29 const { spawn } = require('child_process');
36 const child = spawn(...common.pwdCommand, options);
H A Dtest-inspector-port-zero.js7 const { spawn } = require('child_process');
11 const proc = spawn(process.execPath, args);
/third_party/python/Lib/distutils/
H A Dbcppcompiler.py113 self.spawn (["brcc32", "-fo", obj, src])
135 self.spawn ([self.cc] + compile_opts + pp_opts +
162 self.spawn ([self.lib] + lib_args)
256 # 'spawn()', so constructing the argument list is a bit
259 # because 'spawn()' would quote any filenames with spaces in
296 self.spawn ([self.linker] + ld_args)
388 self.spawn(pp_args)
H A Dunixccompiler.py107 self.spawn(pp_args)
117 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
131 self.spawn(self.archiver +
142 self.spawn(self.ranlib + [output_filename])
204 self.spawn(linker + ld_args)
H A Dmsvccompiler.py379 self.spawn([self.rc] + pp_opts +
400 self.spawn([self.mc] +
405 self.spawn([self.rc] +
418 self.spawn([self.cc] + compile_opts + pp_opts +
445 self.spawn([self.lib] + lib_args)
523 self.spawn([self.linker] + ld_args)
H A Dmsvc9compiler.py492 self.spawn([self.rc] + pp_opts +
513 self.spawn([self.mc] +
518 self.spawn([self.rc] +
531 self.spawn([self.cc] + compile_opts + pp_opts +
558 self.spawn([self.lib] + lib_args)
639 self.spawn([self.linker] + ld_args)
653 self.spawn(['mt.exe', '-nologo', '-manifest',
H A Dcmd.py362 def spawn(self, cmd, search_path=1, level=1): member in Command
364 from distutils.spawn import spawn namespace
365 spawn(cmd, search_path, dry_run=self.dry_run)
H A Dcygwinccompiler.py59 from distutils.spawn import find_executable
162 self.spawn(["windres", "-i", src, "-o", obj])
167 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
/third_party/python/Lib/multiprocessing/
H A Dforkserver.py15 from . import spawn namespace
131 data = spawn.get_preparation_data('ignore')
150 exe = spawn.get_executable()
173 spawn.import_main_path(main_path)
313 code = spawn._main(child_r, parent_sentinel)
H A Dpopen_forkserver.py9 from . import spawn namespace
42 prep_data = spawn.get_preparation_data(process_obj._name)
/third_party/node/test/es-module/
H A Dtest-esm-preserve-symlinks-main.js4 const { spawn } = require('child_process');
42 spawn(process.execPath, [
/third_party/node/deps/npm/node_modules/@npmcli/git/lib/
H A Dspawn.js1 const spawn = require('@npmcli/promise-spawn')
35 return spawn(gitPath, args, makeOpts(opts))
/third_party/node/test/tick-processor/
H A Dtest-tick-processor-polyfill-brokenfile.js17 const { spawn, spawnSync } = require('child_process');
33 const proc = spawn(process.execPath, [
H A Dtick-processor-base.js14 const proc = cp.spawn(process.execPath, [
36 const proc = cp.spawn(process.execPath, [
/third_party/node/benchmark/misc/
H A Dprint.js3 const { spawn } = require('child_process');
13 return spawn(cmd, argv);
/third_party/rust/crates/once_cell/examples/
H A Dbench_vs_lazy_static.rs17 .map(|_| std::thread::spawn(move || thread_once_cell())) in main()
27 .map(|_| std::thread::spawn(move || thread_lazy_static())) in main()
/third_party/node/test/async-hooks/
H A Dtest-pipewrap.js11 const { spawn } = require('child_process');
19 const nodeVersionSpawn = spawn(process.execPath, [ '--version' ]);
40 'processwrap when sleep.spawn was called');
45 checkInvocations(x, { init: 1 }, 'pipe wrap when sleep.spawn was called');
85 'pipe wrap when sleep.spawn was called');
87 'pipe wrap when sleep.spawn was called');
89 'pipe wrap when sleep.spawn was called');
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DParallel.h74 void spawn(std::function<void()> f);
114 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
131 // the number of spawn() calls. We'll create up to 1024 tasks here. in parallel_for_each()
140 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
155 TG.spawn([=, &Fn] { in parallel_for_each_n()

Completed in 12 milliseconds

12345678910>>...56