Home
last modified time | relevance | path

Searched full:part (Results 23626 - 23650 of 24485) sorted by relevance

1...<<941942943944945946947948949950>>...980

/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/
H A Dssl.h171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Dssl.h171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dssl.h171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/
H A Dssl.h171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
/third_party/node/doc/api/
H A Devents.json447 "desc": "<p>Adds a new handler for the <code>type</code> event. Any given <code>listener</code> is added\nonly once per <code>type</code> and per <code>capture</code> option value.</p>\n<p>If the <code>once</code> option is <code>true</code>, the <code>listener</code> is removed after the\nnext time a <code>type</code> event is dispatched.</p>\n<p>The <code>capture</code> option is not used by Node.js in any functional way other than\ntracking registered event listeners per the <code>EventTarget</code> specification.\nSpecifically, the <code>capture</code> option is used as part of the key when registering\na <code>listener</code>. Any individual <code>listener</code> may be added once with\n<code>capture = false</code>, and once with <code>capture = true</code>.</p>\n<pre><code class=\"language-js\">function handler(event) {}\n\nconst target = new EventTarget();\ntarget.addEventListener('foo', handler, { capture: true }); // first\ntarget.addEventListener('foo', handler, { capture: false }); // second\n\n// Removes the second instance of handler\ntarget.removeEventListener('foo', handler);\n\n// Removes the first instance of handler\ntarget.removeEventListener('foo', handler, { capture: true });\n</code></pre>"
H A Desm.json450 "desc": "<p><code>NODE_PATH</code> is not part of resolving <code>import</code> specifiers. Please use symlinks\nif this behavior is desired.</p>",
H A Devents.md2334 Specifically, the `capture` option is used as part of the key when registering
H A Dpackages.json462 "desc": "<ul>\n<li>Type: <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type\" class=\"type\">&lt;string&gt;</a></li>\n</ul>\n<p>The <code>\"type\"</code> field defines the module format that Node.js uses for all\n<code>.js</code> files that have that <code>package.json</code> file as their nearest parent.</p>\n<p>Files ending with <code>.js</code> are loaded as ES modules when the nearest parent\n<code>package.json</code> file contains a top-level field <code>\"type\"</code> with a value of\n<code>\"module\"</code>.</p>\n<p>The nearest parent <code>package.json</code> is defined as the first <code>package.json</code> found\nwhen searching in the current folder, that folder's parent, and so on up\nuntil a node_modules folder or the volume root is reached.</p>\n<pre><code class=\"language-json\">// package.json\n{\n \"type\": \"module\"\n}\n</code></pre>\n<pre><code class=\"language-bash\"># In same folder as preceding package.json\nnode my-app.js # Runs as ES module\n</code></pre>\n<p>If the nearest parent <code>package.json</code> lacks a <code>\"type\"</code> field, or contains\n<code>\"type\": \"commonjs\"</code>, <code>.js</code> files are treated as <a href=\"modules.html\">CommonJS</a>. If the volume\nroot is reached and no <code>package.json</code> is found, <code>.js</code> files are treated as\n<a href=\"modules.html\">CommonJS</a>.</p>\n<p><code>import</code> statements of <code>.js</code> files are treated as ES modules if the nearest\nparent <code>package.json</code> contains <code>\"type\": \"module\"</code>.</p>\n<pre><code class=\"language-js\">// my-app.js, part of the same example as above\nimport './startup.js'; // Loaded as ES module because of package.json\n</code></pre>\n<p>Regardless of the value of the <code>\"type\"</code> field, <code>.mjs</code> files are always treated\nas ES modules and <code>.cjs</code> files are always treated as CommonJS.</p>",
H A Dasync_context.html326 <p>The <code>AsyncLocalStorage</code> and <code>AsyncResource</code> classes are part of the
H A Dnet.json1550 "desc": "<p>Sends data on the socket. The second parameter specifies the encoding in the\ncase of a string. It defaults to UTF8 encoding.</p>\n<p>Returns <code>true</code> if the entire data was flushed successfully to the kernel\nbuffer. Returns <code>false</code> if all or part of the data was queued in user memory.\n<a href=\"#event-drain\"><code>'drain'</code></a> will be emitted when the buffer is again free.</p>\n<p>The optional <code>callback</code> parameter will be executed when the data is finally\nwritten out, which may not be immediately.</p>\n<p>See <code>Writable</code> stream <a href=\"stream.html#writablewritechunk-encoding-callback\"><code>write()</code></a> method for more\ninformation.</p>"
/third_party/node/deps/v8/src/wasm/baseline/mips/
H A Dliftoff-assembler-mips.h349 // pushed as part of frame construction, so we don't need to allocate memory in PatchPrepareStackFrame()
/third_party/node/deps/v8/src/wasm/baseline/loong64/
H A Dliftoff-assembler-loong64.h218 // pushed as part of frame construction, so we don't need to allocate memory in PatchPrepareStackFrame()
/third_party/ntfs-3g/libntfs-3g/
H A Drunlist.c1049 * -2 = LCN_RL_NOT_MAPPED This is part of the runlist which has not been
/third_party/node/test/fixtures/snapshot/
H A Dmarked.js2109 * returns only the textual part of the token
/third_party/openGLES/extensions/KHR/
H A DKHR_debug.txt845 A label is part of the state of the object to which it is associated.
/third_party/nghttp2/src/
H A Dh2load.cc2263 only and any white spaces are treated as a part of in print_help()
/third_party/node/deps/brotli/c/dec/
H A Ddecode.c1563 "Regular" distance encoding has NPOSTFIX = 0; omitting the postfix part
/third_party/node/deps/icu-small/source/common/
H A Drbbitblb.cpp518 // part labeled "rest of tree" in bofFixup()
H A Ducnv.cpp330 *and frees the mutable part*/
/third_party/node/deps/icu-small/source/common/unicode/
H A Duniset.h1047 * @return If part of s matches up to the limit, return |limit -
/third_party/node/
H A DMakefile409 # node-gyp is updated as part of an npm update.
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4.cpp747 * From the Ivy Bridge PRM, volume 4 part 3.7, page 80: in is_dep_ctrl_unsafe()
/third_party/mesa3d/src/intel/vulkan/
H A Danv_batch_chain.c1058 * relocation. We'll adjust it later as part of the chaining in anv_cmd_buffer_end_batch_buffer()
/third_party/mesa3d/src/mesa/main/
H A Dmipmap.c1892 /* in case the mipmap level is part of an FBO: */ in prepare_mipmap_level()
/third_party/node/deps/npm/node_modules/@npmcli/config/lib/definitions/
H A Ddefinitions.js1666 The "prerelease identifier" to use as a prefix for the "prerelease" part

Completed in 134 milliseconds

1...<<941942943944945946947948949950>>...980