Searched refs:retry_on (Results 1 – 2 of 2) sorted by relevance
/external/v8/tools/push-to-trunk/ |
D | common_includes.py | 304 def Retry(self, cb, retry_on=None, wait_plan=None): argument 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): argument 352 result = self.Retry(cmd, retry_on, [5, 30]) 357 def SVN(self, args="", prefix="", pipe=True, retry_on=None, cwd=None): argument 360 return self.Retry(cmd, retry_on, [5, 30]) 370 def ReadURL(self, url, params=None, retry_on=None, wait_plan=None): argument 373 return self.Retry(cmd, retry_on, wait_plan)
|
D | 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,
|