HomeSort by relevance Sort by last modified time
    Searched refs:json (Results 326 - 350 of 1526) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/catapult_build/
build_steps.py 6 import json
21 # outputs_presentation_json (optional): If True, pass in --presentation-json
174 parser.add_argument('--output-json', help='Output for buildbot status page')
196 json.dump(steps, outfile)
  /external/chromium-trace/catapult/dashboard/dashboard/
buildbucket_service.py 7 import json
66 'parameters_json': json.dumps(parameters),
edit_bug_labels.py 7 import json
22 'bug_labels_json': json.dumps(patterns_dict, indent=2, sort_keys=True)
edit_sheriffs.py 7 import json
45 'sheriffs_json': json.dumps(sheriff_dicts),
get_logs.py 7 import json
33 JSON which contains a list of quick_logger.Log.
63 self.response.out.write(json.dumps(serializable_logs))
post_bisect_results_test.py 5 import json
91 data_param = json.dumps(_SAMPLE_BISECT_RESULTS_JSON)
short_uri.py 8 import json
51 self.response.out.write(json.dumps({'sid': state_id}))
test_buildbucket.py 7 import json
22 self.response.out.write(json.dumps({
  /external/chromium-trace/catapult/dashboard/dashboard_build/
dashboard_dev_server_config.py 5 import json
26 tests_as_json = json.dumps(tests)
27 self.response.content_type = 'application/json'
  /external/chromium-trace/catapult/experimental/buildbot/
query.py 6 import json
66 json.dump(data, sys.stdout)
  /external/chromium-trace/catapult/experimental/
hardware.py 9 import json
52 master_data = json.load(urllib2.urlopen(
53 'http://build.chromium.org/p/%s/json/slaves' % master_name))
  /external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/
query.py 4 import json
32 reports_json = json.dumps(
  /external/chromium-trace/catapult/perf_insights/perf_insights/
perf_insights_corpus_driver.py 4 import json
49 file_urls = json.loads(response.read())
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
memory_backend.py 5 import json
92 (method, json.dumps(response, indent=2)))
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
trace_profiler_unittest.py 4 import json
31 json.load(f)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/results/
chart_json_output_formatter.py 7 import json
14 """Produces a dict for serialization to Chart JSON format from raw values.
16 Chart JSON is a transformation of the basic Telemetry JSON format that
20 object) and processes them into a dict which can be serialized using the json
31 A Chart JSON dict corresponding to the given data.
71 # TODO(eakuefner): Transition this to translate Telemetry JSON.
78 json.dump(ResultsAsChartDict(
json_output_formatter.py 5 import json
11 """Takes PageTestResults to a dict serializable to JSON.
13 To serialize results as JSON we first convert them to a dict that can be
14 serialized by the json module. It also requires a benchmark_metadat object
56 json.dump(
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/
oauth2l.py 31 <one-line JSON object with credential information>
38 import json
65 'file, which should be a client_secrets.json file as downloaded '
72 'Filename for a JSON service account key downloaded from the Developer '
77 client_secrets = json.loads(pkgutil.get_data(
78 'apitools.data', 'apitools_client_secrets.json'))['installed']
93 client_secrets = json.load(client_secrets_file)
113 return json.dumps(data, sort_keys=True, indent=4, separators=(',', ': '))
117 return json.dumps(data, sort_keys=True, separators=(',', ':'))
126 elif fmt == 'json'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cognito/sync/
layer1.py 22 from boto.compat import json
227 data=json.dumps(params), headers=headers,
252 data=json.dumps(params), headers=headers,
311 data=json.dumps(params), headers=headers,
341 data=json.dumps(params), headers=headers,
367 data=json.dumps(params), headers=headers,
479 data=json.dumps(params), headers=headers,
488 body = json.loads(response.read().decode('utf-8'))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
compat.py 24 # This allows boto modules to say "from boto.compat import json". This is
27 import simplejson as json
29 import json
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/scripts/
rebuild_endpoints.py 1 import json
49 print(json.dumps(data, indent=4, sort_keys=True))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch/
test_document.py 7 import json
22 body=json.dumps(self.response).encode('utf-8'),
23 content_type="application/json")
47 args = json.loads(HTTPretty.last_request.body.decode('utf-8'))[0]
63 args = json.loads(HTTPretty.last_request.body.decode('utf-8'))[0]
79 args = json.loads(HTTPretty.last_request.body.decode('utf-8'))[0]
135 args = json.loads(HTTPretty.last_request.body.decode('utf-8'))
179 args = json.loads(HTTPretty.last_request.body.decode('utf-8'))[0]
212 args = json.loads(HTTPretty.last_request.body.decode('utf-8'))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudtrail/
test_layer1.py 3 import json
45 self.assertEqual(json.dumps({
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
build.sh 13 --js ./closure/json.js \
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
json_util.py 2 """Json related utilities."""
8 import json
10 import simplejson as json
20 class JsonEncoder(json.JSONEncoder):
21 """MR customized json encoder."""
35 class JsonDecoder(json.JSONDecoder):
36 """MR customized json decoder."""
44 """Converts a dictionary of json object to a Python object."""
60 """Json encode a datetime object.
66 A dict of json primitives
    [all...]

Completed in 558 milliseconds

<<11121314151617181920>>