HomeSort by relevance Sort by last modified time
    Searched refs:exc_retry (Results 1 - 3 of 3) sorted by null

  /test/vts/utils/python/retry/
retry.py 106 def RetryException(exc_retry, max_retry, functor, *args, **kwargs):
110 exc_retry: A class (or tuple of classes). If the raised exception
122 TypeError, if exc_retry is of an unexpected type.
124 if not isinstance(exc_retry, (tuple, type)):
125 raise TypeError("exc_retry should be an exception (or tuple), not %r" %
126 exc_retry)
127 def _Handler(exc, values=exc_retry):
  /external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py 71 # exc_retry: We retry if this exception is raised.
73 exc_retry = Exception
84 """Check if exc is an exc_retry or if it's blacklisted.
88 @return: True if exc is an exc_retry and is not
91 is_exc_to_check = isinstance(exc, exc_retry)
  /test/vts/utils/python/build/api/
artifact_fetcher.py 91 exc_retry=self.RETRIABLE_AUTH_ERRORS,

Completed in 106 milliseconds