Searched refs:gets (Results 1 – 7 of 7) sorted by relevance
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowTableServlet.java | 73 List<Key> gets = new ArrayList<>(); in processTestRun() local 75 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in processTestRun() 79 Map<Key, Entity> entityMap = datastore.get(gets); in processTestRun() 80 for (Key key : gets) { in processTestRun() 164 List<Key> gets = in doGetHandler() local 172 Map<Key, Entity> entityMap = datastore.get(gets); in doGetHandler() 173 for (Key key : gets) { in doGetHandler()
|
D | ShowGraphServlet.java | 163 List<Key> gets = new ArrayList<>(); in doGetHandler() local 168 gets.add( in doGetHandler() 172 Map<Key, Entity> profilingPoints = datastore.get(gets); in doGetHandler() 194 gets = new ArrayList<>(); in doGetHandler() 198 gets.add(device.getKey()); in doGetHandler() 202 Map<Key, Entity> deviceInfos = datastore.get(gets); in doGetHandler()
|
D | ShowTreeServlet.java | 87 List<Key> gets = new ArrayList<>(); in processTestDetails() local 89 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in processTestDetails() 91 Map<Key, Entity> entityMap = datastore.get(gets); in processTestDetails() 180 List<Key> gets = in doGetHandler() local 188 Map<Key, Entity> entityMap = datastore.get(gets); in doGetHandler() 189 for (Key key : gets) { in doGetHandler()
|
D | ShowPlanReleaseServlet.java | 210 List<Key> gets = in getTestPlanDispatcher() local 218 Map<Key, Entity> entityMap = datastore.get(gets); in getTestPlanDispatcher() 220 for (Key key : gets) { in getTestPlanDispatcher()
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | FilterUtil.java | 511 List<Key> gets = new ArrayList<>(allMatchingKeys); in getMatchingKeys() local 513 gets.sort(Comparator.reverseOrder()); in getMatchingKeys() 515 gets.sort(Comparator.naturalOrder()); in getMatchingKeys() 517 gets = gets.subList(0, Math.min(gets.size(), maxSize)); in getMatchingKeys() 518 return gets; in getMatchingKeys()
|
/test/vti/dashboard/src/main/java/com/android/vts/job/ |
D | VtsAlertJobServlet.java | 84 Set<Key> gets = new HashSet<>(); in getCurrentFailures() local 86 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseRef.parentId)); in getCurrentFailures() 88 if (gets.size() == 0) { in getCurrentFailures() 91 Map<Key, Entity> testCaseMap = datastore.get(gets); in getCurrentFailures()
|
/test/mlts/benchmark/ |
D | README.txt | 40 By default, every test gets run on each available accelerator in isolation. It is possible to filte…
|