/external/chromium-trace/catapult/dashboard/dashboard/ |
bisect_stats.py | 75 def UpdateBisectStats(bot_name, status): 83 bot_name: [[week_timestamp, count], [week_timestamp, count]], 86 bot_name: [[week_timestamp, count], [week_timestamp, count]], 91 bot_name: Name of the bisect bot. 97 series_name = _GetSeriesNameFromBotName(bot_name) 127 def _GetSeriesNameFromBotName(bot_name): 129 if series_name in bot_name:
|
change_internal_only.py | 37 bot_name = bot.key.string_id() 40 'name': bot_name, 99 for bot_name in bot_names: 103 'bots': bot_name, 108 def _UpdateBot(self, bot_name, internal_only, cursor=None): 110 master, bot = bot_name.split('/') 143 'bots': bot_name,
|
group_report.py | 200 bot_name = alert['master'] + '/' + alert['bot'] 202 if bot_name not in subtests: 203 subtests[bot_name] = {} 204 if testsuite not in subtests[bot_name]: 205 subtests[bot_name][testsuite] = list_tests.GetSubTests( 206 testsuite, [bot_name])
|
add_point_queue.py | 176 bot_name = row_dict.get('bot') 181 internal_only = _BotInternalOnly(bot_name, bot_whitelist) 185 master_name, bot_name, test_name, units=units, 200 def _BotInternalOnly(bot_name, bot_whitelist): 211 return bot_name not in bot_whitelist 215 master_name, bot_name, test_name, units=None, 221 bot_name, master_entity.key, internal_only)
|
graph_revisions_test.py | 31 for bot_name in ['win7', 'mac']: 32 bot_key = graph_data.Bot(id=bot_name, parent=master_key).put()
|
start_try_job.py | 219 info['bisect_bot'] = GuessBisectBot(suite.master_name, suite.bot_name) 385 def GuessBisectBot(master_name, bot_name): 386 """Returns a bisect bot name based on |bot_name| (perf_id) string.""" 391 bot_name = bot_name.lower() 396 if platform.lower() in bot_name: 399 logging.warning('No bisect bot for %s/%s.', master_name, bot_name)
|
list_tests.py | 78 for bot_name in bot_names: 79 master, bot = bot_name.split('/') 211 'master_name', 'bot_name', 'suite_name', 'test_part1_name',
|
testing_common.py | 176 for bot_name in bots: 177 bot_key = graph_data.Bot(id=bot_name, parent=master_key).put()
|
main.py | 126 'bot': test.bot_name,
|
mr.py | 160 test.master_name, test.bot_name, test.suite_name))
|
auto_bisect.py | 165 bisect_bot = start_try_job.GuessBisectBot(test.master_name, test.bot_name)
|
email_template.py | 282 bot = test.bot_name
|
debug_alert.py | 326 ('bots', test.bot_name),
|
/external/skia/infra/bots/ |
common.py | 70 def __init__(self, bot_name, slave_name, out_dir): 75 self.name = bot_name 83 self.spec = self.get_bot_spec(bot_name) 115 def get_bot_spec(self, bot_name): 119 return buildbot_spec.get_builder_spec(bot_name)
|
/external/skia/infra/bots/flavor/ |
default_flavor.py | 79 'x86_64' in self._bot_info.bot_name and 80 not 'TSAN' in self._bot_info.bot_name):
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
graph_data.py | 201 def bot_name(self): member in class:Test
|