Home
last modified time | relevance | path

Searched full:jane (Results 26 - 47 of 47) sorted by relevance

12

/third_party/python/Doc/howto/
H A Dregex.rst948 >>> m = re.match(r'(?P<first>\w+) (?P<last>\w+)', 'Jane Doe')
950 {'first': 'Jane', 'last': 'Doe'}
/third_party/ltp/doc/
H A Dc-test-tutorial-simple.txt265 name = Sarah Jane
H A DC-Test-Case-Tutorial.asciidoc266 name = Sarah Jane
/test/xts/acts/commonlibrary/ets_utils/codeparsingtest/baselibtest/entry/src/ohosTest/ets/test/xml/
H A DXml.test.ets2479 '<FROM>Jane</FROM>' +
/third_party/node/doc/api/
H A Dhttp2.md3128 req.end('Jane');
H A Dhttp2.json128 "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 Dhttp2.html3399 req.<span class="hljs-title function_">end</span>(<span class="hljs-string">'Jane'</span>);</code> <button class="copy-button">copy</button></pre>
H A Dall.json[all...]
H A Dall.html[all...]
/third_party/skia/third_party/externals/brotli/tests/testdata/
H A Dasyoulik.txt1255 coming a-night to Jane Smile; and I remember the
H A Dlcet10.txt7410 Mary Jane Cavallo
7470 Jane Riefenhauser
/third_party/icu/icu4j/perf-tests/data/collation/
H A DTestNames_SerbianSH.txt13433 DENKOVSKI JANE
21024 JANEŠ NEVEN
H A Dulyss10.txt[all...]
/third_party/libphonenumber/resources/geocoding/en/
H A D1.txt4846 1304884|Jane Lew, WV
/third_party/rust/crates/memchr/bench/data/sherlock/
H A Dhuge.txt147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
/third_party/rust/crates/aho-corasick/bench/data/
H A Dsherlock.txt147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
/third_party/rust/crates/regex/bench/src/data/
H A Dsherlock.txt147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
/third_party/rust/crates/regex/regex-capi/examples/
H A Dsherlock.txt147 deduce it. As to Mary Jane, she is incorrigible, and my wife has
/third_party/skia/third_party/externals/expat/testdata/largefiles/
H A Drecset.xml[all...]
H A Dwordnet_glossary-20010201.rdf[all...]
H A Dns_att_test.xml[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/geocoding/
H A Dgeocoding_data.cc[all...]

Completed in 396 milliseconds

12