Searched refs:urlfetch (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dappengine_url_fetcher.py10 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,
H A Dgithub_file_system.py12 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:
H A Dappengine_wrappers.py26 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()
H A Dnew_github_file_system.py14 from appengine_wrappers import urlfetch namespace
182 except urlfetch.DownloadError:
/external/chromium_org/styleguide/c++/chromium-cpp/
H A Dmain.py7 from google.appengine.api import urlfetch namespace
34 result = urlfetch.fetch(url)
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
H A Dmain.py9 from google.appengine.api import urlfetch namespace
11 from google.appengine.api.urlfetch import DownloadError
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
H A Dapi_utils.py34 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
[all...]
H A Dstorage_api.py36 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 reques
[all...]
H A Drest_api.py164 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 5835 milliseconds