Searched refs:retry (Results 1 - 25 of 274) sorted by relevance

1234567891011

/external/testng/src/main/java/org/testng/
H A DIRetryAnalyzer.java4 * Interface to implement to be able to have a chance to retry a failed test.
17 public boolean retry(ITestResult result); method in interface:IRetryAnalyzer
/external/curl/docs/cmdline-opts/
H A Dretry-connrefused.d1 Long: retry-connrefused
2 Help: Retry on connection refused (use with --retry)
6 error too for --retry. This option is used together with --retry.
H A Dretry-max-time.d1 long: retry-max-time
6 The retry timer is reset before the first transfer attempt. Retries will be
7 done as usual (see --retry) as long as the timer hasn't reached this given
H A Dretry-delay.d1 long: retry-delay
6 Make curl sleep this amount of time before each retry when a transfer has
8 between retries). This option is only interesting if --retry is also
H A Dretry.d1 Long: retry
7 will retry this number of times before giving up. Setting the number to 0
11 When curl is about to retry a transfer, it will first wait one second and then
14 using --retry-delay you disable this exponential backoff algorithm. See also
15 --retry-max-time to limit the total time allowed for retries.
/external/volley/src/main/java/com/android/volley/
H A DRetryPolicy.java30 * Returns the current retry count (used for logging).
35 * Prepares for the next retry by applying a backoff to the timeout.
37 * @throws VolleyError In the event that the retry could not be performed (for example if we
40 void retry(VolleyError error) throws VolleyError; method in interface:RetryPolicy
H A DDefaultRetryPolicy.java20 * Default retry policy for requests.
26 /** The current retry count. */
45 * Constructs a new retry policy using the default timeouts.
52 * Constructs a new retry policy.
72 * Returns the current retry count.
87 * Prepares for the next retry by applying a backoff to the timeout.
91 public void retry(VolleyError error) throws VolleyError { method in class:DefaultRetryPolicy
/external/autotest/tko/
H A Ddb_mysql.py4 from autotest_lib.client.common_lib.cros import retry namespace
7 @retry.retry(db._get_error_class("OperationalError"), timeout_min=10,
/external/mdnsresponder/mDNSWindows/SystemService/
H A DFirewall.h62 mDNSIsFileAndPrintSharingEnabled( BOOL * retry );
/external/syslinux/com32/gpllib/disk/
H A Dutil.c27 * Call int 13h, but with retry on failure. Especially floppies need this.
31 int retry = MAX_NB_RETRIES; /* Number of retries */ local
37 while (retry--) {
/external/valgrind/none/tests/amd64-linux/
H A Dmap_32bits.stderr.exp3 retry mmap ok: 0x........
/external/autotest/client/common_lib/cros/
H A Dretry_unittest.py7 """Unit tests for client/common_lib/cros/retry.py."""
18 from autotest_lib.client.common_lib.cros import retry namespace
23 """Unit tests for retry decorators.
45 @retry.retry(Exception)
53 """Tests that a wrapped function can retry and succeed."""
56 @retry.retry(Exception, delay_sec=delay_sec)
69 @retry.retry(Exceptio
[all...]
/external/testng/src/test/java/test/tmp/
H A DRetryAnalyzer.java9 public boolean retry(ITestResult result) { method in class:RetryAnalyzer
10 System.out.println("retry()");
/external/autotest/server/site_tests/firmware_ECBootTime/
H A Dfirmware_ECBootTime.py65 retry = 10
66 while retry > 0:
67 retry = retry - 1
74 "%d more attempts", retry)
75 if retry == 0:
/external/libchrome/crypto/
H A Dnss_crypto_module_delegate.h31 // because NSS cannot issue an asynchronous request. |retry| is true if this
32 // is a request for the retry and we previously returned the wrong password.
36 virtual std::string RequestPassword(const std::string& slot_name, bool retry,
/external/syslinux/gpxe/src/include/gpxe/
H A Drc80211.h16 void rc80211_update_rx ( struct net80211_device *dev, int retry, u16 rate );
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DConnectionSpecSelectorTest.java51 boolean retry = connectionSpecSelector.connectionFailed(
53 assertFalse(retry);
67 boolean retry = connectionSpecSelector.connectionFailed(trustIssueException);
68 assertFalse(retry);
79 boolean retry = connectionSpecSelector.connectionFailed(RETRYABLE_EXCEPTION);
80 assertTrue(retry);
101 boolean retry = connectionSpecSelector.connectionFailed(RETRYABLE_EXCEPTION);
102 assertTrue(retry);
110 retry = connectionSpecSelector.connectionFailed(RETRYABLE_EXCEPTION);
111 assertFalse(retry);
[all...]
/external/autotest/site_utils/lxc/
H A Dshared_host_dir.py11 from autotest_lib.client.common_lib.cros import retry namespace
100 @param timeout: A timeout in seconds for which to retry the command.
105 @retry.retry(error.CmdError, timeout_min=timeout/60.0,
119 @param timeout: A timeout in seconds for which to retry the command.
124 @retry.retry(error.CmdError, timeout_min=timeout/60.0,
H A Dlxc.py13 from autotest_lib.client.common_lib.cros import retry namespace
134 @retry.retry((error.CmdError),
139 # We do not want to retry on CmdTimeoutError but still retry on
146 @retry.retry((error.CmdError),
190 @retry.retry(error.CmdError, timeout_min=30)
252 @retry
[all...]
/external/autotest/server/cros/
H A Dsonic_client_utils.py26 from autotest_lib.client.common_lib.cros import retry namespace
31 # Give all our rpcs about six seconds of retry time. If a longer timeout
32 # is desired one should retry from the caller, this timeout is only meant
33 # to avoid uncontrolled circumstances like network flake, not, say, retry
88 @retry.retry(RPC_EXCEPTIONS, timeout_min=BASE_REQUEST_TIMEOUT)
110 @retry.retry(RPC_EXCEPTIONS, timeout_min=BASE_REQUEST_TIMEOUT)
114 @raises: Any of the retry exceptions, if we hit the timeout.
123 @retry
[all...]
/external/chromium-trace/catapult/third_party/pyserial/serial/
H A Dsermsdos.py79 retry: DOS retry mode
90 retry = RETURN_RETRY
115 self.retry = retry
119 self.bytesize, self.stop, self.retry, self.filename)
127 def _config(self, port, baud, parity, data, stop, retry,
132 retry, " > ", filename ), '')
137 self.parity, self.bytesize, self.stop, self.retry,
196 self.retry , sel
[all...]
/external/testng/src/main/java/org/testng/util/
H A DRetryAnalyzerCount.java16 // Default retry once.
38 public boolean retry(ITestResult result) { method in class:RetryAnalyzerCount
/external/autotest/server/site_tests/brillo_PingTest/
H A Dbrillo_PingTest.py11 from autotest_lib.client.common_lib.cros import retry namespace
50 @retry.retry(error.GenericHostRunError, timeout_min=1.5, delay_sec=3)
/external/autotest/site_utils/
H A Dtest_push_unittest.py14 from autotest_lib.client.common_lib.cros import retry namespace
18 # Mock retry.retry used in test_push before importing test_push.
19 retry.retry = mock.create_autospec(retry.retry, return_value=lambda func: func)
/external/clang/lib/Headers/
H A Dhtmintrin.h164 /* Helper intrinsics to retry tbegin in case of transient failure. */
190 #define __builtin_tbegin_retry(tdb, retry) \
192 __builtin_tbegin_retry_null(retry) : \
193 __builtin_tbegin_retry_tdb(tdb, retry))
219 #define __builtin_tbegin_retry_nofloat(tdb, retry) \
221 __builtin_tbegin_retry_nofloat_null(retry) : \
222 __builtin_tbegin_retry_nofloat_tdb(tdb, retry))

Completed in 1797 milliseconds

1234567891011