/third_party/typescript/tests/baselines/reference/ |
D | moduleImport.symbols | 11 export function ping(x: number) { 12 >ping : Symbol(ping, Decl(moduleImport.ts, 1, 20)) 35 if (x > 0) ABC.ping(x-1); 37 >ABC.ping : Symbol(ABC.ping, Decl(moduleImport.ts, 1, 20)) 39 >ping : Symbol(ABC.ping, Decl(moduleImport.ts, 1, 20))
|
D | moduleImport.js | 4 export function ping(x: number) { function 12 if (x > 0) ABC.ping(x-1); 24 function ping(x) { function 28 C.ping = ping; 37 ABC.ping(x - 1);
|
D | moduleImport.types | 13 export function ping(x: number) { 14 >ping : (x: number) => void 44 if (x > 0) ABC.ping(x-1); 48 >ABC.ping(x-1) : void 49 >ABC.ping : (x: number) => void 51 >ping : (x: number) => void
|
/third_party/node/test/parallel/ |
D | test-http2-ping.js | 45 assert(stream.session.ping(common.mustCall((err, duration, ret) => { 60 assert(client.ping(payload, common.mustCall((err, duration, ret) => { 68 assert(client.ping(payload, common.mustCall((err, duration, ret) => { 76 assert(!client.ping(common.expectsError({ 86 () => client.ping(payload), 104 () => client.ping(payloadWithInvalidLength), 119 () => client.ping(payload, invalidCallback),
|
D | test-inspector-open.js | 35 ping(port, common.mustSucceed(() => { 48 ping(port, common.mustSucceed(() => { 57 ping(firstPort, (err) => { 74 ping(port, common.mustSucceed(() => { 79 function ping(port, callback) { function
|
D | test-http2-onping.js | 30 session.ping(check, mustCall()); 39 client.ping(check, mustCall());
|
D | test-pipe-stream.js | 18 function ping() { function 53 server.listen(common.PIPE, ping);
|
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-ping/ |
D | README.md | 18 -d|Set logging verbosity (you want 1039 to see the validity ping / pong) 30 $ ./lws-minimal-ws-client-ping -d1039 74 [2020/03/18 13:13:47:7662] I: lws_client_connect_via_info: protocol binding to lws-ping-test 75 [2020/03/18 13:13:47:7699] I: lws_client_connect_via_info: wsi 0x5669090: h1 lws-ping-test entry 84 [2020/03/18 13:13:47:9197] I: lws_client_connect_4_established: wsi 0x5669090: h1 lws-ping-test cli… 99 [2020/03/18 13:13:51:5325] I: rops_handle_POLLOUT_ws: issuing ping on wsi 0x5669090: ws lws-ping-te… 105 [2020/03/18 13:13:54:5825] I: rops_handle_POLLOUT_ws: issuing ping on wsi 0x5669090: ws lws-ping-te… 111 [2020/03/18 13:13:57:6267] I: rops_handle_POLLOUT_ws: issuing ping on wsi 0x5669090: ws lws-ping-te…
|
D | CMakeLists.txt | 1 project(lws-minimal-ws-client-ping C) 9 set(SAMP lws-minimal-ws-client-ping) 10 set(SRCS minimal-ws-client-ping.c)
|
/third_party/libphonenumber/resources/geocoding/en/ |
D | 46.txt | 17 4611|Norrköping 19 46121|Söderköping 23 4613|Linköping 32 46155|Nyköping-Oxelösund 34 46157|Flen-Malmköping 38 46171|Enköping 47 46221|Köping 93 4636|Jönköping-Huskvarna 154 46510|Lidköping 159 46515|Falköping
|
/third_party/libphonenumber/resources/geocoding/sv/ |
D | 46.txt | 18 4611|Norrköping 20 46121|Söderköping 24 4613|Linköping 33 46155|Nyköping-Oxelösund 35 46157|Flen-Malmköping 39 46171|Enköping 48 46221|Köping 94 4636|Jönköping-Huskvarna 155 46510|Lidköping 160 46515|Falköping
|
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/ |
D | doctor.js.test.cjs | 57 npm ping ok 73 npm ping [32mok[39m 183 npm ping not ok Invalid protocol \`ssh:\` connecting to proxy \`npmjs.o… 199 npm ping ok 327 npm ping ok 343 npm ping ok 525 exports[`test/lib/commands/doctor.js TAP discrete checks ping > logs 1`] = ` 541 exports[`test/lib/commands/doctor.js TAP discrete checks ping > output 1`] = ` 543 npm ping ok 564 npm ping ok [all …]
|
/third_party/node/deps/npm/test/lib/commands/ |
D | ping.js | 11 registry.ping() 23 registry.ping({ body: { test: true } }) 41 registry.ping() 59 registry.ping({ body: '{not: real"json]' })
|
/third_party/node/test/pummel/ |
D | test-http-upload-timeout.js | 59 function ping() { function 65 setTimeout(ping, 300); 67 ping();
|
/third_party/node/test/addons/dlopen-ping-pong/ |
D | binding.cc | 23 typedef const char* (*ping)(void); typedef 25 static ping ping_func; 32 ping_func = reinterpret_cast<ping>(dlsym(handle, "dlopen_ping")); in LoadLibrary()
|
D | binding.gyp | 4 'target_name': 'ping', 7 'sources': [ 'ping.c' ],
|
/third_party/node/deps/npm/docs/content/commands/ |
D | npm-ping.md | 2 title: npm-ping 10 npm ping 28 npm ERR! 404 Not Found - GET http://www.foo.com/-/ping?write=true
|
D | npm-doctor.md | 10 npm doctor [ping] [registry] [versions] [environment] [permissions] [cache] 41 #### `npm ping` 44 `registry.npmjs.org`. `npm doctor` hits a special ping endpoint within the 45 registry. This can also be checked with `npm ping`. If this check fails, 122 * [npm ping](/commands/npm-ping)
|
/third_party/node/test/sequential/ |
D | test-http-econnrefused.js | 104 function ping() { function 144 ping(); 145 ping();
|
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-spam/ |
D | minimal-ws-client-spam.c | 89 uint8_t ping[LWS_PRE + 125]; in callback_minimal_spam() local 154 n = lws_snprintf((char *)ping + LWS_PRE, sizeof(ping) - LWS_PRE, in callback_minimal_spam() 157 m = lws_write(wsi, ping + LWS_PRE, (unsigned int)n, LWS_WRITE_TEXT); in callback_minimal_spam()
|
/third_party/typescript/tests/cases/compiler/ |
D | moduleImport.ts | 3 export function ping(x: number) { function 11 if (x > 0) ABC.ping(x-1);
|
/third_party/ltp/testcases/network/multicast/mc_opts/ |
D | mc_opts.sh | 48 ping -T 777 224.0.0.1 > /dev/null 2>&1 && \ 52 ping -I 3.3.3.3 224.0.0.1 > /dev/null 2>&1 && \
|
/third_party/node/test/fixtures/wpt/webmessaging/broadcastchannel/resources/ |
D | worker.js | 4 if (e.data.ping) { 5 c.postMessage(e.data.ping);
|
/third_party/ltp/testcases/network/tcp_cmds/ipneigh/ |
D | ipneigh01.sh | 36 tst_require_cmds $CMD ping$TST_IPV6 60 ping$TST_IPV6 -q -c1 $(tst_ipaddr rhost) -I $(tst_iface) > /dev/null || \
|
/third_party/ltp/testcases/network/multicast/mc_cmds/ |
D | mc_cmds.sh | 68 ping -c2 -I $(tst_ipaddr) 224.0.0.1 > ping_out.log 72 ping -c2 -I $(tst_iface) 224.0.0.1 > ping_out.log || \
|