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

  /external/autotest/venv/lucifer/
handoffs.py 56 host_ids = {id for id in hqes.values_list('host_id', flat=True)
58 logger.debug('Found Hosts associated with jobs: %r', host_ids)
59 _clean_up_hosts(host_ids)
72 def _clean_up_hosts(host_ids):
83 .filter(id__in=host_ids)
  /external/autotest/scheduler/
rdb_lib.py 90 def get_hosts(host_ids):
91 """Get information about the hosts with ids in host_ids.
96 @param host_ids: A list of host_ids.
104 for host_id in host_ids:
rdb.py 40 def update_hosts(self, host_ids, **kwargs):
43 @param host_ids: A list of ids of hosts to update.
47 self.host_objects.filter(id__in=host_ids).update(**kwargs)
221 host_ids = set([request.host_id for request in host_requests])
226 for host in self.host_query_manager.get_hosts(host_ids):
283 @raises RDBException: If the request already has another host_ids
agent_task.py 161 self.host_ids = []
169 self.host_ids = []
174 self.host_ids.append(entry.host.id)
187 self.host_ids = [host.id]
monitor_db_unittest.py 35 host_ids = () variable in class:DummyAgent
85 agent_or_task.host_ids = agent_or_task.queue_entry_ids = id_list
207 def _assert_job_scheduled_on_number_of(self, job_id, host_ids, number):
210 for host_id in host_ids:
217 'Jobs scheduled: %s' % (job_id, number, host_ids, found))
220 'Jobs scheduled: %s' % (job_id, number, host_ids, found))
    [all...]
monitor_db.py 478 host_ids from the special agent task. For every agent we create, we
480 against the host_ids given to it. So theoritically, a host can have any
515 self._register_agent_for_ids(self._host_agents, agent.host_ids, agent)
536 self._unregister_agent_for_ids(self._host_agents, agent.host_ids,
    [all...]
query_managers.py 334 """Modify the leased bit on the hosts with ids in host_ids.
337 the hosts with ids in host_ids.
392 host_ids = self._hosts_available.keys()
  /external/autotest/cli/
host.py 340 self.host_ids = {}
427 if host not in self.host_ids:
429 host_id = self.host_ids[host]
448 if host in self.host_ids:
449 host_id = self.host_ids[host]
535 self.host_ids[host['hostname']] = host['id']
537 if host not in self.host_ids:
540 host_id = self.host_ids[host]
host_unittest.py     [all...]
  /external/autotest/scheduler/shard/
shard_client_integration_tests.py 51 job_ids, host_ids, _ = client._get_known_jobs_and_hosts()
92 job_ids, host_ids, _ = client._get_known_jobs_and_hosts()
shard_client.py 172 host_ids = [h['id'] for h in hosts_serialized]
173 logging.info('Heartbeat response contains hosts %s', host_ids)
281 host_ids = []
284 host_ids.append(h.id)
286 return job_ids, host_ids, host_statuses
  /external/autotest/frontend/afe/
rpc_utils.py 297 host_ids = [host.id for host in host_objects]
298 hosts_in_job = models.Host.objects.filter(id__in=host_ids)
    [all...]

Completed in 190 milliseconds