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

  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 304 def Retry(self, cb, retry_on=None, wait_plan=None):
308 retry_on: A callback that takes the result of the function and returns
314 retry_on = retry_on or (lambda x: False)
325 if got_exception or retry_on(result):
349 def Git(self, args="", prefix="", pipe=True, retry_on=None, cwd=None):
352 result = self.Retry(cmd, retry_on, [5, 30])
357 def SVN(self, args="", prefix="", pipe=True, retry_on=None, cwd=None):
360 return self.Retry(cmd, retry_on, [5, 30])
370 def ReadURL(self, url, params=None, retry_on=None, wait_plan=None)
    [all...]
git_recipes.py 229 "cl dcommit -f --bypass-hooks", retry_on=lambda x: x is None, **kwargs)
304 return self.Git("svn dcommit 2>&1", retry_on=lambda x: x is None, **kwargs)
308 retry_on=lambda x: x is None,

Completed in 627 milliseconds