/external/chromium-trace/catapult/dashboard/dashboard/ |
D | change_internal_only.py | 41 '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 …]
|
D | change_internal_only_test.py | 74 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 …]
|
D | utils_test.py | 85 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 …]
|
D | add_point_queue.py | 138 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)
|
D | find_anomalies_test.py | 115 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)
|
D | datastore_hooks_test.py | 54 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()
|
D | add_point_test.py | 198 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 …]
|
D | list_monitored_tests_test.py | 38 internal_only=False, summarize=False, patterns=None): argument 41 id=name, email=email, url=url, internal_only=internal_only,
|
D | graph_csv_test.py | 44 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()
|
D | rietveld_service.py | 71 def __init__(self, internal_only=False): argument 72 self.internal_only = internal_only 83 if self.internal_only:
|
D | edit_sheriffs.py | 36 'internal_only': sheriff_entity.internal_only, 58 sheriff_entity.internal_only = self.request.get('internal-only') == 'true'
|
D | edit_sheriffs_test.py | 46 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)
|
D | new_points_test.py | 63 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()
|
D | list_tests_test.py | 186 bot.internal_only = True 189 test.internal_only = True 195 subtest.internal_only = True
|
D | graph_revisions.py | 62 if test and not test.internal_only: 83 assert utils.IsInternalUser() or not test.internal_only
|
D | start_try_job.py | 119 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():
|
D | update_test_suites_test.py | 104 internal_only=True).put() 106 internal_only=True).put()
|
D | find_anomalies.py | 253 internal_only=test.internal_only)
|
D | update_bug_with_results_test.py | 374 internal_only=True) 396 internal_only=True, 425 internal_only=True,
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
D | internal_only_model_test.py | 18 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()
|
D | sheriff_test.py | 37 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')
|
D | stoppage_alert_test.py | 31 self.assertFalse(alert.internal_only) 43 test.internal_only = True 46 self.assertTrue(alert.internal_only)
|
D | sheriff.py | 63 internal_only = ndb.BooleanProperty(indexed=True) variable in Sheriff 80 if (self.internal_only and self.email
|
D | stoppage_alert.py | 98 internal_only=test.internal_only,
|
D | graph_data.py | 97 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
|