Lines Matching full:bots
8 Manage swarming bots.
10 * Launch bots, e.g. 200 bots:
250 """Class that manages swarming bots."""
260 @param working_dir: Working directory of the bots.
266 self.bots = [SwarmingBot(bid, self.working_dir, swarming_proxy)
270 """Launch bots."""
271 for bot in self.bots:
279 # The right way is to query the server until all bots are seen
281 # https://SWARMING_PROXY/swarming/api/v1/client/bots
289 """Kill running bots."""
290 # Start threads to kill bots.
292 for bot in self.bots:
302 msg = 'Ctrl-c recieved! Bots status not confirmed. Exit.'
308 """Check running bots, start it if not running."""
324 '[BotManager] Check bot counts: %d bots running, missing: %d',
327 logging.info('[BotManager] Checking all bots')
353 description='Launch swarming bots on a autotest server')
354 action_help = ('launch: launch bots. '
355 'kill: kill bots. '
356 'check: check if bots are running, if not, starting bots.')
365 help='A working directory where bots will store files '