Searched full:jane (Results 26 - 47 of 47) sorted by relevance
12
| /third_party/python/Doc/howto/ |
| H A D | regex.rst | 948 >>> m = re.match(r'(?P<first>\w+) (?P<last>\w+)', 'Jane Doe') 950 {'first': 'Jane', 'last': 'Doe'}
|
| /third_party/ltp/doc/ |
| H A D | c-test-tutorial-simple.txt | 265 name = Sarah Jane
|
| H A D | C-Test-Case-Tutorial.asciidoc | 266 name = Sarah Jane
|
| /test/xts/acts/commonlibrary/ets_utils/codeparsingtest/baselibtest/entry/src/ohosTest/ets/test/xml/ |
| H A D | Xml.test.ets | 2479 '<FROM>Jane</FROM>' +
|
| /third_party/node/doc/api/ |
| H A D | http2.md | 3128 req.end('Jane');
|
| H A D | http2.json | 128 "desc": "<p>The <code>CONNECT</code> method is used to allow an HTTP/2 server to be used as a proxy\nfor TCP/IP connections.</p>\n<p>A simple TCP Server:</p>\n<pre><code class=\"language-js\">const net = require('node:net');\n\nconst server = net.createServer((socket) => {\n let name = '';\n socket.setEncoding('utf8');\n socket.on('data', (chunk) => name += chunk);\n socket.on('end', () => socket.end(`hello ${name}`));\n});\n\nserver.listen(8000);\n</code></pre>\n<p>An HTTP/2 CONNECT proxy:</p>\n<pre><code class=\"language-js\">const http2 = require('node:http2');\nconst { NGHTTP2_REFUSED_STREAM } = http2.constants;\nconst net = require('node:net');\n\nconst proxy = http2.createServer();\nproxy.on('stream', (stream, headers) => {\n if (headers[':method'] !== 'CONNECT') {\n // Only accept CONNECT requests\n stream.close(NGHTTP2_REFUSED_STREAM);\n return;\n }\n const auth = new URL(`tcp://${headers[':authority']}`);\n // It's a very good idea to verify that hostname and port are\n // things this proxy should be connecting to.\n const socket = net.connect(auth.port, auth.hostname, () => {\n stream.respond();\n socket.pipe(stream);\n stream.pipe(socket);\n });\n socket.on('error', (error) => {\n stream.close(http2.constants.NGHTTP2_CONNECT_ERROR);\n });\n});\n\nproxy.listen(8001);\n</code></pre>\n<p>An HTTP/2 CONNECT client:</p>\n<pre><code class=\"language-js\">const http2 = require('node:http2');\n\nconst client = http2.connect('http://localhost:8001');\n\n// Must not specify the ':path' and ':scheme' headers\n// for CONNECT requests or an error will be thrown.\nconst req = client.request({\n ':method': 'CONNECT',\n ':authority': 'localhost:8000',\n});\n\nreq.on('response', (headers) => {\n console.log(headers[http2.constants.HTTP2_HEADER_STATUS]);\n});\nlet data = '';\nreq.setEncoding('utf8');\nreq.on('data', (chunk) => data += chunk);\nreq.on('end', () => {\n console.log(`The server says: ${data}`);\n client.close();\n});\nreq.end('Jane');\n</code></pre>",
|
| H A D | http2.html | 3399 req.<span class="hljs-title function_">end</span>(<span class="hljs-string">'Jane'</span>);</code> <button class="copy-button">copy</button></pre>
|
| H A D | all.json | [all...] |
| H A D | all.html | [all...] |
| /third_party/skia/third_party/externals/brotli/tests/testdata/ |
| H A D | asyoulik.txt | 1255 coming a-night to Jane Smile; and I remember the
|
| H A D | lcet10.txt | 7410 Mary Jane Cavallo
7470 Jane Riefenhauser
|
| /third_party/icu/icu4j/perf-tests/data/collation/ |
| H A D | TestNames_SerbianSH.txt | 13433 DENKOVSKI JANE 21024 JANEŠ NEVEN
|
| H A D | ulyss10.txt | [all...] |
| /third_party/libphonenumber/resources/geocoding/en/ |
| H A D | 1.txt | 4846 1304884|Jane Lew, WV
|
| /third_party/rust/crates/memchr/bench/data/sherlock/ |
| H A D | huge.txt | 147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
|
| /third_party/rust/crates/aho-corasick/bench/data/ |
| H A D | sherlock.txt | 147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
|
| /third_party/rust/crates/regex/bench/src/data/ |
| H A D | sherlock.txt | 147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
|
| /third_party/rust/crates/regex/regex-capi/examples/ |
| H A D | sherlock.txt | 147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
|
| /third_party/skia/third_party/externals/expat/testdata/largefiles/ |
| H A D | recset.xml | [all...] |
| H A D | wordnet_glossary-20010201.rdf | [all...] |
| H A D | ns_att_test.xml | [all...] |
| /third_party/libphonenumber/cpp/src/phonenumbers/geocoding/ |
| H A D | geocoding_data.cc | [all...] |
Completed in 396 milliseconds
12