Home | History | Annotate | Download | only in cloudstorage

Lines Matching refs:urlfetch

34   from google.appengine.api import urlfetch
41 from google.appengine.api import urlfetch
49 _RETRIABLE_EXCEPTIONS = (urlfetch.DownloadError,
101 """Given a urlfetch response, decide whether to retry that request."""
125 can't call urlfetch, urlfetch timed out, or urlfetch got a 408 or
137 urlfetch_timeout: timeout for urlfetch in seconds. Could be None,
138 in which case the value will be chosen by urlfetch module.
224 """A blocking fetch function similar to urlfetch.fetch.
226 This function should be used when a urlfetch has timed out or the response
233 **kwds: keyword arguments for urlfetch. If deadline is specified in kwds,
235 urlfetch to use its own default.
238 A urlfetch response from the last retry. None if no retry was attempted.
255 resp = urlfetch.fetch(url, **kwds)
258 'Urlfetch retry %s will exceed request deadline '
278 logging.info('Urlfetch failed after %s retries and %s seconds in total.',