/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | AlphabeticIndexTest.java | 544 // Join the elements of the list to a string with delimiter ":" in TestIndexCharactersList()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/charsetdet/ |
H A D | TestCharsetDetector.java | 1247 thread.join(); in TestMultithreaded()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateTimeGeneratorTest.java | 1343 wk.join(); in TestT7169()
|
H A D | PluralRulesTest.java | 1526 System.out.print(" \"" + CollectionUtilities.join(locales, ",")); in generateLOCALE_SNAPSHOT()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/ |
H A D | TestCharsetDetector.java | 1244 thread.join(); in TestMultithreaded()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 2456 assertEquals("", "M, a-c", CollectionUtilities.join(us1.ranges(), ", ")); in TestIteration()
|
/third_party/libcoap/examples/ |
H A D | coap-server.c | 2939 /* join multicast group if requested at command line */ in main()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-instantiate.cc | 1628 compile_job->Join(); in CompileImportWrappers()
|
/third_party/node/deps/zlib/ |
H A D | zlib.h | 783 await more bits to join them in order to fill out a full byte. If pending
|
/third_party/node/doc/api/ |
H A D | readline.json | 441 "desc": "<p>The current input data being processed by node.</p>\n<p>This can be used when collecting input from a TTY stream to retrieve the\ncurrent value that has been processed thus far, prior to the <code>line</code> event\nbeing emitted. Once the <code>line</code> event has been emitted, this property will\nbe an empty string.</p>\n<p>Be aware that modifying the value during the instance runtime may have\nunintended consequences if <code>rl.cursor</code> is not also controlled.</p>\n<p><strong>If not using a TTY stream for input, use the <a href=\"#event-line\"><code>'line'</code></a> event.</strong></p>\n<p>One possible use case would be as follows:</p>\n<pre><code class=\"language-js\">const values = ['lorem ipsum', 'dolor sit amet'];\nconst rl = readline.createInterface(process.stdin);\nconst showResults = debounce(() => {\n console.log(\n '\\n',\n values.filter((val) => val.startsWith(rl.line)).join(' '),\n );\n}, 300);\nprocess.stdin.on('keypress', (c, k) => {\n showResults();\n});\n</code></pre>"
|
H A D | util.md | 1468 `util.parseArgs` is experimental and behavior may change. Join the
|
H A D | net.json | 19 "desc": "<p><a href=\"#netconnect\"><code>net.connect()</code></a>, <a href=\"#netcreateconnection\"><code>net.createConnection()</code></a>, <a href=\"#serverlisten\"><code>server.listen()</code></a>, and\n<a href=\"#socketconnect\"><code>socket.connect()</code></a> take a <code>path</code> parameter to identify IPC endpoints.</p>\n<p>On Unix, the local domain is also known as the Unix domain. The path is a\nfile system pathname. It gets truncated to an OS-dependent length of\n<code>sizeof(sockaddr_un.sun_path) - 1</code>. Typical values are 107 bytes on Linux and\n103 bytes on macOS. If a Node.js API abstraction creates the Unix domain socket,\nit will unlink the Unix domain socket as well. For example,\n<a href=\"#netcreateserveroptions-connectionlistener\"><code>net.createServer()</code></a> may create a Unix domain socket and\n<a href=\"#serverclosecallback\"><code>server.close()</code></a> will unlink it. But if a user creates the Unix domain\nsocket outside of these abstractions, the user will need to remove it. The same\napplies when a Node.js API creates a Unix domain socket but the program then\ncrashes. In short, a Unix domain socket will be visible in the file system and\nwill persist until unlinked.</p>\n<p>On Windows, the local domain is implemented using a named pipe. The path <em>must</em>\nrefer to an entry in <code>\\\\?\\pipe\\</code> or <code>\\\\.\\pipe\\</code>. Any characters are permitted,\nbut the latter may do some processing of pipe names, such as resolving <code>..</code>\nsequences. Despite how it might look, the pipe namespace is flat. Pipes will\n<em>not persist</em>. They are removed when the last reference to them is closed.\nUnlike Unix domain sockets, Windows will close and remove the pipe when the\nowning process exits.</p>\n<p>JavaScript string escaping requires paths to be specified with extra backslash\nescaping such as:</p>\n<pre><code class=\"language-js\">net.createServer().listen(\n path.join('\\\\\\\\?\\\\pipe', process.cwd(), 'myctl'));\n</code></pre>",
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | zlib.h | 783 await more bits to join them in order to fill out a full byte. If pending
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ucurr.cpp | 175 // Not equivalent. Must join. in makeEquivalent()
|
/third_party/lwip/src/core/ipv6/ |
H A D | nd6.c | 2511 * The state of a local IPv6 address entry is about to change. If needed, join
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | ssl.h.in | 2 * {- join("\n * ", @autowarntext) -}
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha256-mb-x86_64.pl | 1613 return ".byte\t".join(',',@opcode);
|
/third_party/node/deps/openssl/openssl/crypto/modes/asm/ |
H A D | ghash-x86_64.pl | 154 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n";
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-armv4.pl | 103 $code.=join(',',map { sprintf "0x%02x",$_} @line);
|
H A D | ecp_nistz256-ppc64.pl | 94 $code.=join(',',map { sprintf "0x%02x",$_} @line);
|
H A D | ecp_nistz256-armv8.pl | 99 $code.=join(',',map { sprintf "0x%02x",$_} @line);
|
H A D | ecp_nistz256-x86.pl | 90 &data_byte(join(',',map { sprintf "0x%02x",$_} @line));
|
/third_party/pcre2/pcre2/testdata/ |
H A D | testinput4 | 2741 /\p{Join Control}\p{joinc}/g,utf
|
/third_party/python/Doc/library/ |
H A D | argparse.rst | 1165 ... return '-'.join([word[:4] for word in string.casefold().split()])
|
H A D | functions.rst | 1743 ``''.join(sequence)``. To add floating point values with extended precision,
|