/external/chromium-trace/catapult/dashboard/dashboard/models/ |
graph_data_test.py | 15 bot = graph_data.Bot(parent=master, id='b').put() 18 key = graph_data.Test(id='a', parent=bot, description=too_long).put()
|
graph_data.py | 9 about tests are structured in a hierarchy of Master, Bot, and Test entities. 10 Master and Bot entities represent Buildbot masters and builders respectively, 16 Bot: win7 83 All Bot entities that are Buildbot slaves of one master are children of one 89 class Bot(internal_only_model.InternalOnlyModel): 92 Bots are keyed by name, e.g. 'xp-release-dual-core'. A Bot entity contains 94 each bot has a parent that is a Master entity. A Bot is be the ancestor of 109 parented by a Bot. 176 def bot(self): # pylint: disable=invalid-nam member in class:Test [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonMachineScheduler.cpp | 207 Bot.init(DAG, SchedModel); 215 delete Bot.HazardRec; 217 Bot.HazardRec = TII->CreateTargetMIHazardRecognizer(Itin, DAG); 220 delete Bot.ResourceModel; 222 Bot.ResourceModel = new VLIWResourceModel(STI, DAG->getSchedModel()); 256 Bot.MaxMinLatency = std::max(MinLatency, Bot.MaxMinLatency); 261 Bot.releaseNode(SU, SU->BotReadyCycle); 502 if (Bot.ResourceModel->isResourceAvailable(SU)) 588 if (SUnit *SU = Bot.pickOnlyChoice()) [all...] |
HexagonMachineScheduler.h | 196 VLIWSchedBoundary Bot; 199 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both) 208 Bot(BotQID, "BotQ") {} 222 Bot.ResourceModel->getTotalPackets();
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
add_point_queue_test.py | 22 bot_key = graph_data.Bot(id='win7', parent=master_key).put() 29 # No extra Test or Bot objects should have been added to the database 32 self.assertEqual(1, len(graph_data.Bot.query().fetch())) 39 # Check that all the Bot and Test entities were correctly added. 41 created_bots = graph_data.Bot.query().fetch() 52 self.assertEqual('win7', created_tests[0].bot.id()) 55 self.assertIsNone(created_tests[1].bot) 58 self.assertIsNone(created_tests[2].bot)
|
change_internal_only_test.py | 69 # Verify that Bot entities were changed. 70 bots = graph_data.Bot.query().fetch() 71 for bot in bots: 72 path = bot.key.parent().string_id() + '/' + bot.key.string_id() 74 self.assertTrue(bot.internal_only) 76 self.assertFalse(bot.internal_only) 129 bots = graph_data.Bot.query().fetch() 130 for bot in bots: 131 self.assertFalse(bot.internal_only [all...] |
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() 115 bot = graph_data.Bot(id='x-bot', parent=master).put() 117 test = graph_data.Test(id='xtest-%d' % i, parent=bot).put()
|
datastore_hooks_test.py | 49 internal_key = ['Master', 'ChromiumPerf', 'Bot', 'FooInternal'] 52 external_key = ['Master', 'ChromiumPerf', 'Bot', 'Win7External'] 98 bots = graph_data.Bot.query().fetch() 126 'Master', 'ChromiumPerf', 'Bot', 'FooInternal')).fetch() 190 'Master', 'ChromiumPerf', 'Bot', 'Win7External').get() 192 external_bot_2 = graph_data.Bot.get_by_id('Win7External', parent=m.key) 195 'Master', 'ChromiumPerf', 'Bot', 'Win7External', 'Test', 'TestExternal', 200 'Master', 'ChromiumPerf', 'Bot', 'FooInternal').get() 202 internal_bot_2 = graph_data.Bot.get_by_id('FooInternal', parent=m.key) 205 k = ndb.Key('Master', 'ChromiumPerf', 'Bot', 'FooInternal' [all...] |
list_monitored_tests_test.py | 29 bot = graph_data.Bot(id='TheBot', parent=master).put() 30 suite1 = graph_data.Test(id='Suite1', parent=bot).put() 31 suite2 = graph_data.Test(id='Suite2', parent=bot).put()
|
edit_anomaly_configs_test.py | 85 bot = graph_data.Bot(id='TheBot', parent=master).put() 86 suite1 = graph_data.Test(id='Suite1', parent=bot).put() 87 suite2 = graph_data.Test(id='Suite2', parent=bot).put() 148 bot = graph_data.Bot(id='TheBot', parent=master).put() 150 id='one', parent=bot, overridden_anomaly_config=anomaly_config_key, 153 id='two', parent=bot, overridden_anomaly_config=anomaly_config_key,
|
graph_csv_test.py | 31 bot = graph_data.Bot(id=name, parent=master).put() 32 bots.append(bot) 33 test = graph_data.Test(id='dromaeo', parent=bot).put() 44 bot = graph_data.Bot(id=name, parent=master, internal_only=True).put() 45 bots.append(bot) 46 test = graph_data.Test(id='dromaeo', parent=bot, internal_only=True).put()
|
change_internal_only.py | 5 """Provides the web interface for changing internal_only property of a Bot.""" 29 """Changes internal_only property of Bot, Test, and Row.""" 34 bots = graph_data.Bot.query().fetch() 35 for bot in bots: 36 master_name = bot.key.parent().string_id() 37 bot_name = bot.key.string_id() 41 'internal_only': bot.internal_only, 62 through processing a Bot or a Test. 109 """Starts updating internal_only for the given bot and associated data.""" 110 master, bot = bot_name.split('/' [all...] |
edit_config_handler_test.py | 32 bot = graph_data.Bot(id='TheBot', parent=master).put() 33 suite1 = graph_data.Test(id='Suite1', parent=bot).put() 34 suite2 = graph_data.Test(id='Suite2', parent=bot).put() 60 # A valid test path must contain a master, bot, and test part.
|
graph_revisions_test.py | 32 bot_key = graph_data.Bot(id=bot_name, parent=master_key).put()
|
add_point_queue.py | 44 any required Test or Master or Bot entities will be created. 101 bot_keys = {ndb.Key('Master', r['master'], 'Bot', r['bot']) for r in data} 104 start = ['Master', row['master'], 'Bot', row['bot']] 143 master, bot, test = row_dict['master'], row_dict['bot'], row_dict['test'] 144 test_path = '%s/%s/%s' % (master, bot, test) 167 bot_whitelist: A list of whitelisted bot names. 176 bot_name = row_dict.get('bot') [all...] |
utils_test.py | 83 bot = graph_data.Bot(parent=master, id='b').put() 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(), 95 bot = graph_data.Bot(parent=master, id='b').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() [all...] |
add_point_test.py | 40 'bot': 'win7', 49 'bot': 'win7', 80 'bot': 'win7', 159 'bot': 'win7', 172 'bot': 'win7', 216 self.assertEqual('win7', tests[0].bot.id()) 228 self.assertIsNone(tests[1].bot) 237 self.assertIsNone(tests[2].bot) 243 # Both sample entries have the same master' and 'bot' values, so one 244 # Master and one Bot entity were created [all...] |
edit_sheriffs_test.py | 37 bot = graph_data.Bot(id='TheBot', parent=master).put() 38 suite1 = graph_data.Test(id='Suite1', parent=bot).put() 39 suite2 = graph_data.Test(id='Suite2', parent=bot).put()
|
testing_common.py | 170 bots: List of bot names. 177 bot_key = graph_data.Bot(id=bot_name, parent=master_key).put()
|
update_test_suites_test.py | 103 bot_key = graph_data.Bot(id='internal_mac', parent=master_key, 151 # bot (mac in the this sample data) should be listed. 159 for bot in ['win7', 'mac']: 160 test = utils.TestKey('Chromium/%s/really' % bot).get()
|
graph_json_test.py | 51 bot = graph_data.Bot(id=name, parent=master.key) 52 bot.put() 53 bots.append(bot) 54 test = graph_data.Test(id='dromaeo', parent=bot.key) 62 # Add Rows for one bot with revision numbers that aren't lined up 84 bot = graph_data.Bot(id='bot', parent=master.key) 85 bot.put( [all...] |
/external/webrtc/webrtc/tools/rtcbot/test/ |
ping_pong.js | 9 function testPingPong(test, bot) { 10 test.assert(typeof bot.ping === 'function', 'Bot does not exposes ping.'); 12 bot.ping(gotAnswer); 15 test.log('bot > ' + answer);
|
/external/webrtc/webrtc/tools/rtcbot/ |
botmanager.js | 24 // TODO(andresp): There should be a way to control which bot was spawned 25 // and what bot instance it gets connected to. 47 console.log('Error: Type ' + botType + ' not supported by rtc-Bot!'); 54 var bot = this.createBot_(name, botType, callback); 55 this.bots_.push(bot); 56 this.pendingConnections_.push(bot.onBotConnected.bind(bot)); 64 this.app_.use('/bot/api.js', 66 __dirname + '/bot/api.js')); 68 this.app_.use('/bot/', Express.static(__dirname + '/bot')) [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineScheduler.h | 565 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both) 859 SchedBoundary Bot; 865 Bot(SchedBoundary::BotQID, "BotQ") {} 888 Bot.releaseBottomNode(SU);
|
/external/llvm/lib/CodeGen/ |
MachineScheduler.cpp | [all...] |