Home
last modified time | relevance | path

Searched refs:retries (Results 1 – 25 of 141) sorted by relevance

123456

/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/
Doptions.js17 options.retry = { retries: 0 } property
19 const retries = parseInt(options.retry, 10) constant
20 if (isFinite(retries)) {
21 options.retry = { retries } field
23 options.retry = { retries: 0 } property
26 options.retry = { retries: options.retry } property
28 options.retry = { retries: 0, ...options.retry } property
/third_party/node/deps/npm/node_modules/retry/test/integration/
Dtest-retry-wrap.js24 retry.wrap(lib, {retries: 2}); property
28 assert.equal(lib.fn1.options.retries, 2);
29 assert.equal(lib.fn2.options.retries, 2);
30 assert.equal(lib.fn3.options.retries, 2);
43 retry.wrap(lib, {retries: 2}, ['fn2', 'fn3']); property
47 assert.equal(lib.fn2.options.retries, 2);
48 assert.equal(lib.fn3.options.retries, 2);
95 retry.wrap(lib, {retries: 1}); property
Dtest-timeouts.js58 retries: 3, property
67 var timeouts = retry.timeouts({retries: 2}); property
/third_party/node/deps/npm/node_modules/promise-retry/test/
Dtest.js104 }, { retries : 0 }) property
124 }, { retries: 2, factor: 1 }) property
146 }, { retries: 1, factor: 1 }) property
168 }, { retries: 1, factor: 1 }) property
179 }, { retries: 1, factor: 1 }) property
188 }, { retries: 1, factor: 1 }); property
233 }, { retries: 1, factor: 1 }) property
/third_party/curl/docs/cmdline-opts/
Dretry.d13 retries this number of times before giving up. Setting the number to 0
14 makes curl do no retries (which is the default). Transient error means either:
19 all forthcoming retries it doubles the waiting time until it reaches 10
20 minutes which then remains delay between the rest of the retries. By using
22 --retry-max-time to limit the total time allowed for retries.
Dretry-delay.d5 Help: Wait time between retries
14 between retries). This option is only interesting if --retry is also
/third_party/mesa3d/.gitlab-ci/b2c/
Db2c.yml.jinja2.jinja216 retries: {{ timeout_first_retries }}
19 retries: {{ timeout_retries }}
22 retries: {{ timeout_boot_retries }}
25 retries: 0
26 # no retries possible here
/third_party/node/lib/internal/fs/
Dstreams.js397 function writeAll(data, size, pos, cb, retries = 0) { argument
411 retries = bytesWritten ? 0 : retries + 1;
416 if (retries > 5) {
419 writeAll.call(this, buffer.slice(bytesWritten), size, pos, cb, retries);
426 function writevAll(chunks, size, pos, cb, retries = 0) { argument
440 retries = bytesWritten ? 0 : retries + 1;
445 if (retries > 5) {
448 writevAll.call(this, [Buffer.concat(buffers).slice(bytesWritten)], size, pos, cb, retries);
Drimraf.js45 let retries = 0;
49 if (retryErrorCodes.has(err.code) && retries < options.maxRetries) {
50 retries++;
51 const delay = retries * options.retryDelay;
/third_party/libwebsockets/READMEs/
DREADME.udp.md10 ## Implementing UDP retries
16 retries must live in the user's transaction object like this
33 /* we have reached the end of our concealed retries */
34 lwsl_warn("%s: concealed retries done, failing\n", __func__);
/third_party/toybox/toys/pending/
Ddhcp6.c49 int length, state, request_length, sock, sock1, status, retval, retries;
501 TT.retries = 0; in signal_handler()
511 TT.retries = 0; in signal_handler()
594 TT.retries++; in dhcp6_main()
595 if(TT.retries > TT.retry) set_timeout(TT.errortimeout); in dhcp6_main()
596 else if (TT.retries == TT.retry) { in dhcp6_main()
606 TT.retries++; in dhcp6_main()
607 if (TT.retries > TT.retry) set_timeout(TT.errortimeout); in dhcp6_main()
608 else if (TT.retries == TT.retry) { in dhcp6_main()
627 TT.retries = 0; in dhcp6_main()
[all …]
/third_party/vulkan-loader/scripts/
Dupdate_deps.py355 def Clone(self, retries=10, retry_seconds=60): argument
357 for retry in range(retries):
364 print("Error cloning on iteration {}/{}: {}".format(retry + 1, retries, e))
365 if retry + 1 < retries:
378 def Fetch(self, retries=10, retry_seconds=60): argument
379 for retry in range(retries):
385 print("Error fetching on iteration {}/{}: {}".format(retry + 1, retries, e))
386 if retry + 1 < retries:
/third_party/node/deps/npm/node_modules/tuf-js/dist/
Dfetcher.js60 this.retries = options.retries;
66 retry: this.retries,
/third_party/ltp/testcases/kernel/input/
Dinput_helper.c75 int retries = 10; in open_device() local
77 while (retries--) { in open_device()
147 int retries = 10; in open_uinput() local
154 while (retries--) { in open_uinput()
/third_party/rust/crates/regex/scripts/
Dscrape_crates_io.py131 retries = 0
132 while retries < max_retries:
133 retries += 1
138 retries, max_retries + 1, self.url))
/third_party/curl/lib/
Dtftp.c132 int retries; member
447 state->retries++; in tftp_send_first()
448 if(state->retries>state->retry_max) { in tftp_send_first()
597 state->retries = 0; in tftp_rx()
638 state->retries = 0; in tftp_rx()
657 state->retries++; in tftp_rx()
660 NEXT_BLOCKNUM(state->block), state->retries); in tftp_rx()
661 if(state->retries > state->retry_max) { in tftp_rx()
732 state->retries++; in tftp_tx()
734 if(state->retries>state->retry_max) { in tftp_tx()
[all …]
/third_party/musl/src/temp/
Dmkdtemp.c9 int retries = 100; in mkdtemp() local
19 } while (--retries && errno == EEXIST); in mkdtemp()
Dmktemp.c10 int retries = 100; in mktemp() local
25 } while (--retries); in mktemp()
Dmkostemps.c17 int fd, retries = 100; in __mkostemps() local
22 } while (--retries && errno == EEXIST); in __mkostemps()
/third_party/ltp/include/
Dtst_crypto.h39 uint32_t retries; member
50 .retries = 1000 \
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/
D4-1.c185 int retries = 6000; in main() local
188 while (!received_all && retries-- > 0) in main()
191 if (retries <= 0) { in main()
/third_party/skia/third_party/externals/angle2/infra/specs/
Dtest_suite_exceptions.pyl33 '--flaky-retries=1',
38 '--flaky-retries=1',
/third_party/lwip/
D0084-add-tcpslowtmr-log-and-tcpfasttmr-cnt.patch20 - LWIP_DEBUGF(TCP_DEBUG, ("tcp_slowtmr: max SYN retries reached\n"));
21 + LWIP_DEBUGF(TCP_DEBUG | GAZELLE_DEBUG_SERIOUS, ("tcp_slowtmr: max SYN retries reached loac_p…
24 - LWIP_DEBUGF(TCP_DEBUG, ("tcp_slowtmr: max DATA retries reached\n"));
25 + LWIP_DEBUGF(TCP_DEBUG | GAZELLE_DEBUG_SERIOUS, ("tcp_slowtmr: max DATA retries reached loac_…
/third_party/lwip/src/apps/tftp/
Dtftp_server.c89 u8_t retries; member
222 tftp_state.retries = 0; in recv()
380 if ((tftp_state.last_data != NULL) && (tftp_state.retries < TFTP_MAX_RETRIES)) { in tftp_tmr()
383 tftp_state.retries++; in tftp_tmr()
/third_party/ltp/testcases/kernel/syscalls/madvise/
Dmadvise09.c161 int status, pid, retries = 0; in child() local
207 tst_res(TINFO, "Memory hungry child %i started, try %i", pid, retries); in child()
210 } while (retries++ < 10 && count_freed(ptr) == 0); in child()

123456