/third_party/node/test/sequential/ |
D | test-child-process-execsync.js | 29 const { execFileSync, execSync, spawnSync } = require('child_process'); 39 function() { execSync('exit -1', { shell: 'bad_shell' }); }, 52 ret = execSync(cmd, { timeout: TIMER }); 67 execSync('iamabadcommand'); 78 const ret = execSync(cmd); 84 const ret = execSync(cmd, { encoding: 'utf8' }); 107 const response = execSync(cmd, { cwd }); 116 execSync('exit -1', { stdio: 'ignore' });
|
D | test-child-process-emfile.js | 31 const ulimit = Number(child_process.execSync('ulimit -Hn'));
|
/third_party/node/test/parallel/ |
D | test-child-process-execsync-maxbuf.js | 9 const { execSync } = require('child_process'); 21 execSync(`"${process.execPath}" ${args.join(' ')}`, { maxBuffer: 1 }); 35 const ret = execSync( 46 execSync( 59 const ret = execSync(
|
D | test-fs-mkdir-recursive-eaccess.js | 19 const { execSync } = require('child_process'); 29 execSync(`icacls ${dir} /inheritance:r`); 30 execSync(`icacls ${dir} /deny "everyone":W`); 39 execSync(`icacls ${dir} /grant "everyone":W`);
|
D | test-module-readonly.js | 27 cp.execSync( 31 cp.execSync(`icacls.exe "${readOnlyModFullPath}" /grant "%USERNAME%":RX`); 42 cp.execSync(
|
D | test-module-loading-error.js | 25 const { execSync } = require('child_process'); 52 localeOk = execSync(powerShellFindMUI).toString('utf8').trim() === 'en';
|
D | test-repl-persistent-history.js | 143 const execSync = require('child_process').execSync; constant 144 execSync(`ATTRIB +H "${emptyHiddenHistoryPath}"`, (err) => {
|
D | test-repl-programmatic-history.js | 139 const execSync = require('child_process').execSync; constant 140 execSync(`ATTRIB +H "${emptyHiddenHistoryPath}"`, (err) => {
|
D | test-cluster-fork-windowsHide.js | 61 output = child_process.execSync(
|
D | test-domain-abort-on-uncaught.js | 216 child_process.execSync(testCmd);
|
/third_party/weex-loader/deps/weex-scripter/lib/ |
D | require-bundle.js | 2 var execSync = require('child_process').execSync variable 23 var bundleCode = execSync(cmd)
|
/third_party/typescript/scripts/ |
D | configureLanguageServiceBuild.ts | 5 import { execSync } from "child_process"; 68 execSync("rm -rf loc", { cwd: dirname(packageJsonFilePath) }); 71 execSync("rm -rf bin", { cwd: dirname(packageJsonFilePath) });
|
D | produceLKG.ts | 102 childProcess.execSync(cmdLine);
|
D | createPlaygroundBuild.js | 45 …const npmLsOutput = JSON.parse(child_process.execSync("npm ls typescript --depth=0 --json=true").t…
|
/third_party/node/test/pseudo-tty/ |
D | test-repl-external-module.js | 5 const { execSync } = require('child_process'); 7 execSync(process.execPath, {
|
/third_party/node/deps/npm/scripts/ |
D | changelog.js | 14 const execSync = require('child_process').execSync constant 16 const log = execSync(`git log --reverse --pretty='format:%h %H%d %s (%aN)%n%b%n---%n' ${branch}...`…
|
D | update-dist-tags.js | 19 const { execSync } = require('child_process') 107 …const result = execSync(`npm dist-tag set npm@${version} ${tag} --otp=${otp}`, { encoding: 'utf-8'… 117 const result = execSync(`npm dist-tag rm npm ${tag} --otp=${otp}`, { encoding: 'utf-8' })
|
/third_party/node/benchmark/child_process/ |
D | child-process-exec-stdout.js | 3 const { exec, execSync } = require('child_process'); 32 execSync(`taskkill /f /t /pid ${child.pid}`);
|
D | child-process-read.js | 35 child_process.execSync(`taskkill /f /t /pid ${child.pid}`);
|
/third_party/node/tools/doc/ |
D | apilinks.mjs | 26 function execSync(command) { function 28 return child_process.execSync( 38 const localBranch = execSync('git name-rev --name-only HEAD'); 39 const trackingRemote = execSync(`git config branch.${localBranch}.remote`); 40 const remoteUrl = execSync(`git config remote.${trackingRemote}.url`); 44 const hash = execSync('git log -1 --pretty=%H') || 'master'; 45 const tag = execSync(`git describe --contains ${hash}`).split('\n')[0] || hash;
|
/third_party/node/tools/ |
D | lint-sh.js | 4 const { execSync, spawn } = require('child_process'); 91 execSync('command -v ' + (USE_NPX ? 'npx' : SHELLCHECK_EXE_NAME)) 113 process.env.GIT || execSync('command -v git').toString().trim();
|
/third_party/node/test/pummel/ |
D | test-fs-readfile-tostring-fail.js | 13 if (common.isAIX && (Number(cp.execSync('ulimit -f')) * 512) < kStringMaxLength)
|
/third_party/node/deps/npm/node_modules/performance-now/test/ |
D | scripts.coffee | 2 exec = require("child_process").execSync
|
/third_party/node/test/common/ |
D | index.js | 27 const { exec, execSync, spawnSync } = require('child_process'); 431 const output = execSync(`${whoamiPath} /priv`, { timeout: 1000 }); 813 execSync('sysctl -n security.jail.jailed').toString() === '1\n') {
|
/third_party/node/lib/ |
D | child_process.js | 854 function execSync(command, options) { function 935 execSync, property
|