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

  /external/chromium_org/chrome/common/extensions/docs/server2/
appengine_url_fetcher.py 10 from appengine_wrappers import urlfetch namespace
33 """A wrapper around the App Engine urlfetch module that allows for easy
44 return urlfetch.fetch(self._FromBasePath(url),
65 rpc = urlfetch.create_rpc(deadline=20)
66 urlfetch.make_fetch_call(rpc,
github_file_system.py 12 from appengine_wrappers import urlfetch, blobstore namespace
47 except urlfetch.DownloadError as e:
178 except urlfetch.DownloadError as e:
188 except urlfetch.DownloadError as e:
appengine_wrappers.py 26 import google.appengine.api.urlfetch as urlfetch namespace
38 """|configuration| is a dictionary mapping strings to fake urlfetch classes.
39 A fake urlfetch class just needs to have a fetch method. The keys of the
41 determine which fake urlfetch is used.
73 """A fake urlfetch module that uses the current
97 urlfetch = FakeUrlFetch()
fake_url_fetcher.py 99 Appengine's urlfetch.
new_github_file_system.py 14 from appengine_wrappers import urlfetch namespace
182 except urlfetch.DownloadError:
  /external/chromium_org/styleguide/c++/chromium-cpp/
main.py 7 from google.appengine.api import urlfetch namespace
34 result = urlfetch.fetch(url)
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 9 from google.appengine.api import urlfetch namespace
11 from google.appengine.api.urlfetch import DownloadError
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
api_utils.py 34 from google.appengine.api import urlfetch namespace
41 from google.appengine.api import urlfetch namespace
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
    [all...]
storage_api.py 36 from google.appengine.api import urlfetch namespace
39 from google.appengine.api import urlfetch namespace
53 A storage_api instance to handle urlfetch work to GCS.
81 **kwd: Options for urlfetch. e.g.
119 This method translates urlfetch exceptions to more service specific ones.
130 except urlfetch.DownloadError, e:
196 max_request_size: Max bytes to request in one urlfetch.
387 A large request is broken into segments to avoid hitting urlfetch
388 response size limit. Each segment is returned from a separate urlfetch.
420 for a single urlfetch request. May go over the logical range of th
    [all...]
rest_api.py 164 This is an async wrapper around urlfetch(). It adds an authentication
235 """Make an async urlfetch() call.
238 urlfetch() wrapper in the current context.
243 return ctx.urlfetch(url, **kwds)

Completed in 594 milliseconds