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

  /external/autotest/scheduler/
host_scheduler.py 99 * hosts_to_suites, records which host is assigned to which
104 The reason to maintain hosts_to_suites is that, when a host is released,
120 self.suite_host_num, self.hosts_to_suites = (
133 if self.hosts_to_suites.get(queue_entry.host_id, None) == parent_id:
140 self.hosts_to_suites[queue_entry.host_id] = parent_id
152 if host.id in self.hosts_to_suites:
153 parent_job_id = self.hosts_to_suites.pop(host.id)
query_managers.py 187 @return: Two dictionaries (suite_host_num, hosts_to_suites)
190 hosts_to_suites contains current hosts held by
197 hosts_to_suites = {}
203 hosts_to_suites[host_id] = parent_job_id
204 return suite_host_num, hosts_to_suites
host_scheduler_unittests.py 303 self.assertEqual(r.hosts_to_suites,
309 def verify_state(self, recorder, suite_host_num, hosts_to_suites):
314 @param hosts_to_suites: a dict, expected value of hosts_to_suites.
317 self.assertEqual(recorder.hosts_to_suites, hosts_to_suites)

Completed in 514 milliseconds