/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/test/integration/ |
D | test-retry-wrap.js | 24 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); 71 retry.wrap(lib, {retries: 1}); property
|
/third_party/node/deps/npm/node_modules/retry/test/integration/ |
D | test-retry-wrap.js | 24 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
|
/third_party/node/deps/npm/node_modules/lockfile/ |
D | lockfile.js | 143 if (typeof opts.retries === 'number' && opts.retries > 0) { 144 debug('has retries', opts.retries) 145 var retries = opts.retries 146 opts.retries = 0 149 retries -= 1 150 if (!er || retries < 0) return orig(er, fd) 312 if (typeof opts.retries === 'number' && opts.retries > 0) { 313 var newRT = opts.retries - 1 315 opts.retries = newRT
|
D | CHANGELOG.md | 35 * manage 'retries' so it does not clash with 'wait' polling 38 * failing test for the time taken for retries + wait options 101 * Add retries
|
/third_party/node/deps/npm/node_modules/promise-retry/test/ |
D | test.js | 93 it('should not retry on rejection if nr of retries is 0', function () { 104 }, { retries : 0 }) property 113 it('should reject the promise if the retries were exceeded', function () { 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 220 it('should work with several retries in the same chain', function () { 233 }, { retries: 1, factor: 1 }) property
|
/third_party/libwebsockets/READMEs/ |
D | README.udp.md | 10 ## Implementing UDP retries 12 Retries are important in udp but there's no standardized ack method 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/node/deps/npm/node_modules/lockfile/test/ |
D | retry-time.js | 18 var RETRIES = 2 variable 19 var EXPECTTIME = (RETRYWAIT * RETRIES) + (WAIT * (RETRIES + 1)) 43 retries: RETRIES, property
|
/third_party/node/deps/npm/node_modules/promise-retry/ |
D | README.md | 15 Retries a function that returns a promise, leveraging the power of the [retry](https://github.com/t… 18 they were rather difficult to use or do not offer an easy way to do conditional retries. 34 - `retries`: The maximum amount of times to retry the operation. Default is `10`. 37 - `maxTimeout`: The maximum number of milliseconds between two retries. Default is `Infinity`. 42 If there's retries left, it will throw a special `retry` error that will be handled internally to c… 43 If there's no retries left, it will throw the actual error passed to it.
|
/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/ |
D | README.md | 48 retries: 5, 72 * `retries`: The maximum amount of times to retry the operation. Default is `10`. 75 * `maxTimeout`: The maximum number of milliseconds between two retries. Default is `Infinity`. 94 * `k = 0 ... 9`: The `retries` value (10) 109 …. If your retry operation was executed 4 times you had one attempt and 3 retries. If you then want… 125 retry.wrap(obj, {retries: 3}) 127 retry.wrap(obj, {retries: 3}, ['method1', 'method2']) 178 Returns `false` when no `error` value is given, or the maximum amount of retries 181 Otherwise it returns `true`, and retries the operation after the timeout for
|
/third_party/mesa3d/.gitlab-ci/b2c/ |
D | b2c.yml.jinja2.jinja2 | 16 retries: {{ timeout_first_retries }} 19 retries: {{ timeout_retries }} 22 retries: {{ timeout_boot_retries }} 25 retries: 0 26 # no retries possible here
|
/third_party/node/deps/npm/node_modules/retry/ |
D | Readme.md | 53 retries: 5, 78 * `retries`: The maximum amount of times to retry the operation. Default is `10`. Seting this to `1… 81 * `maxTimeout`: The maximum number of milliseconds between two retries. Default is `Infinity`. 100 * `k = 0 ... 9`: The `retries` value (10) 115 …. If your retry operation was executed 4 times you had one attempt and 3 retries. If you then want… 131 retry.wrap(obj, {retries: 3}) 133 retry.wrap(obj, {retries: 3}, ['method1', 'method2']) 186 Returns `false` when no `error` value is given, or the maximum amount of retries 189 Otherwise it returns `true`, and retries the operation after the timeout for
|
/third_party/ltp/include/ |
D | tst_crypto.h | 26 * safe to retry them. The retries field allows you to set the number of 39 uint32_t retries; member 50 .retries = 1000 \ 101 * operation tst_crypto_session::retries times before giving up and returning
|
/third_party/node/deps/npm/node_modules/got/ |
D | index.js | 66 const backoff = opts.retries(++retryCount, err); 213 retries: 5 property 274 if (typeof opts.retries !== 'function') { 275 const retries = opts.retries; 277 opts.retries = (iter, err) => { function 278 if (iter > retries || !isRetryAllowed(err)) {
|
/third_party/ltp/testcases/lib/ |
D | test.sh | 166 # Function returns 0 if succeed in RETRIES times or the last retcode the cmd 171 local RETRIES=${2:-"3"} 172 local i=$RETRIES 185 tst_resm TINFO "Failed to execute '$cmd' after $RETRIES retries" 366 tst_resm TWARN "Failed to umount($device) after 50 retries"
|
/third_party/vulkan-loader/scripts/ |
D | update_deps.py | 355 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: 374 # If we get here, we've exhausted our retries. 375 print("Failed to clone {} on all retries.".format(self.url)) 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: [all …]
|
/third_party/toybox/toys/pending/ |
D | dhcp6.c | 49 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/flutter/skia/infra/bots/recipes/test.expected/ |
D | Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie.json | 81 …RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEO… 101 "@@@STEP_LOG_LINE@python.inline@RETRIES = 5@@@", 106 "@@@STEP_LOG_LINE@python.inline@for retry in range(RETRIES):@@@", 117 "@@@STEP_LOG_LINE@python.inline@ if retry == RETRIES:@@@",
|
D | Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER.json | 145 …RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEO… 165 "@@@STEP_LOG_LINE@python.inline@RETRIES = 5@@@", 170 "@@@STEP_LOG_LINE@python.inline@for retry in range(RETRIES):@@@", 181 "@@@STEP_LOG_LINE@python.inline@ if retry == RETRIES:@@@",
|
D | Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Lottie.json | 81 …RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEO… 101 "@@@STEP_LOG_LINE@python.inline@RETRIES = 5@@@", 106 "@@@STEP_LOG_LINE@python.inline@for retry in range(RETRIES):@@@", 117 "@@@STEP_LOG_LINE@python.inline@ if retry == RETRIES:@@@",
|
/third_party/rust/crates/regex/scripts/ |
D | scrape_crates_io.py | 131 retries = 0 132 while retries < max_retries: 133 retries += 1 138 retries, max_retries + 1, self.url))
|
/third_party/skia/infra/bots/recipes/test.expected/ |
D | Test-Debian10-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie.json | 85 …RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEO… 105 "@@@STEP_LOG_LINE@python.inline@RETRIES = 5@@@", 110 "@@@STEP_LOG_LINE@python.inline@for retry in range(RETRIES):@@@", 121 "@@@STEP_LOG_LINE@python.inline@ if retry == RETRIES:@@@",
|
D | Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json | 157 …RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEO… 177 "@@@STEP_LOG_LINE@python.inline@RETRIES = 5@@@", 182 "@@@STEP_LOG_LINE@python.inline@for retry in range(RETRIES):@@@", 193 "@@@STEP_LOG_LINE@python.inline@ if retry == RETRIES:@@@",
|
/third_party/gstreamer/gstplugins_good/ext/soup/ |
D | gstsouphttpclientsink.c | 182 "Delay in seconds between retries after a failure", 1, G_MAXINT, 5, in gst_soup_http_client_sink_class_init() 185 g_param_spec_int ("retries", "Retries", in gst_soup_http_client_sink_class_init() 186 "Maximum number of retries, zero to disable, -1 to retry forever", in gst_soup_http_client_sink_class_init() 238 souphttpsink->retries = 0; in gst_soup_http_client_sink_init() 367 souphttpsink->retries = g_value_get_int (value); in gst_soup_http_client_sink_set_property() 428 g_value_set_int (value, souphttpsink->retries); in gst_soup_http_client_sink_get_property() 808 if (sink->retries && (sink->retries < 0 || sink->retries >= sink->failures)) { in send_handle_status()
|
/third_party/musl/src/temp/ |
D | mkdtemp.c | 9 int retries = 100; in mkdtemp() local 19 } while (--retries && errno == EEXIST); in mkdtemp()
|
D | mktemp.c | 10 int retries = 100; in mktemp() local 25 } while (--retries); in mktemp()
|