Home
last modified time | relevance | path

Searched refs:test_idx (Results 1 – 13 of 13) sorted by relevance

/external/autotest/database/
Dschema_129.sql1046 `test_idx` int(10) unsigned NOT NULL,
1050 KEY `test_idx` (`test_idx`),
1051 …RAINT `tko_iteration_attributes_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx
1063 `test_idx` int(10) unsigned NOT NULL,
1071 KEY `test_idx` (`test_idx`),
1074 …STRAINT `tko_iteration_perf_value_ibfk` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx
1086 `test_idx` int(10) unsigned NOT NULL,
1090 KEY `test_idx` (`test_idx`),
1093 …ONSTRAINT `tko_iteration_result_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx
1367 `test_idx` int(10) unsigned NOT NULL,
[all …]
/external/autotest/tko/
Ddb.py469 for test_idx in self.find_tests(job_idx):
470 where = {'test_idx' : test_idx}
475 self.delete('tko_test_labels_tests', {'test_id': test_idx})
586 test_idx = test.test_idx
588 {'test_idx': test_idx}, commit=commit)
589 where = {'test_idx': test_idx}
597 test_idx = test.test_idx = self.get_last_autonumber_value()
598 data = {'test_idx': test_idx}
616 data = {'test_idx': test_idx}
619 data = {'test_idx': test_idx, 'attribute': key,
[all …]
Dparse.py572 old_tests = dict(((test, subdir), test_idx)
573 for test_idx, subdir, test in raw_old_tests)
578 test_idx = old_tests.pop((test.testname, test.subdir), None)
579 if test_idx is not None:
580 test.test_idx = test_idx
589 for test_idx in tests.itervalues():
590 where = {'test_idx' : test_idx}
595 db.delete('tko_test_labels_tests', {'test_id': test_idx})
Djob_serializer_unittest.py55 tko_test.test_idx = 3
203 self.assertEqual(test.test_idx, newtest.test_idx)
Djob_serializer.py266 pb_test.test_idx = tko_test.test_idx
Dtko.proto34 optional int64 test_idx = 12; field
Dfrontend.py222 def __init__(self, db, test_idx, job_idx, testname, subdir, kernel_idx, argument
224 self.idx = test_idx
/external/autotest/contrib/
Dremove_old_tests_in_tko.sql11 WHILE EXISTS (SELECT test_idx FROM tko_tests WHERE started_time < @cutoff_date LIMIT 1) DO
22 …WHILE EXISTS (SELECT test_idx FROM tko_tests where started_time IS NULL and finished_time < @cutof…
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
D_sklearn.py184 train_idx, test_idx = indices[:train_size], indices[train_size:]
187 result += [x.take(train_idx, axis=0), x.take(test_idx, axis=0)]
/external/autotest/frontend/tko/
Drpc_interface.py120 test_idx = group_dict.pop('latest_test_idx')
121 group_dict['test_idx'] = test_idx
122 test_view = test_views[test_idx]
Dmodels.py203 test_idx = dbmodels.AutoField(primary_key=True) variable in Test
231 'immutable' % (attribute, self.test_idx))
699 test_idx = dbmodels.IntegerField('test index', primary_key=True) variable in TestView
/external/autotest/site_utils/
Dperf_csv_uploader.py168 test_idx=attribute.test_id)
Drun_suite_unittest.py67 def _build_view(self, test_idx, test_name, subdir, status, afe_job_id, argument
96 return {'test_idx': test_idx, 'test_name': test_name, 'subdir':subdir,