Home
last modified time | relevance | path

Searched refs:test_ids (Results 1 – 5 of 5) sorted by relevance

/external/autotest/frontend/tko/
Drpc_interface.py357 test_ids = models.TestView.objects.query_test_ids(test_filter_data)
358 models.TestLabel.smart_get(label_id).tests.add(*test_ids)
370 test_ids = models.TestView.objects.query_test_ids(test_filter_data)
372 label.tests.remove(*test_ids)
385 test_ids = models.TestView.objects.query_test_ids(test_filter_data)
386 tests = models.Test.objects.in_bulk(test_ids)
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/sentencepiece/
Ddouble_array_trie_test.cc56 const std::vector<int> test_ids = {0, 5, 10, 15}; in TEST() local
58 builder.CreateVector(BuildTrie(test_strings, test_ids)); in TEST()
/external/python/cpython3/Lib/test/
Dtest_peg_parser.py715 test_ids, _test_sources = zip(*test_cases)
720 return test_ids, test_sources
/external/linux-kselftest/tools/testing/selftests/tc-testing/
Dtdc.py609 test_ids = list()
615 if catg in tc['category'] and tc['id'] not in test_ids:
617 test_ids.append(tc['id'])
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_test.py1800 test_ids = np.where(int_y_test == np.array(weighted_class))[0]
1833 x_test[test_ids, :], y_test[test_ids, :], verbose=0)
1869 test_ids = np.where(int_y_test == np.array(weighted_class))[0]
1926 temporal_x_test[test_ids], temporal_y_test[test_ids], verbose=0)