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 D | ssl.h | 171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/ |
H A D | ssl.h | 171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
|
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/ |
H A D | ssl.h | 171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/ |
H A D | ssl.h | 171 * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
|
/third_party/node/doc/api/ |
H A D | events.json | 447 "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 D | esm.json | 450 "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 D | events.md | 2334 Specifically, the `capture` option is used as part of the key when registering
|
H A D | packages.json | 462 "desc": "<ul>\n<li>Type: <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type\" class=\"type\"><string></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 D | async_context.html | 326 <p>The <code>AsyncLocalStorage</code> and <code>AsyncResource</code> classes are part of the
|
H A D | net.json | 1550 "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 D | liftoff-assembler-mips.h | 349 // 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 D | liftoff-assembler-loong64.h | 218 // pushed as part of frame construction, so we don't need to allocate memory in PatchPrepareStackFrame()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | runlist.c | 1049 * -2 = LCN_RL_NOT_MAPPED This is part of the runlist which has not been
|
/third_party/node/test/fixtures/snapshot/ |
H A D | marked.js | 2109 * returns only the textual part of the token
|
/third_party/openGLES/extensions/KHR/ |
H A D | KHR_debug.txt | 845 A label is part of the state of the object to which it is associated.
|
/third_party/nghttp2/src/ |
H A D | h2load.cc | 2263 only and any white spaces are treated as a part of in print_help()
|
/third_party/node/deps/brotli/c/dec/ |
H A D | decode.c | 1563 "Regular" distance encoding has NPOSTFIX = 0; omitting the postfix part
|
/third_party/node/deps/icu-small/source/common/ |
H A D | rbbitblb.cpp | 518 // part labeled "rest of tree" in bofFixup()
|
H A D | ucnv.cpp | 330 *and frees the mutable part*/
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | uniset.h | 1047 * @return If part of s matches up to the limit, return |limit -
|
/third_party/node/ |
H A D | Makefile | 409 # node-gyp is updated as part of an npm update.
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4.cpp | 747 * 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 D | anv_batch_chain.c | 1058 * 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 D | mipmap.c | 1892 /* 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 D | definitions.js | 1666 The "prerelease identifier" to use as a prefix for the "prerelease" part
|
Completed in 134 milliseconds
1...<<941942943944945946947948949950>>...980