Home
last modified time | relevance | path

Searched refs:test_keys (Results 1 – 14 of 14) sorted by relevance

/external/chromium-trace/catapult/dashboard/dashboard/
Dgroup_report_test.py78 test_keys = self._AddTests()
83 selected_ranges, test_keys[0], sheriff_key)
85 overlapping_ranges, test_keys[0], sheriff_key)
87 non_overlapping_ranges, test_keys[0], sheriff_key)
112 test_keys = self._AddTests()
115 test_keys[0], sheriff_key)
127 test_keys = self._AddTests()
131 test_keys[0], sheriff_key, bug_id=123)
133 [(150, 250)], test_keys[0], sheriff_key)
139 test_keys = self._AddTests()
[all …]
Ddump_graph_json.py105 test_keys = [a.test for a in anomalies]
110 entities.extend(self._GetTestAncestors(test_keys))
113 entities.extend(self._FetchRowsAsync(test_keys, num_points))
123 def _GetTestAncestors(self, test_keys): argument
127 for test_key in test_keys:
138 def _FetchRowsAsync(self, test_keys, num_points): argument
142 for test_key in test_keys:
Dassociate_alerts_test.py55 test_keys = self._AddTests()
60 test_key = test_keys[0] if end_rev % 20 == 0 else test_keys[1]
69 start_revision=9990, end_revision=9996, test=test_keys[0],
76 start_revision=9990, end_revision=9997, test=test_keys[0],
146 test_keys = self._AddTests()
147 rows = testing_common.AddRows(utils.TestPath(test_keys[0]), {10, 20})
149 test_keys[0].get(), rows[0]).put()
Dlist_tests.py237 test_keys = query.fetch(keys_only=True)
240 test_keys = [k for k in test_keys if utils.TestMatchesPattern(k, pattern)]
243 return ndb.get_multi(test_keys)
244 return [utils.TestPath(k) for k in test_keys]
Dnew_points.py61 test_keys = map(utils.TestKey, test_paths)
62 query = query.filter(graph_data.Row.parent_test.IN(test_keys))
Dstats.py255 test_keys = test_query.fetch(keys_only=True)
256 test_keys = [k for k in test_keys if '/'.join(
264 stat_container.num_stats = len(test_keys)
266 for test_key in test_keys:
Dmain.py81 test_keys = {a.test for a in anomalies}
82 tests = utils.GetMulti(test_keys)
Dadd_point_queue.py102 test_keys = set()
110 test_keys.add(ndb.Key(*start))
112 ndb.get_multi_async(list(master_keys) + list(bot_keys) + list(test_keys))
Dgraph_json.py134 test_keys = map(utils.TestKey, test_paths)
135 test_entities = ndb.get_multi(test_keys)
436 test_keys = [t.key.urlsafe() for t in tests]
438 for series_index, key in enumerate(test_keys):
Dchange_internal_only.py127 test_keys, next_cursor, more = test_query.fetch_page(
130 for test_key in test_keys:
Dupdate_bug_with_results_test.py333 test_keys = map(utils.TestKey, [
337 start_revision=9990, end_revision=9997, test=test_keys[0],
341 start_revision=9990, end_revision=9996, test=test_keys[0],
Dstats_test.py72 test_keys = map(utils.TestKey, test_paths)
74 for index, test_key in enumerate(test_keys):
/external/chromium-trace/catapult/dashboard/docs/
Dcode-snippets.md51 test_keys = query.fetch(limit=LIMIT, keys_only=True)
52 unique = sorted(set(k.string_id() for k in test_keys))
53 print 'Fetched %d Test keys, %d unique names.' % (len(test_keys), len(unique))
69 test_keys = query.fetch(limit=LIMIT, keys_only=True)
70 print 'Fetched %d Test keys.' % len(test_keys)
71 for key in test_keys:
111 test_keys = test_query.fetch(keys_only=True)
113 for test_key in test_keys:
145 test_keys = graph_data.Test.query(ancestor=ancestor_key).fetch(keys_only=True)
146 print len(test_keys)
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb2/
Dtest_table.py373 def test_keys(self): member in ItemTestCase