HomeSort by relevance Sort by last modified time
    Searched refs:Bot (Results 1 - 25 of 25) sorted by null

  /external/chromium-trace/catapult/dashboard/dashboard/models/
graph_data_test.py 15 graph_data.Bot(parent=master, id='b').put()
graph_data.py 9 about tests are structured in Master, Bot, and TestMetadata entities. Master and
10 Bot entities represent Buildbot masters and builders respectively, and
17 Bot: win7
85 All Bot entities that are Buildbot slaves of one master are children of one
91 class Bot(internal_only_model.InternalOnlyModel):
94 Bots are keyed by name, e.g. 'xp-release-dual-core'. A Bot entity contains
96 each bot has a parent that is a Master entity. To query the tests that run on
97 a Bot, check the bot_name and master_name properties of the TestMetadata.
112 suites) are keyed master/bot/test.
115 master/bot/test/metric/page), and they also contain other metadata such a
180 def bot(self): # pylint: disable=invalid-name member in class:TestMetadata
    [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 graph_data.Bot(id='win7', parent=master_key).put()
30 # No extra TestMetadata or Bot objects should have been added to the
34 self.assertEqual(1, len(graph_data.Bot.query().fetch()))
41 # Check that all the Bot and TestMetadata entities were correctly added.
43 created_bots = graph_data.Bot.query().fetch()
58 self.assertIsNone(created_tests[1].bot)
63 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 graph_data.Bot(id='x-bot', parent=master, internal_only=True).put()
65 id='XMaster/x-bot/xtest', internal_only=True).put()
116 graph_data.Bot(id='x-bot', parent=master).put()
118 test = graph_data.TestMetadata(id='XMaster/x-bot/xtest-%d' % i).put()
datastore_hooks_test.py 49 internal_key = ['Master', 'ChromiumPerf', 'Bot', 'FooInternal']
100 bots = graph_data.Bot.query().fetch()
211 'Master', 'ChromiumPerf', 'Bot', 'Win7External').get()
213 external_bot_2 = graph_data.Bot.get_by_id('Win7External', parent=m.key)
223 'Master', 'ChromiumPerf', 'Bot', 'FooInternal').get()
225 internal_bot_2 = graph_data.Bot.get_by_id('FooInternal', parent=m.key)
228 k = ndb.Key('Master', 'ChromiumPerf', 'Bot', 'FooInternal')
230 self.assertRaises(AssertionError, graph_data.Bot.get_by_id,
list_monitored_tests_test.py 29 graph_data.Bot(id='TheBot', parent=master).put()
edit_anomaly_configs_test.py 85 graph_data.Bot(id='TheBot', parent=master).put()
152 graph_data.Bot(id='TheBot', parent=master).put()
graph_csv_test.py 31 bot = graph_data.Bot(id=name, parent=master).put()
32 bots.append(bot)
45 bot = graph_data.Bot(id=name, parent=master, internal_only=True).put()
46 bots.append(bot)
edit_config_handler_test.py 32 graph_data.Bot(id='TheBot', parent=master).put()
64 # A valid test path must contain a master, bot, and test part.
graph_revisions_test.py 32 graph_data.Bot(id=bot_name, parent=master_key).put()
add_point_queue.py 44 any required TestMetadata 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 = '%s/%s' % (row['master'], 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')
201 """Checks whether a given bot name is internal-only
    [all...]
utils_test.py 83 graph_data.Bot(parent=master, id='b').put()
95 graph_data.Bot(parent=master, id='b').put()
124 key = ndb.Key('Master', 'm', 'Bot', 'b', 'Test', 'suite', 'Test', 'metric')
141 ndb.Key('Master', 'm', 'Bot', 'b', 'Test', 'suite', 'Test', 'metric'))
163 'Master', 'm', 'Bot', 'b', 'Test', 'suite', 'Test', 'metric')
172 ('Master', 'm', 'Bot', 'b', 'Test', 'suite', 'Test', 'metric'),
180 ('Master', 'm', 'Bot', 'b', 'Test', 'suite', 'Test', 'metric'),
184 key = utils.TestKey('Master/bot/suite-foo/sub/x/y/z')
change_internal_only.py 5 """Provides the web interface for changing internal_only property of a Bot."""
30 """Changes internal_only property of Bot, TestMetadata, and Row."""
35 bots = graph_data.Bot.query().fetch()
36 for bot in bots:
37 master_name = bot.key.parent().string_id()
38 bot_name = bot.key.string_id()
42 'internal_only': bot.internal_only,
63 through processing a Bot or a TestMetadata.
110 """Starts updating internal_only for the given bot and associated data."""
111 master, bot = bot_name.split('/'
    [all...]
edit_sheriffs_test.py 37 graph_data.Bot(id='TheBot', parent=master).put()
testing_common.py 170 bots: List of bot names.
177 graph_data.Bot(id=bot_name, parent=master_key).put()
update_test_suites_test.py 103 graph_data.Bot(
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()
add_point_test.py 40 'bot': 'win7',
49 'bot': 'win7',
80 'bot': 'win7',
159 'bot': 'win7',
172 'bot': 'win7',
218 self.assertEqual('win7', tests[0].bot.id())
231 self.assertIsNone(tests[1].bot)
240 self.assertIsNone(tests[2].bot)
246 # Both sample entries have the same master' and 'bot' values, so one
247 # Master and one Bot entity were created
    [all...]
graph_json_test.py 51 bot = graph_data.Bot(id=name, parent=master.key)
52 bot.put()
53 bots.append(bot)
63 # Add Rows for one bot with revision numbers that aren't lined up
85 bot = graph_data.Bot(id='bot', parent=master.key)
86 bot.put()
87 test = graph_data.TestMetadata(id='master/bot/suite'
    [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...]

Completed in 949 milliseconds