Home
last modified time | relevance | path

Searched refs:mkdirSync (Results 1 – 25 of 82) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DvoidAsNonAmbiguousReturnType.symbols9 fs.mkdirSync('test'); // should not error - return types are the same
10 >fs.mkdirSync : Symbol(fs.mkdirSync, Decl(voidAsNonAmbiguousReturnType_0.ts, 0, 0), Decl(voidAsNonA…
12 >mkdirSync : Symbol(fs.mkdirSync, Decl(voidAsNonAmbiguousReturnType_0.ts, 0, 0), Decl(voidAsNonAmbi…
16 export function mkdirSync(path: string, mode?: number): void;
17 >mkdirSync : Symbol(mkdirSync, Decl(voidAsNonAmbiguousReturnType_0.ts, 0, 0), Decl(voidAsNonAmbiguo…
21 export function mkdirSync(path: string, mode?: string): void {}
22 >mkdirSync : Symbol(mkdirSync, Decl(voidAsNonAmbiguousReturnType_0.ts, 0, 0), Decl(voidAsNonAmbiguo…
DvoidAsNonAmbiguousReturnType.js4 export function mkdirSync(path: string, mode?: number): void;
5 export function mkdirSync(path: string, mode?: string): void {}
12 fs.mkdirSync('test'); // should not error - return types are the same
19 exports.mkdirSync = void 0;
20 function mkdirSync(path, mode) { } function
21 exports.mkdirSync = mkdirSync;
28 fs.mkdirSync('test'); // should not error - return types are the same
DvoidAsNonAmbiguousReturnType.types9 fs.mkdirSync('test'); // should not error - return types are the same
10 >fs.mkdirSync('test') : void
11 >fs.mkdirSync : (path: string, mode?: number) => void
13 >mkdirSync : (path: string, mode?: number) => void
18 export function mkdirSync(path: string, mode?: number): void;
19 >mkdirSync : (path: string, mode?: number) => void
23 export function mkdirSync(path: string, mode?: string): void {}
24 >mkdirSync : (path: string, mode?: number) => void
DvoidAsNonAmbiguousReturnType.errors.txt9 fs.mkdirSync('test'); // should not error - return types are the same
13 export function mkdirSync(path: string, mode?: number): void;
17 export function mkdirSync(path: string, mode?: string): void {}
/third_party/node/test/parallel/
Dtest-fs-mkdir.js70 fs.mkdirSync(pathname, { mode: 0o777 });
79 fs.mkdirSync(pathname);
96 () => fs.mkdirSync(i),
108 fs.mkdirSync(pathname, { recursive: true });
119 fs.mkdirSync(pathname, { recursive: true });
121 fs.mkdirSync(pathname, { recursive: true });
131 fs.mkdirSync(pathname, { recursive: true });
141 fs.mkdirSync(path.dirname(pathname));
145 () => { fs.mkdirSync(pathname, { recursive: true }); },
160 fs.mkdirSync(path.dirname(filename));
[all …]
Dtest-module-circular-symlinks.js42 fs.mkdirSync(node_modules);
43 fs.mkdirSync(moduleA);
44 fs.mkdirSync(moduleB);
45 fs.mkdirSync(path.join(moduleA, 'node_modules'));
46 fs.mkdirSync(path.join(moduleB, 'node_modules'));
Dtest-module-symlinked-peer-modules.js37 fs.mkdirSync(moduleA);
38 fs.mkdirSync(app);
39 fs.mkdirSync(path.join(app, 'node_modules'));
40 fs.mkdirSync(moduleB);
Dtest-module-loading-globalpaths.js22 fs.mkdirSync(prefixPath);
28 fs.mkdirSync(prefixBinPath);
50 fs.mkdirSync(noPkgHomeDir);
78 fs.mkdirSync(prefixLibPath);
80 fs.mkdirSync(prefixLibNodePath);
Dtest-macos-app-sandbox.js29 fs.mkdirSync(appBundlePath);
30 fs.mkdirSync(appBundleContentPath);
31 fs.mkdirSync(path.join(appBundleContentPath, 'MacOS'));
Dtest-fs-realpath.js62 fs.mkdirSync(targetsAbsDir);
63 fs.mkdirSync(path.join(targetsAbsDir, 'nested-index'));
64 fs.mkdirSync(path.join(targetsAbsDir, 'nested-index', 'one'));
65 fs.mkdirSync(path.join(targetsAbsDir, 'nested-index', 'two'));
314 fs.mkdirSync(tmp('node-test-realpath-d2'), 0o700);
390 fs.mkdirSync(tmp('a'), 0o755);
391 fs.mkdirSync(tmp('a/b'), 0o755);
433 fs.mkdirSync(tmp('a'), 0o755);
434 fs.mkdirSync(tmp('a/b'), 0o755);
501 fs.mkdirSync(root + folder, 0o700);
[all …]
Dtest-fs-mkdir-recursive-eaccess.js46 fs.mkdirSync(dir);
50 fs.mkdirSync(path.join(dir, '/foo'), { recursive: true });
63 fs.mkdirSync(dir);
Dtest-corepack-yarn-install.js15 fs.mkdirSync(npmSandbox);
17 fs.mkdirSync(homeDir);
19 fs.mkdirSync(installDir);
Dtest-npm-install.js15 fs.mkdirSync(npmSandbox);
17 fs.mkdirSync(homeDir);
19 fs.mkdirSync(installDir);
Dtest-fs-symlink-longpath.js12 fs.mkdirSync(longPath, { recursive: true });
16 fs.mkdirSync(targetDirtectory);
Dtest-fs-mkdir-rmdir.js15 fs.mkdirSync(d);
20 fs.mkdirSync(d);
Dtest-fs-rmdir-recursive.js17 fs.mkdirSync(dirname, { recursive: true });
51 fs.mkdirSync(
217 fs.mkdirSync(dir, { recursive: true });
/third_party/typescript/tests/cases/compiler/
DvoidAsNonAmbiguousReturnType.ts3 export function mkdirSync(path: string, mode?: number): void; function
4 export function mkdirSync(path: string, mode?: string): void {}
11 fs.mkdirSync('test'); // should not error - return types are the same
/third_party/node/deps/npm/test/tap/
Dcheck-permissions.js62 fs.mkdirSync(testBase)
63 fs.mkdirSync(existingDir)
64 fs.mkdirSync(writableDir)
65 fs.mkdirSync(nonWritableDir)
/third_party/node/test/wasi/
Dtest-wasi-symlinks.js51 fs.mkdirSync(sandbox);
52 fs.mkdirSync(sandboxedDir);
53 fs.mkdirSync(sandboxedTmp);
/third_party/node/benchmark/module/
Dmodule-loader-deep.js17 fs.mkdirSync(benchmarkDirectory);
23 fs.mkdirSync(`${benchmarkDirectory}/${i}`);
Dmodule-loader.js23 fs.mkdirSync(benchmarkDirectory);
25 fs.mkdirSync(`${benchmarkDirectory}${i}`);
/third_party/node/test/es-module/
Dtest-esm-preserve-symlinks-main.js13 fs.mkdirSync(path.join(tmpDir, 'nested'));
14 fs.mkdirSync(path.join(tmpDir, 'nested2'));
/third_party/typescript_eslint/packages/typescript-estree/tests/lib/
DpersistentParse.test.ts56 fs.mkdirSync(path.join(tmpDir.name, 'src'));
57 fs.mkdirSync(path.join(tmpDir.name, 'src', 'baz'));
141 fs.mkdirSync(path.join(PROJECT_DIR, 'src', 'bat'));
142 fs.mkdirSync(path.join(PROJECT_DIR, 'src', 'bat', 'baz'));
/third_party/typescript/scripts/
DohTestCasesGenerationScript.js135 fs.mkdirSync(ohFourslashCasesDir);
157 fs.mkdirSync(ohCompilerCasesDir);
/third_party/node/tools/
Dtest-npm-package.js21 const { createWriteStream, mkdirSync, rmdirSync } = require('fs');
33 mkdirSync(destination); // Prevent interactive prompt

1234