Home
last modified time | relevance | path

Searched refs:childPath (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/npm/node_modules/worker-farm/tests/
Dindex.js6 , childPath = require.resolve('./child') constant
24 let child = workerFarm(childPath)
41 let child = workerFarm(childPath, [ 'run0' ])
57 … let child = workerFarm({ onChild: function(subprocess) { childPid = subprocess.pid } }, childPath)
75 let child = workerFarm({ maxConcurrentWorkers: 1 }, childPath)
100 let child = workerFarm({ maxConcurrentWorkers: 2 }, childPath)
125 let child = workerFarm({ maxConcurrentWorkers: 10 }, childPath)
146 let child = workerFarm({ maxConcurrentWorkers: 3, autoStart: true }, childPath, ['uptime'])
177 }, childPath)
207 }, childPath)
[all …]
/third_party/node/deps/npm/test/tap/
Dinstall-shrinkwrapped-git.js17 var childPath = resolve(mockPath, 'child.git') variable
39 mkdirp.sync(childPath)
40 fs.writeFileSync(resolve(childPath, 'package.json'), childPackageJSON)
107 var opts = { cwd: childPath, env: { PATH: process.env.PATH } }
109 [fs.writeFile, path.join(childPath, 'README.md'), ''],
126 path: childPath,
Dunit-child-path.js3 var childPath = require('../../lib/utils/child-path.js') variable
8 path.resolve(childPath('/path/to', {name: 'abc'})),
12 path.resolve(childPath('/path/to', {package: {name: '@zed/abc'}})),
Dgit-prepare.js155 const childPath = path.join(testdir, 'deps', 'child')
157 path: childPath,
160 'clone', '--bare', childPath, 'child.git'
/third_party/node/deps/npm/lib/install/
Dinflate-bundled.js3 var childPath = require('../utils/child-path.js') variable
13 child.path = childPath(parent.path, child)
14 child.realpath = bundler.isLink ? child.realpath : childPath(parent.realpath, child)
Dinflate-shrinkwrap.js6 const childPath = require('../utils/child-path.js') constant
206 path: childPath(tree.path, pkg),
207 realpath: isDirectory ? requested.fetchSpec : childPath(tree.realpath, pkg),
231 path: childPath(tree.path, pkg),
232 realpath: isLink ? requested.fetchSpec : childPath(tree.realpath, pkg),
/third_party/node/deps/npm/lib/utils/
Dchild-path.js6 module.exports = childPath
7 function childPath (parentPath, child) { function
/third_party/node/test/fixtures/
Dparent-process-nonpersistent.js4 childPath = path.join(__dirname, 'child-process-persistent.js'); constant
6 var child = spawn(process.execPath, [ childPath ], {
/third_party/node/test/parallel/
Dtest-coverage-with-inspector-disabled.js12 const childPath = fixtures.path('v8-coverage/subprocess'); constant
15 [childPath],
Dtest-child-process-detached.js28 const childPath = fixtures.path('parent-process-nonpersistent.js'); constant
31 const child = spawn(process.execPath, [ childPath ]);
/third_party/flutter/skia/experimental/svg/model/
DSkSVGContainer.cpp34 const SkPath childPath = fChildren[i]->asPath(ctx); in onAsPath() local
36 Op(path, childPath, kUnion_SkPathOp, &path); in onAsPath()
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs180 var childPath = path.Length == 0 ? entry.Key : path + "." + entry.Key; in GetFieldPaths()
181 GetFieldPaths(entry.Value, childPath, paths); in GetFieldPaths()
297 var childPath = path.Length == 0 ? entry.Key : path + "." + entry.Key; in Merge()
298 … Merge(entry.Value, childPath, (IMessage)sourceField, (IMessage)destinationField, options); in Merge()
/third_party/skia/modules/svg/src/
DSkSVGContainer.cpp34 const SkPath childPath = fChildren[i]->asPath(ctx); in onAsPath() local
36 Op(path, childPath, kUnion_SkPathOp, &path); in onAsPath()
/third_party/node/lib/internal/fs/
Drimraf.js143 const childPath = Buffer.concat([pathBuf, separator, child]);
145 rimraf(childPath, options, (err) => {
244 const childPath = Buffer.concat([pathBuf, separator, child]);
246 rimrafSync(childPath, options);
/third_party/node/deps/npm/node_modules/libcipm/lib/
Dextract.js37 child (name, child, childPath, opts) { argument
44 const args = [spec, childPath, childOpts]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskTree.java199 String childPath = path.isEmpty() ? entry.getKey() : path + "." + entry.getKey(); in getFieldPaths() local
200 getFieldPaths(entry.getValue(), childPath, paths); in getFieldPaths() local
291 String childPath = path.isEmpty() ? entry.getKey() : path + "." + entry.getKey(); in merge() local
293 merge(entry.getValue(), childPath, (Message) source.getField(field), childBuilder, options); in merge() local
/third_party/node/deps/npm/lib/
Ddedupe.js20 var childPath = require('./utils/child-path.js') variable
100 node.path = childPath(hoistTo.path, node)