Home
last modified time | relevance | path

Searched refs:existingPath (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-configure-python.js41 var existingPath = path.join('a', 'b')
42 process.env.PYTHONPATH = existingPath
47 t.equal(process.env.PYTHONPATH, [EXPECTED_PYPATH, existingPath].join(SEPARATOR))
50 t.deepEqual(dirs, [EXPECTED_PYPATH, existingPath])
63 var existingPath = [pythonDir1, pythonDir2].join(SEPARATOR)
64 process.env.PYTHONPATH = existingPath
69 t.equal(process.env.PYTHONPATH, [EXPECTED_PYPATH, existingPath].join(SEPARATOR))
/third_party/node/lib/internal/fs/
Dpromises.js590 async function link(existingPath, newPath) { argument
591 existingPath = getValidatedPath(existingPath, 'existingPath');
593 return binding.link(pathModule.toNamespacedPath(existingPath),
/third_party/node/lib/
Dfs.js1218 function link(existingPath, newPath, callback) { argument
1221 existingPath = getValidatedPath(existingPath, 'existingPath');
1227 binding.link(pathModule.toNamespacedPath(existingPath),
1232 function linkSync(existingPath, newPath) { argument
1233 existingPath = getValidatedPath(existingPath, 'existingPath');
1236 const ctx = { path: existingPath, dest: newPath };
1237 const result = binding.link(pathModule.toNamespacedPath(existingPath),
/third_party/node/deps/npm/node_modules/npm-lifecycle/
Dindex.js137 const existingPath = mergePath(env)
138 if (existingPath) pathArr.push(existingPath)
/third_party/node/doc/api/
Dfs.md736 ### `fsPromises.link(existingPath, newPath)`
741 * `existingPath` {string|Buffer|URL}
745 Creates a new link from the `existingPath` to the `newPath`. See the POSIX
2409 ### `fs.link(existingPath, newPath, callback)`
2419 description: The `existingPath` and `newPath` parameters can be WHATWG
2428 * `existingPath` {string|Buffer|URL}
2433 Creates a new link from the `existingPath` to the `newPath`. See the POSIX
4396 ### `fs.linkSync(existingPath, newPath)`
4402 description: The `existingPath` and `newPath` parameters can be WHATWG
4407 * `existingPath` {string|Buffer|URL}
[all …]