Home | History | Annotate | Download | only in afe

Lines Matching refs:meta_host

105               label is requested by the job/test (either as the meta_host or
134 queue_entry = HostQueueEntry.create(meta_host=self, job=job,
1269 ' OR t2.meta_host IN '
1275 # labels nor meta_host.
1277 # - a job whose hqe's meta_host is null
1286 ' AND t2.meta_host IS NULL AND t2.host_id IS NOT NULL '
1746 SERIALIZATION_LINKS_TO_FOLLOW = set(['meta_host'])
1752 assert link == 'meta_host'
1753 self.meta_host = Label.deserialize(data)
1771 meta_host = dbmodels.ForeignKey(Label, blank=True, null=True,
1772 db_column='meta_host')
1794 def create(cls, job, host=None, meta_host=None, atomic_group=None,
1801 @param meta_host: The associated meta host.
1810 return cls(job=job, host=host, meta_host=meta_host,
1836 elif self.meta_host:
1837 return self.meta_host.name
1839 assert self.atomic_group, "no host, meta_host or atomic group!"
1859 'True if this is a entry has a meta_host instead of a host.'
1860 return self.host is None and self.meta_host is not None