Home
last modified time | relevance | path

Searched full:join (Results 7251 - 7275 of 7680) sorted by relevance

1...<<291292293294295296297298299300>>...308

/third_party/typescript/src/compiler/
H A Dutilities.ts569 text = text.split(/\r\n|\n|\r/).map(line => trimStringStart(line.replace(/^\s*\*/, ""))).join("\n");
6704 const implicitExcludePathRegexPattern = `(?!(${commonPackageFolders.join("|")})(/|$))`;
6756 const pattern = patterns.map(pattern => `(${pattern})`).join("|");
H A Dprogram.ts2843 fail(Diagnostics.File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1, fileName, "'" + flatten(supportedExtensions).join("', '") + "'");
2877 if (fail && !sourceFileWithAddedExtension) fail(Diagnostics.Could_not_resolve_the_path_0_with_the_extensions_Colon_1, fileName, "'" + flatten(supportedExtensions).join("', '") + "'");
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc1230 p->first->locations_by_path_[Join(loc->path(), ",")] = loc; in BuildLocationsByPath()
1240 return FindPtrOrNull(locations_by_path_, Join(path, ",")); in GetSourceLocation()
2355 output->append(Join(all_options, ", ")); in FormatBracketedOptions()
/third_party/node/doc/api/
H A Dfs.json1816 "desc": "<p>Asynchronously creates a directory.</p>\n<p>The optional <code>options</code> argument can be an integer specifying <code>mode</code> (permission\nand sticky bits), or an object with a <code>mode</code> property and a <code>recursive</code>\nproperty indicating whether parent directories should be created. Calling\n<code>fsPromises.mkdir()</code> when <code>path</code> is a directory that exists results in a\nrejection only when <code>recursive</code> is false.</p>\n<pre><code class=\"language-mjs\">import { mkdir } from 'node:fs/promises';\n\ntry {\n const projectFolder = new URL('./test/project/', import.meta.url);\n const createDir = await mkdir(projectFolder, { recursive: true });\n\n console.log(`created ${createDir}`);\n} catch (err) {\n console.error(err.message);\n}\n</code></pre>\n<pre><code class=\"language-cjs\">const { mkdir } = require('node:fs/promises');\nconst { join } = require('node:path');\n\nasync function makeDirectory() {\n const projectFolder = join(__dirname, 'test', 'project');\n const dirCreation = await mkdir(projectFolder, { recursive: true });\n\n console.log(dirCreation);\n return dirCreation;\n}\n\nmakeDirectory().catch(console.error);\n</code></pre>"
1872 "desc": "<p>Creates a unique temporary directory. A unique directory name is generated by\nappending six random characters to the end of the provided <code>prefix</code>. Due to\nplatform inconsistencies, avoid trailing <code>X</code> characters in <code>prefix</code>. Some\nplatforms, notably the BSDs, can return more than six random characters, and\nreplace trailing <code>X</code> characters in <code>prefix</code> with random characters.</p>\n<p>The optional <code>options</code> argument can be a string specifying an encoding, or an\nobject with an <code>encoding</code> property specifying the character encoding to use.</p>\n<pre><code class=\"language-mjs\">import { mkdtemp } from 'node:fs/promises';\nimport { join } from 'node:path';\nimport { tmpdir } from 'node:os';\n\ntry {\n await mkdtemp(join(tmpdir(), 'foo-'));\n} catch (err) {\n console.error(err);\n}\n</code></pre>\n<p>The <code>fsPromises.mkdtemp()</code> method will append the six randomly selected\ncharacters directly to the <code>prefix</code> string. For instance, given a directory\n<code>/tmp</code>, if the intention is to create a temporary directory <em>within</em> <code>/tmp</code>, the\n<code>prefix</code> must end with a trailing platform-specific path separator\n(<code>require('node:path').sep</code>).</p>"
4634 "desc": "<p>Creates a unique temporary directory.</p>\n<p>Generates six random characters to be appended behind a required\n<code>prefix</code> to create a unique temporary directory. Due to platform\ninconsistencies, avoid trailing <code>X</code> characters in <code>prefix</code>. Some platforms,\nnotably the BSDs, can return more than six random characters, and replace\ntrailing <code>X</code> characters in <code>prefix</code> with random characters.</p>\n<p>The created directory path is passed as a string to the callback's second\nparameter.</p>\n<p>The optional <code>options</code> argument can be a string specifying an encoding, or an\nobject with an <code>encoding</code> property specifying the character encoding to use.</p>\n<pre><code class=\"language-mjs\">import { mkdtemp } from 'node:fs';\nimport { join } from 'node:path';\nimport { tmpdir } from 'node:os';\n\nmkdtemp(join(tmpdir(), 'foo-'), (err, directory) => {\n if (err) throw err;\n console.log(directory);\n // Prints: /tmp/foo-itXde2 or C:\\Users\\...\\AppData\\Local\\Temp\\foo-itXde2\n});\n</code></pre>\n<p>The <code>fs.mkdtemp()</code> method will append the six randomly selected characters\ndirectly to the <code>prefix</code> string. For instance, given a directory <code>/tmp</code>, if the\nintention is to create a temporary directory <em>within</em> <code>/tmp</code>, the <code>prefix</code>\nmust end with a trailing platform-specific path separator\n(<code>require('node:path').sep</code>).</p>\n<pre><code class=\"language-mjs\">import { tmpdir } from 'node:os';\nimport { mkdtemp } from 'node:fs';\n\n// The parent directory for the new temporary directory\nconst tmpDir = tmpdir();\n\n// This method is *INCORRECT*:\nmkdtemp(tmpDir, (err, directory) => {\n if (err) throw err;\n console.log(directory);\n // Will print something similar to `/tmpabc123`.\n // A new temporary directory is created at the file system root\n // rather than *within* the /tmp directory.\n});\n\n// This method is *CORRECT*:\nimport { sep } from 'node:path';\nmkdtemp(`${tmpDir}${sep}`, (err, directory) => {\n if (err) throw err;\n console.log(directory);\n // Will print something similar to `/tmp/abc123`.\n // A new temporary directory is created within\n // the /tmp directory.\n});\n</code></pre>"
H A Dstream.html1928 <span class="hljs-keyword">const</span> content = chunks.<span class="hljs-title function_">join</span>(<span class="hljs-string">''</span>);
2151 <span class="hljs-keyword">const</span> remaining = split.<span class="hljs-title function_">join</span>(<span class="hljs-string">'\n\n'</span>);
2850 <span class="hljs-keyword">import</span> { join } <span class="hljs-keyword">from</span> <span class="hljs-string">'node:path'</span>;
2857 <span class="hljs-keyword">const</span> { size } = <span class="hljs-keyword">await</span> <span class="hljs-title function_">stat</span>(<span class="hljs-title function_">join</span>(directoryPath, file));
2867 <span class="hljs-keyword">import</span> { join } <span class="hljs-keyword">from</span> <span class="hljs-string">'node:path'</span>;
2873 .<span class="hljs-title function_">map</span>(<span class="hljs-function">(<span class="hljs-params">file</span>) =></span> <span class="hljs-title function_">stat</span>(<span class="hljs-title function_">join</span>(directoryPath, file)), { <span class="hljs-attr">concurrency</span>: <span class="hljs-number">2</span> })
H A Dprocess.json533 "desc": "<p>The <code>process.dlopen()</code> method allows dynamically loading shared objects. It is\nprimarily used by <code>require()</code> to load C++ Addons, and should not be used\ndirectly, except in special cases. In other words, <a href=\"globals.html#require\"><code>require()</code></a> should be\npreferred over <code>process.dlopen()</code> unless there are specific reasons such as\ncustom dlopen flags or loading from ES modules.</p>\n<p>The <code>flags</code> argument is an integer that allows to specify dlopen\nbehavior. See the <a href=\"os.html#dlopen-constants\"><code>os.constants.dlopen</code></a> documentation for details.</p>\n<p>An important requirement when calling <code>process.dlopen()</code> is that the <code>module</code>\ninstance must be passed. Functions exported by the C++ Addon are then\naccessible via <code>module.exports</code>.</p>\n<p>The example below shows how to load a C++ Addon, named <code>local.node</code>,\nthat exports a <code>foo</code> function. All the symbols are loaded before\nthe call returns, by passing the <code>RTLD_NOW</code> constant. In this example\nthe constant is assumed to be available.</p>\n<pre><code class=\"language-mjs\">import { dlopen } from 'node:process';\nimport { constants } from 'node:os';\nimport { fileURLToPath } from 'node:url';\n\nconst module = { exports: {} };\ndlopen(module, fileURLToPath(new URL('local.node', import.meta.url)),\n constants.dlopen.RTLD_NOW);\nmodule.exports.foo();\n</code></pre>\n<pre><code class=\"language-cjs\">const { dlopen } = require('node:process');\nconst { constants } = require('node:os');\nconst { join } = require('node:path');\n\nconst module = { exports: {} };\ndlopen(module, join(__dirname, 'local.node'), constants.dlopen.RTLD_NOW);\nmodule.exports.foo();\n</code></pre>"
/base/telephony/call_manager/interfaces/kits/js/
H A D@ohos.telephony.call.d.ts1829 * Join the conference call.
1847 * Join the conference call.
/kernel/linux/linux-5.10/fs/btrfs/
H A Dextent-tree.c5385 * Use join to avoid potential EINTR from transaction start. See in btrfs_drop_snapshot()
5524 * Use join to avoid potential EINTR from transaction in btrfs_drop_snapshot()
/kernel/linux/linux-6.6/drivers/net/bonding/
H A Dbond_main.c842 * device and retransmit an IGMP JOIN request to the current active
4883 * send the join/membership reports. The curr_active_slave found in bond_xmit_roundrobin_slave_get()
/kernel/linux/linux-6.6/fs/btrfs/
H A Dextent-tree.c5664 * Use join to avoid potential EINTR from transaction start. See in btrfs_drop_snapshot()
5808 * Use join to avoid potential EINTR from transaction in btrfs_drop_snapshot()
/third_party/node/deps/v8/src/init/
H A Dbootstrapper.cc1806 SimpleInstallFunction(isolate_, proto, "join", Builtin::kArrayPrototypeJoin, in InitializeGlobal()
3380 SimpleInstallFunction(isolate_, prototype, "join", in InitializeGlobal()
/third_party/node/deps/v8/src/execution/
H A Disolate.cc1913 // Because the array join stack will not pop the elements when throwing the in ThrowInternal()
1914 // uncatchable terminate exception, we need to clear the array join stack to in ThrowInternal()
/third_party/node/deps/openssl/openssl/crypto/chacha/asm/
H A Dchacha-x86_64.pl142 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n";
2483 $code .= "\t$opcode\t".join(',',reverse @_)."\n";
/third_party/rust/crates/clap/src/builder/
H A Dcommand.rs4139 args_missing_help.join(", ")
4355 .join("|");
/third_party/pcre2/pcre2/doc/
H A Dpcre2api.32167 .\" JOIN
2399 .\" JOIN
/third_party/python/Doc/whatsnew/
H A D2.5.rst289 library, ``import py; py.std.string.join()``, but that package isn't available
1502 methods. :meth:`join` blocks until all items in the queue have been retrieved
H A D3.4.rst432 * :class:`bytes`.join() and :class:`bytearray`.join() now accept arbitrary
/third_party/openssl/crypto/chacha/asm/
H A Dchacha-x86_64.pl142 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n";
2483 $code .= "\t$opcode\t".join(',',reverse @_)."\n";
/third_party/typescript/tests/baselines/reference/
H A DfixSignatureCaching.js454 version += numbers.join('');
1426 version += numbers.join('');
/kernel/linux/linux-6.6/include/net/
H A Dmac80211.h314 * @BSS_CHANGED_IBSS: IBSS join status changed
330 * @BSS_CHANGED_OCB: OCB join status changed
4168 * @join_ibss: Join an IBSS (on an IBSS interface); this is called after all
4203 * @start_nan: join an existing NAN cluster, or create a new one.
/third_party/curl/
H A Dltmain.sh1306 # Quote all ARGs to be evaled later and join them into single command. See
5276 # Join marker and all lines until next marker into a single line
10010 # global variables. join(1) would be nice here, but unfortunately
10259 # global variables. join(1) would be nice here, but unfortunately
/third_party/node/deps/cares/
H A Dltmain.sh1306 # Quote all ARGs to be evaled later and join them into single command. See
5276 # Join marker and all lines until next marker into a single line
10010 # global variables. join(1) would be nice here, but unfortunately
10259 # global variables. join(1) would be nice here, but unfortunately
/third_party/node/deps/cares/config/
H A Dltmain.sh1306 # Quote all ARGs to be evaled later and join them into single command. See
5276 # Join marker and all lines until next marker into a single line
10010 # global variables. join(1) would be nice here, but unfortunately
10259 # global variables. join(1) would be nice here, but unfortunately
/third_party/libevdev/build-aux/
H A Dltmain.sh1318 # Quote all ARGs to be evaled later and join them into single command. See
5277 # Join marker and all lines until next marker into a single line
10003 # global variables. join(1) would be nice here, but unfortunately
10252 # global variables. join(1) would be nice here, but unfortunately
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc978 Label join(this); in SmiMod()
979 GotoIfNot(Word32Equal(int_a, Int32Constant(kMinInt)), &join); in SmiMod() local
981 Goto(&join); in SmiMod()
982 BIND(&join); in SmiMod()

Completed in 275 milliseconds

1...<<291292293294295296297298299300>>...308