Home
last modified time | relevance | path

Searched full:retry (Results 1 – 25 of 1018) sorted by relevance

12345678910>>...41

/third_party/curl/docs/cmdline-opts/
Dretry-connrefused.md4 Long: retry-connrefused
5 Help: Retry on connection refused (with --retry)
10 - retry
11 - retry-all-errors
13 - --retry-connrefused --retry 7 $URL
16 # `--retry-connrefused`
19 error too for --retry. This option is used together with --retry.
Dretry-all-errors.md4 Long: retry-all-errors
5 Help: Retry all errors (with --retry)
10 - retry
12 - --retry 5 --retry-all-errors $URL
15 # `--retry-all-errors`
17 Retry on any error. This option is used together with --retry.
25 **WARNING**: For server compatibility curl attempts to retry failed flaky
37 not an error. When --retry is used then curl retries on some HTTP response
39 response codes such as 404. If you want to retry on all response codes that
Dretry.md4 Long: retry
7 Help: Retry request if transient problems occur
11 - retry-max-time
13 - --retry 7 $URL
16 # `--retry`
24 When curl is about to retry a transfer, it first waits one second and then for
27 --retry-delay you disable this exponential backoff algorithm. See also
28 --retry-max-time to limit the total time allowed for retries.
30 curl complies with the Retry-After: response header if one was present to know
31 when to issue the next retry (added in 7.66.0).
Dretry-max-time.md4 Long: retry-max-time
6 Help: Retry only within this period
11 - retry
13 - --retry-max-time 30 --retry 10 $URL
16 # `--retry-max-time`
18 The retry timer is reset before the first transfer attempt. Retries are done
19 as usual (see --retry) as long as the timer has not reached this given
Dretry-delay.md4 Long: retry-delay
11 - retry
13 - --retry-delay 5 --retry 7 $URL
16 # `--retry-delay`
18 Make curl sleep this amount of time before each retry when a transfer has
20 between retries). This option is only interesting if --retry is also
/third_party/libwebsockets/include/libwebsockets/
Dlws-retry.h40 * \param retry: the retry backoff table we are using, or NULL for default
46 * next connection retry, according to the backoff table \p retry. *\p conceal is
51 * If \p retry is NULL, a default of 3s + (0..300ms jitter) is used. If it's
56 lws_retry_get_delay_ms(struct lws_context *context, const lws_retry_bo_t *retry,
64 * \param retry: the retry backoff table we are using, or NULL for default
68 * Helper that combines interpreting the retry table with scheduling a sul to
74 lws_sorted_usec_list_t *sul, const lws_retry_bo_t *retry,
78 * lws_retry_sul_schedule_retry_wsi() - retry sul schedule helper using wsi
80 * \param wsi: the wsi to set the hrtimer sul on to the next retry interval
85 * Helper that uses context, tid and retry policy from a wsi to call
[all …]
/third_party/openssl/doc/man3/
DBIO_should_retry.pod7 BIO_get_retry_BIO, BIO_get_retry_reason, BIO_set_retry_reason - BIO retry
36 has insufficient data to return. Check for readability and/or retry the
40 has pending data to write. Check for writability and/or retry the
46 BIO_retry_type() returns a mask of the cause of a retry condition
60 BIO_set_retry_reason() sets the retry reason for a special condition for a given
78 BIO types will not request a retry, because the underlying I/O
80 signal a retry then it need not call BIO_should_retry() after a failed
84 retry even if the underlying I/O structure is blocking, if a handshake
85 occurs during a call to BIO_read(). An application can retry the failed
89 While an application may retry a failed non blocking call immediately
[all …]
/third_party/skia/infra/bots/recipe_modules/run/examples/full.expected/
Dtest.json134 "name": "retry fail",
158 "name": "retry fail (attempt 2)",
182 "name": "retry fail (attempt 3)",
206 "name": "retry fail (attempt 4)",
230 "name": "retry fail (attempt 5)",
243 "name": "retry success",
267 "name": "retry success (attempt 2)",
291 "name": "retry success (attempt 3)"
296 … build steps: fail, fail again, retry fail, retry fail (attempt 2), retry fail (attempt 3), retry
/third_party/skia/infra/bots/recipe_modules/run/examples/
Dfull.py52 api.run.with_retry(api.step, 'retry fail', 5, cmd=['false'],
58 api.run.with_retry(api.step, 'retry success', 3, cmd=['false'],
78 api.step_data('retry fail', retcode=1) +
79 api.step_data('retry fail (attempt 2)', retcode=1) +
80 api.step_data('retry fail (attempt 3)', retcode=1) +
81 api.step_data('retry fail (attempt 4)', retcode=1) +
82 api.step_data('retry fail (attempt 5)', retcode=1) +
83 api.step_data('retry success', retcode=1) +
84 api.step_data('retry success (attempt 2)', retcode=1)
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/hal/hardware/
Dms_collective_comm_lib.cc70 MS_LOG(INFO) << "Query retry count is " << retry_count_; in Initialize()
78 …MS_LOG(INFO) << "Interval of retry allgather hostname lower and upper are " << random_time_lower <… in Initialize()
119 // Retry every random time interval. in AllGatherHostHashName()
122 size_t retry = RecoveryContext::GetInstance()->enable_recovery() ? SIZE_MAX : retry_count_; in AllGatherHostHashName() local
123 while (!success && --retry > 0) { in AllGatherHostHashName()
127 …MS_LOG(WARNING) << "Retry to get hostname from the meta server node...Retry time: " << retry << "/" in AllGatherHostHashName()
189 // It this is not recovery scenario, retry for 3*200s, which is 10 minutes. in SendUniqueID()
191 size_t retry = RecoveryContext::GetInstance()->enable_recovery() ? SIZE_MAX : retry_count_; in SendUniqueID() local
192 while (!success && --retry > 0) { in SendUniqueID()
195 …WARNING) << "Failed to send unique id for group " << group_name << ". Retry time: " << retry << "/" in SendUniqueID()
[all …]
/third_party/mindspore/mindspore-src/source/tests/ut/cpp/distributed/cluster/topology/
Dtest_dynamic_networking.cc59 size_t retry = 30; in TEST_F() local
61 (retry-- > 0)) { in TEST_F()
77 retry = 30; in TEST_F()
78 …while ((msn.GetAliveNodeNum() > 0 || msn.TopologyState() != TopoState::kFinished) && retry-- > 0) { in TEST_F()
114 size_t retry = 30; in TEST_F() local
116 (retry-- > 0)) { in TEST_F()
128 retry = 30; in TEST_F()
129 …while ((msn.GetAliveNodeNum() > 0 || msn.TopologyState() != TopoState::kFinished) && retry-- > 0) { in TEST_F()
163 size_t retry = 30; in TEST_F() local
165 (retry-- > 0)) { in TEST_F()
[all …]
/third_party/ffmpeg/libavutil/tests/
Drandom_seed.c33 int i, j, rsf, retry; in main() local
38 for (retry=0; retry<3; retry++){ in main()
43 goto retry; in main()
47 retry:; in main()
49 if (retry >= 3) { in main()
/third_party/curl/tests/data/
Dtest3666 retry
16 Retry-After: 200
30 HTTP --retry-max-time with too long Retry-After
33 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --retry 2 --retry-max-time 10
Dtest16336 RETRY-AFTER
23 Retry-After: 1
37 Retry-After: 1
48 Retry-After: 1
62 --retry with a 429 response and Retry-After:
65 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -d moo --retry 1 -L
Dtest16346 RETRY-AFTER
15 Retry-After: 1
30 Retry-After: 1
48 --retry with a 429 response and Retry-After: and --fail
51 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --retry 1 --fail
Dtest30106 RETRY-AFTER
18 Retry-After: 2
39 HTTP retry-after reset
53 Retry-After 2
54 Retry-After 0
Dtest16356 RETRY-AFTER
15 Retry-After: 1
37 --retry with a 429 response and Retry-After: and --fail-with-body
40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --retry 1 --fail-with-body
Dtest12694 --retry-delay
20 too large --retry-delay value
23 --retry 3 --retry-delay 9223372036854776 http://%HOSTIP:%NOLISTENPORT/%TESTNUMBER
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-staticpolicy/
Dstatic-policy.json5 "retry": [{ array
55 "retry": "default", string
71 "retry": "default", string
91 "retry": "default", string
111 "retry": "default", string
134 "retry": "default", string
148 "retry": "default", string
161 "retry": "default", string
174 "retry": "default", string
188 "retry": "default" string
[all …]
/third_party/curl/tests/libtest/
Dlib1594.c25 /* Testing Retry-After header parser */
34 curl_off_t retry; in test() local
48 res = curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry); in test()
55 retry += time(NULL); in test()
56 retry /= 10000; in test()
58 printf("Retry-After %" CURL_FORMAT_CURL_OFF_T "\n", retry); in test()
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/include/backend/distributed/cluster/topology/
Dcommon.h79 // The retry and interval configuration used for the macro `EXECUTE_WITH_RETRY`.
81 // The retry number of cgn and msn for reconnecting.
101 #define EXECUTE_WITH_RETRY(func, retry, interval, err_msg) \ argument
104 for (size_t i = 1; i <= retry; ++i) { \
107 MS_LOG(WARNING) << err_msg << ", retry(" << i << "/" << retry << ")."; \
124 MS_LOG(WARNING) << err_msg << ", retry..."; \
144 MS_LOG(WARNING) << err_msg << ", retry..."; \
/third_party/toybox/toys/pending/
Dtftp.c219 int packetlen, retry; in read_ack() local
221 for (retry = 0; retry < TFTP_RETRIES; retry++) { in read_ack()
272 int len, sd, fd, retry, nbytesrecvd = 0, ndatabytes, ret, result = -1; in file_get() local
290 for (retry = 0 ; retry < TFTP_RETRIES; retry++) { in file_get()
302 retry--; in file_get()
314 retry--; in file_get()
356 if (retry == TFTP_RETRIES) { in file_get()
357 error_msg("Retry limit exceeded."); in file_get()
388 int packetlen, sd, fd, retry = 0, ret, result = -1; in file_put() local
399 if (++retry > TFTP_RETRIES) { in file_put()
[all …]
/third_party/skia/infra/bots/task_drivers/canary/
Dcanary.go78 // Retry if canary roll could not be created or if canary roll returned
81 for retry := 0; ; retry++ {
83 if retry > 0 {
84 retryText = fmt.Sprintf(" (Retry #%d)", retry)
107 // Retry these errors.
109 if retry >= (retryAttempts - 1) {
119 // retry loop.
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client/
Dminimal-ws-client.c23 lws_sorted_usec_list_t sul; /* schedule connection retry */
34 * The retry and backoff policy we want to use for our client connections
39 static const lws_retry_bo_t retry = { variable
72 i.retry_and_idle_policy = &retry; in connect_client()
77 * Failed... schedule a retry... we can't use the _retry_wsi() in connect_client()
81 if (lws_retry_sul_schedule(context, 0, sul, &retry, in connect_client()
121 * retry the connection to keep it nailed up in callback_minimal()
126 * If you set retry.conceal_count to be larger than the number of in callback_minimal()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-testsfail/
Dminimal-secure-streams-testsfail.c49 "\"retry\": [" /* named backoff / retry strategies */
189 "\"retry\": \"default\","
207 "\"retry\": \"default\""
217 "\"retry\": \"default\","
230 "\"retry\": \"default\","
248 "\"retry\": \"default\""
258 "\"retry\": \"default\","
271 "\"retry\": \"default\","
289 "\"retry\": \"default\""
299 "\"retry\": \"default\","
[all …]

12345678910>>...41