Home
last modified time | relevance | path

Searched refs:internal_only (Results 1 – 25 of 37) sorted by relevance

12

/external/chromium-trace/catapult/dashboard/dashboard/
Dchange_internal_only.py41 'internal_only': bot.internal_only,
74 internal_only = True
76 internal_only = False
86 self._UpdateMultipleBots(bot_names, internal_only)
93 self._UpdateBot(bot_names[0], internal_only, cursor=cursor)
95 self._UpdateTest(test_key_urlsafe, internal_only, cursor=cursor)
97 def _UpdateMultipleBots(self, bot_names, internal_only): argument
104 'internal_only': 'true' if internal_only else 'false'
108 def _UpdateBot(self, bot_name, internal_only, cursor=None): argument
116 if bot_entity.internal_only != internal_only:
[all …]
Dchange_internal_only_test.py74 self.assertTrue(bot.internal_only)
76 self.assertFalse(bot.internal_only)
83 self.assertTrue(test.internal_only)
85 self.assertFalse(test.internal_only)
93 self.assertTrue(row.internal_only)
95 self.assertFalse(row.internal_only)
103 self.assertTrue(a.internal_only)
105 self.assertFalse(a.internal_only)
131 self.assertFalse(bot.internal_only)
134 self.assertFalse(test.internal_only)
[all …]
Dutils_test.py85 graph_data.Test(id='a', parent=bot, internal_only=False).put(),
86 graph_data.Test(id='b', parent=bot, internal_only=False).put(),
87 graph_data.Test(id='c', parent=bot, internal_only=False).put(),
88 graph_data.Test(id='d', parent=bot, internal_only=False).put(),
97 graph_data.Test(id='ax', parent=bot, internal_only=True).put(),
98 graph_data.Test(id='a', parent=bot, internal_only=False).put(),
99 graph_data.Test(id='b', parent=bot, internal_only=False).put(),
100 graph_data.Test(id='bx', parent=bot, internal_only=True).put(),
101 graph_data.Test(id='c', parent=bot, internal_only=False).put(),
102 graph_data.Test(id='cx', parent=bot, internal_only=True).put(),
[all …]
Dadd_point_queue.py138 columns['internal_only'] = parent_test.internal_only
181 internal_only = _BotInternalOnly(bot_name, bot_whitelist)
187 internal_only=internal_only,
216 improvement_direction=None, internal_only=True, benchmark_description=''): argument
221 bot_name, master_entity.key, internal_only)
235 'internal_only': internal_only,
257 def _GetOrCreateBot(name, parent_key, internal_only): argument
263 id=name, parent=parent_key, internal_only=internal_only)
Dfind_anomalies_test.py115 parent=test_container_key, internal_only=True).put()
152 start_revision, end_revision, sheriff_name, internal_only): argument
160 a.internal_only == internal_only):
168 internal_only=False))
174 internal_only=False))
180 sheriff_name='sheriff', internal_only=False))
187 internal_only=False))
244 test.internal_only = True
263 self.assertTrue(anomalies[0].internal_only)
Ddatastore_hooks_test.py54 internal_bot.internal_only = True
57 internal_test.internal_only = True
60 internal_test.internal_only = True
64 internal_sub_test.internal_only = True
68 internal_sub_test.internal_only = True
80 internal_only=True).put()
85 id='external', email='foo@chromium.org', internal_only=False).put()
87 id='internal', email='internal@google.com', internal_only=True).put()
Dadd_point_test.py198 self.assertTrue(rows[0].internal_only)
204 self.assertTrue(rows[1].internal_only)
220 self.assertTrue(tests[0].internal_only)
231 self.assertTrue(tests[1].internal_only)
240 self.assertTrue(tests[2].internal_only)
249 self.assertTrue(bots[0].internal_only)
426 id='suddenly_secret', parent=parent, internal_only=False).put()
427 graph_data.Test(id='dromaeo', parent=parent, internal_only=False).put()
461 self.assertTrue(bots[0].internal_only)
463 self.assertTrue(bots[1].internal_only)
[all …]
Dlist_monitored_tests_test.py38 internal_only=False, summarize=False, patterns=None): argument
41 id=name, email=email, url=url, internal_only=internal_only,
Dgraph_csv_test.py44 bot = graph_data.Bot(id=name, parent=master, internal_only=True).put()
46 test = graph_data.Test(id='dromaeo', parent=bot, internal_only=True).put()
48 id='dom', parent=test, has_rows=True, internal_only=True).put()
53 internal_only=True).put()
Drietveld_service.py71 def __init__(self, internal_only=False): argument
72 self.internal_only = internal_only
83 if self.internal_only:
Dedit_sheriffs.py36 'internal_only': sheriff_entity.internal_only,
58 sheriff_entity.internal_only = self.request.get('internal-only') == 'true'
Dedit_sheriffs_test.py46 internal_only=False, summarize=False, patterns=None, argument
50 id=name, email=email, url=url, internal_only=internal_only,
68 self.assertTrue(sheriffs[0].internal_only)
Dnew_points_test.py63 bot = graph_data.Bot(id='x-bot', parent=master, internal_only=True).put()
64 test = graph_data.Test(id='xtest', parent=bot, internal_only=True).put()
68 internal_only=True).put()
Dlist_tests_test.py186 bot.internal_only = True
189 test.internal_only = True
195 subtest.internal_only = True
Dgraph_revisions.py62 if test and not test.internal_only:
83 assert utils.IsInternalUser() or not test.internal_only
Dstart_try_job.py119 internal_only = self.request.get('internal_only') == 'true'
151 internal_only=internal_only,
215 info['internal_only'] = suite.internal_only
226 if suite.internal_only and not utils.IsInternalUser():
Dupdate_test_suites_test.py104 internal_only=True).put()
106 internal_only=True).put()
Dfind_anomalies.py253 internal_only=test.internal_only)
Dupdate_bug_with_results_test.py374 internal_only=True)
396 internal_only=True,
425 internal_only=True,
/external/chromium-trace/catapult/dashboard/dashboard/models/
Dinternal_only_model_test.py18 internal_only = ndb.BooleanProperty(default=False) variable in InternalOnlyModelExample
24 internal_only = ndb.BooleanProperty(default=False) variable in CreateHookModelExample
38 key = InternalOnlyModelExample(internal_only=True).put()
43 key = InternalOnlyModelExample(internal_only=True).put()
49 key = InternalOnlyModelExample(internal_only=False).put()
68 key = CreateHookModelExample(internal_only=True).put()
73 key = CreateHookModelExample(internal_only=True).put()
79 key = CreateHookModelExample(internal_only=False).put()
Dsheriff_test.py37 sheriff.Sheriff(internal_only=True, email='my-alerts@google.com').put()
38 sheriff.Sheriff(internal_only=True, email='alerts@chromium.org').put()
43 entity = sheriff.Sheriff(internal_only=True, email='x@notgoogle.com')
Dstoppage_alert_test.py31 self.assertFalse(alert.internal_only)
43 test.internal_only = True
46 self.assertTrue(alert.internal_only)
Dsheriff.py63 internal_only = ndb.BooleanProperty(indexed=True) variable in Sheriff
80 if (self.internal_only and self.email
Dstoppage_alert.py98 internal_only=test.internal_only,
Dgraph_data.py97 internal_only = ndb.BooleanProperty(default=False, indexed=True) variable in Bot
117 internal_only = ndb.BooleanProperty(default=False, indexed=True) variable in Test
339 internal_only = ndb.BooleanProperty(default=False, indexed=True) variable in Row

12