/third_party/node/deps/npm/node_modules/foreground-child/dist/cjs/ |
H A D | index.js | 8 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 D | test-tracing-no-crash.js | 4 const { spawn } = require('child_process'); 11 const child = spawn(process.execPath, [
|
H A D | test-child-process-flush-stdio.js | 10 const p = cp.spawn('echo', [], opts); 22 const p = cp.spawn('echo', ['123'], opts);
|
H A D | test-child-process-spawn-args.js | 4 // 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 D | test-process-exit-code.js | 43 const { spawn } = require('child_process'); 49 spawn(node, [f, arg], option).on('exit', (code) => {
|
H A D | test-child-process-bad-stdio.js | 12 // 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 D | test-child-process-send-returns-boolean.js | 10 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 D | test-child-process-cwd.js | 29 const { spawn } = require('child_process'); 36 const child = spawn(...common.pwdCommand, options);
|
H A D | test-inspector-port-zero.js | 7 const { spawn } = require('child_process'); 11 const proc = spawn(process.execPath, args);
|
/third_party/python/Lib/distutils/ |
H A D | bcppcompiler.py | 113 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 D | unixccompiler.py | 107 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 D | msvccompiler.py | 379 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 D | msvc9compiler.py | 492 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 D | cmd.py | 362 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 D | cygwinccompiler.py | 59 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 D | forkserver.py | 15 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 D | popen_forkserver.py | 9 from . import spawn namespace 42 prep_data = spawn.get_preparation_data(process_obj._name)
|
/third_party/node/test/es-module/ |
H A D | test-esm-preserve-symlinks-main.js | 4 const { spawn } = require('child_process'); 42 spawn(process.execPath, [
|
/third_party/node/deps/npm/node_modules/@npmcli/git/lib/ |
H A D | spawn.js | 1 const spawn = require('@npmcli/promise-spawn') 35 return spawn(gitPath, args, makeOpts(opts))
|
/third_party/node/test/tick-processor/ |
H A D | test-tick-processor-polyfill-brokenfile.js | 17 const { spawn, spawnSync } = require('child_process'); 33 const proc = spawn(process.execPath, [
|
H A D | tick-processor-base.js | 14 const proc = cp.spawn(process.execPath, [ 36 const proc = cp.spawn(process.execPath, [
|
/third_party/node/benchmark/misc/ |
H A D | print.js | 3 const { spawn } = require('child_process'); 13 return spawn(cmd, argv);
|
/third_party/rust/crates/once_cell/examples/ |
H A D | bench_vs_lazy_static.rs | 17 .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 D | test-pipewrap.js | 11 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 D | Parallel.h | 74 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()
|