OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:urlfetch
(Results
1 - 13
of
13
) sorted by null
/external/chromium-trace/catapult/firefighter/update/common/buildbot/
network.py
8
from google.appengine.api import
urlfetch
29
return
urlfetch
.fetch(url).content
30
except (apiproxy_errors.DeadlineExceededError,
urlfetch
.DownloadError,
31
urlfetch
.InternalTransientError):
34
return
urlfetch
.fetch(url).content
builds.py
8
from google.appengine.api import
urlfetch
70
except (ValueError,
urlfetch
.ResponseTooLargeError):
80
except (ValueError,
urlfetch
.ResponseTooLargeError):
/external/chromium-trace/catapult/dashboard/dashboard/
load_from_prod.py
16
from google.appengine.api import
urlfetch
70
response =
urlfetch
.fetch(url, deadline=60)
utils.py
18
from google.appengine.api import
urlfetch
330
response =
urlfetch
.fetch(url)
413
response =
urlfetch
.fetch(request_url)
email_template.py
11
from google.appengine.api import
urlfetch
217
response =
urlfetch
.fetch(sheriff.url)
file_bug.py
11
from google.appengine.api import
urlfetch
266
response =
urlfetch
.fetch(_OMAHA_PROXY_URL)
269
except
urlfetch
.Error:
/external/chromium-trace/catapult/firefighter/default/handlers/
query.py
8
from google.appengine.api import
urlfetch
19
urlfetch
.set_default_fetch_deadline(60)
/external/chromium-trace/catapult/perf_insights/third_party/cloudstorage/
api_utils.py
35
from google.appengine.api import
urlfetch
45
from google.appengine.api import
urlfetch
55
_RETRIABLE_EXCEPTIONS = (
urlfetch
.DownloadError,
109
"""Given a
urlfetch
response, decide whether to retry that request."""
221
can't call
urlfetch
,
urlfetch
timed out, or
urlfetch
got a 408 or
233
urlfetch_timeout: timeout for
urlfetch
in seconds. Could be None,
234
in which case the value will be chosen by
urlfetch
module.
rest_api.py
225
"""Make an async
urlfetch
() call.
227
This is an async wrapper around
urlfetch
(). It adds an authentication
251
resp = yield ctx.
urlfetch
(
storage_api.py
35
from google.appengine.api import
urlfetch
38
from google.appengine.api import
urlfetch
52
A storage_api instance to handle
urlfetch
work to GCS.
80
**kwd: Options for
urlfetch
. e.g.
118
This method translates
urlfetch
exceptions to more service specific ones.
129
except
urlfetch
.DownloadError, e:
195
max_request_size: Max bytes to request in one
urlfetch
.
392
A large request is broken into segments to avoid hitting
urlfetch
393
response size limit. Each segment is returned from a separate
urlfetch
.
425
for a single
urlfetch
request. May go over the logical range of th
[
all
...]
/external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/cloud_mapper/
task.py
14
from google.appengine.api import
urlfetch
30
'X-
URLFetch
-Service-Id': cloud_config.Get().urlfetch_service_id
33
result =
urlfetch
.fetch(url=query_url,
35
method=
urlfetch
.GET,
/external/chromium-trace/catapult/firefighter/update/handlers/
builds.py
10
from google.appengine.api import
urlfetch
21
urlfetch
.set_default_fetch_deadline(300)
63
# Limit the list to the last 100 builds, because the
urlfetch
URL limit is
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
__init__.py
[
all
...]
Completed in 323 milliseconds