Searched refs:label_ids (Results 1 – 4 of 4) sorted by relevance
369 label_ids = list( # listifying avoids a double query below372 if len(label_ids) < len(set(label_names)):375 return dict(name_and_id for name_and_id in label_ids)379 label_ids = self._get_label_ids_from_names(label_names).itervalues()383 ','.join(str(label_id) for label_id in label_ids)))
351 label_ids = models.TestView.objects.query_test_label_ids(test_filter_data)352 labels = models.TestLabel.list_objects({'id__in' : label_ids})
595 def get_hosts_with_label_ids(cls, label_ids, initial_query): argument602 labels = Label.objects.filter(id__in=label_ids)1725 label_ids = [str(l.id) for l in static_labels]1731 'label_ids': '(%s)' % ','.join(label_ids)})1734 label_ids = [str(l.id) for l in non_static_labels]1740 'label_ids': '(%s)' % ','.join(label_ids)})
318 label_ids = [label.id for label in labels]319 replaced = models.ReplacedLabel.objects.filter(label__id__in=label_ids)