Home
last modified time | relevance | path

Searched full:join (Results 7151 - 7175 of 7592) sorted by relevance

1...<<281282283284285286287288289290>>...304

/foundation/communication/netstack/frameworks/js/napi/http/http_exec/src/
H A Dhttp_exec.cpp1546 staticVariable_.workThread.join(); in AddCurlHandle()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/
H A Ddistributeddb_nb_backup_test.cpp1088 th.join(); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_relational_test.cpp1584 openStoreThread.join(); in HWTEST_F()
H A Ddistributeddb_interfaces_relational_tracker_table_test.cpp1427 std::string querySql = "select " + TABLE_NAME2 + ".* from " + TABLE_NAME2 + " join "; in HWTEST_F()
/foundation/distributedhardware/distributed_input/services/source/transport/src/
H A Ddistributed_input_source_transport.cpp647 latencyThread_.join(); in StopLatencyThread()
/test/xts/hats/hdf/display/composer/unittest/
H A Dhdi_composer_ut.cpp1167 commitThread.join(); in HWTEST_F()
/third_party/gn/src/gn/
H A Dfunctions.cc1218 // Arguments looks good; do the join.
/third_party/ffmpeg/tests/ref/fate/
H A Dsub-srt-rrn-remux554 join you guys?
/third_party/backends/ChangeLogs/
H A DChangeLog-1.0.16798 * doc/descriptions-external/hpaio.desc join two lines so html
/third_party/PyYAML/yaml/
H A D_yaml.pyx115 # return '\n'.join(lines)
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateFormatRegressionTest.java1560 t.join(); in TestT11363()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDateTimeGeneratorTest.java1346 wk.join(); in TestT7169()
H A DPluralRulesTest.java1089 System.out.print(" \"" + CollectionUtilities.join(locales, ",")); in generateLOCALE_SNAPSHOT()
H A DDateFormatRegressionTest.java1563 t.join(); in TestT11363()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUtility.java867 // escape or as a literal. If so, join them up into a in unescapeAt()
/third_party/json/tests/reports/2016-09-09-nativejson_benchmark/
H A Dconformance_Nlohmann (C++11).md129 <a class="btn btn-primary site-header-actions-btn" href="/join?source=header-repo" data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">Sign up</a>
/third_party/libwebsockets/lib/roles/mqtt/
H A Dmqtt.c1268 * Since others may join us sharing the nwsi, in _lws_mqtt_rx_parser()
/third_party/node/lib/internal/
H A Derrors.js1638 protocols.join(', ')
/third_party/node/lib/
H A Drepl.js461 parentURL = pathToFileURL(path.join(process.cwd(), 'repl')).href;
/third_party/node/doc/api/
H A Dv8.json1040 "desc": "<p>The <code>v8.startupSnapshot</code> interface can be used to add serialization and\ndeserialization hooks for custom startup snapshots.</p>\n<pre><code class=\"language-console\">$ node --snapshot-blob snapshot.blob --build-snapshot entry.js\n# This launches a process with the snapshot\n$ node --snapshot-blob snapshot.blob\n</code></pre>\n<p>In the example above, <code>entry.js</code> can use methods from the <code>v8.startupSnapshot</code>\ninterface to specify how to save information for custom objects in the snapshot\nduring serialization and how the information can be used to synchronize these\nobjects during deserialization of the snapshot. For example, if the <code>entry.js</code>\ncontains the following script:</p>\n<pre><code class=\"language-cjs\">'use strict';\n\nconst fs = require('node:fs');\nconst zlib = require('node:zlib');\nconst path = require('node:path');\nconst assert = require('node:assert');\n\nconst v8 = require('node:v8');\n\nclass BookShelf {\n storage = new Map();\n\n // Reading a series of files from directory and store them into storage.\n constructor(directory, books) {\n for (const book of books) {\n this.storage.set(book, fs.readFileSync(path.join(directory, book)));\n }\n }\n\n static compressAll(shelf) {\n for (const [ book, content ] of shelf.storage) {\n shelf.storage.set(book, zlib.gzipSync(content));\n }\n }\n\n static decompressAll(shelf) {\n for (const [ book, content ] of shelf.storage) {\n shelf.storage.set(book, zlib.gunzipSync(content));\n }\n }\n}\n\n// __dirname here is where the snapshot script is placed\n// during snapshot building time.\nconst shelf = new BookShelf(__dirname, [\n 'book1.en_US.txt',\n 'book1.es_ES.txt',\n 'book2.zh_CN.txt',\n]);\n\nassert(v8.startupSnapshot.isBuildingSnapshot());\n// On snapshot serialization, compress the books to reduce size.\nv8.startupSnapshot.addSerializeCallback(BookShelf.compressAll, shelf);\n// On snapshot deserialization, decompress the books.\nv8.startupSnapshot.addDeserializeCallback(BookShelf.decompressAll, shelf);\nv8.startupSnapshot.setDeserializeMainFunction((shelf) => {\n // process.env and process.argv are refreshed during snapshot\n // deserialization.\n const lang = process.env.BOOK_LANG || 'en_US';\n const book = process.argv[1];\n const name = `${book}.${lang}.txt`;\n console.log(shelf.storage.get(name));\n}, shelf);\n</code></pre>\n<p>The resulted binary will get print the data deserialized from the snapshot\nduring start up, using the refreshed <code>process.env</code> and <code>process.argv</code> of\nthe launched process:</p>\n<pre><code class=\"language-console\">$ BOOK_LANG=es_ES node --snapshot-blob snapshot.blob book1\n# Prints content of book1.es_ES.txt deserialized from the snapshot.\n</code></pre>\n<p>Currently the application deserialized from a user-land snapshot cannot\nbe snapshotted again, so these APIs are only available to applications\nthat are not deserialized from a user-land snapshot.</p>",
H A Dnet.md56 path.join('\\\\?\\pipe', process.cwd(), 'myctl'));
H A Dmodules.json35 "desc": "<p>To get the exact filename that will be loaded when <code>require()</code> is called, use\nthe <code>require.resolve()</code> function.</p>\n<p>Putting together all of the above, here is the high-level algorithm\nin pseudocode of what <code>require()</code> does:</p>\n<pre>\nrequire(X) from module at path Y\n1. If X is a core module,\n a. return the core module\n b. STOP\n2. If X begins with '/'\n a. set Y to be the file system root\n3. If X begins with './' or '/' or '../'\n a. LOAD_AS_FILE(Y + X)\n b. LOAD_AS_DIRECTORY(Y + X)\n c. THROW \"not found\"\n4. If X begins with '#'\n a. LOAD_PACKAGE_IMPORTS(X, dirname(Y))\n5. LOAD_PACKAGE_SELF(X, dirname(Y))\n6. LOAD_NODE_MODULES(X, dirname(Y))\n7. THROW \"not found\"\n\nLOAD_AS_FILE(X)\n1. If X is a file, load X as its file extension format. STOP\n2. If X.js is a file, load X.js as JavaScript text. STOP\n3. If X.json is a file, parse X.json to a JavaScript Object. STOP\n4. If X.node is a file, load X.node as binary addon. STOP\n\nLOAD_INDEX(X)\n1. If X/index.js is a file, load X/index.js as JavaScript text. STOP\n2. If X/index.json is a file, parse X/index.json to a JavaScript object. STOP\n3. If X/index.node is a file, load X/index.node as binary addon. STOP\n\nLOAD_AS_DIRECTORY(X)\n1. If X/package.json is a file,\n a. Parse X/package.json, and look for \"main\" field.\n b. If \"main\" is a falsy value, GOTO 2.\n c. let M = X + (json main field)\n d. LOAD_AS_FILE(M)\n e. LOAD_INDEX(M)\n f. LOAD_INDEX(X) DEPRECATED\n g. THROW \"not found\"\n2. LOAD_INDEX(X)\n\nLOAD_NODE_MODULES(X, START)\n1. let DIRS = NODE_MODULES_PATHS(START)\n2. for each DIR in DIRS:\n a. LOAD_PACKAGE_EXPORTS(X, DIR)\n b. LOAD_AS_FILE(DIR/X)\n c. LOAD_AS_DIRECTORY(DIR/X)\n\nNODE_MODULES_PATHS(START)\n1. let PARTS = path split(START)\n2. let I = count of PARTS - 1\n3. let DIRS = []\n4. while I >= 0,\n a. if PARTS[I] = \"node_modules\" CONTINUE\n b. DIR = path join(PARTS[0 .. I] + \"node_modules\")\n c. DIRS = DIR + DIRS\n d. let I = I - 1\n5. return DIRS + GLOBAL_FOLDERS\n\nLOAD_PACKAGE_IMPORTS(X, DIR)\n1. Find the closest package scope SCOPE to DIR.\n2. If no scope was found, return.\n3. If the SCOPE/package.json \"imports\" is null or undefined, return.\n4. let MATCH = PACKAGE_IMPORTS_RESOLVE(X, pathToFileURL(SCOPE),\n [\"node\", \"require\"]) <a href=\"esm.md#resolver-algorithm-specification\">defined in the ESM resolver</a>.\n5. RESOLVE_ESM_MATCH(MATCH).\n\nLOAD_PACKAGE_EXPORTS(X, DIR)\n1. Try to interpret X as a combination of NAME and SUBPATH where the name\n may have a @scope/ prefix and the subpath begins with a slash (`/`).\n2. If X does not match this pattern or DIR/NAME/package.json is not a file,\n return.\n3. Parse DIR/NAME/package.json, and look for \"exports\" field.\n4. If \"exports\" is null or undefined, return.\n5. let MATCH = PACKAGE_EXPORTS_RESOLVE(pathToFileURL(DIR/NAME), \".\" + SUBPATH,\n `package.json` \"exports\", [\"node\", \"require\"]) <a href=\"esm.md#resolver-algorithm-specification\">defined in the ESM resolver</a>.\n6. RESOLVE_ESM_MATCH(MATCH)\n\nLOAD_PACKAGE_SELF(X, DIR)\n1. Find the closest package scope SCOPE to DIR.\n2. If no scope was found, return.\n3. If the SCOPE/package.json \"exports\" is null or undefined, return.\n4. If the SCOPE/package.json \"name\" is not the first segment of X, return.\n5. let MATCH = PACKAGE_EXPORTS_RESOLVE(pathToFileURL(SCOPE),\n \".\" + X.slice(\"name\".length), `package.json` \"exports\", [\"node\", \"require\"])\n <a href=\"esm.md#resolver-algorithm-specification\">defined in the ESM resolver</a>.\n6. RESOLVE_ESM_MATCH(MATCH)\n\nRESOLVE_ESM_MATCH(MATCH)\n1. let RESOLVED_PATH = fileURLToPath(MATCH)\n2. If the file at RESOLVED_PATH exists, load RESOLVED_PATH as its extension\n format. STOP\n3. THROW \"not found\"\n</pre>"
/third_party/mesa3d/src/intel/tools/
H A Di965_gram.y393 %token <integer> JMPI JOIN
/third_party/lwip/src/apps/mdns/
H A Dmdns.c2080 /* Join multicast groups */ in mdns_resp_add_netif()
/third_party/ltp/tools/sparse/sparse-src/
H A Dlinearize.c1749 // join in linearize_logical()

Completed in 61 milliseconds

1...<<281282283284285286287288289290>>...304