Lines Matching +full:- +full:- +full:retry
2 # Use of this source code is governed by a BSD-style license that can be
16 from autotest_lib.client.common_lib.cros import retry
40 retry.retry decorator hits it's timeout.
48 want to retry the call after recreating the proxy.
51 the retry decorator. Any of these exceptions will result
54 retry the method ignoring any exception in exception_tuple.
57 """Inner retry decorator applied to the method.
61 @return A wrapper function that implements the retry.
64 @retry.retry(exception_tuple, timeout_min=timeout_min)
70 socket.error, retry for timeout_min through retry.retry.
72 retry for timeout_min through retry.retry.
84 logging.warning('Connectivity was lost and the retry '
98 usually need a retry decorator. Methods that have a retry decorator
124 UNTAR_COMMAND = 'tar jxf %s -C %s'
140 don't wrap this method with a retry because it's used in the retry
153 @retry.retry((httplib.BadStatusLine, socket.error),
160 tests in a retry loop because tests will start executing as soon
164 Note that we use the plain retry decorator for this method since
189 if time.time() - current_time > timeout_secs:
212 # don't want to retry on this exception, since we've already set the
249 """Get a mapping of test suites -> tests.
358 - A test list is made up of self contained suites.
359 - These suites trigger several things in parallel.
360 - After a suite finishes it leaves goofy in an idle state.