Searched refs:TestFuture (Results 1 – 8 of 8) sorted by relevance
/external/dagger2/javatests/dagger/functional/producers/cancellation/ |
D | ProducerTester.java | 39 private final Map<String, TestFuture> futures = new HashMap<>(); 46 private TestFuture getOrCreate(String node) { in getOrCreate() 47 TestFuture result = futures.get(node); in getOrCreate() 49 result = new TestFuture(node); in getOrCreate() 69 TestFuture future = futures.get(node); in isCancelled() 95 for (TestFuture future : futures.values()) { in assertNoStartedNodes() 100 private Only assertAboutNodes(Predicate<? super TestFuture> assertion, String... nodes) { in assertAboutNodes() 101 ImmutableSet.Builder<TestFuture> builder = ImmutableSet.builder(); in assertAboutNodes() 103 TestFuture future = getOrCreate(node); in assertAboutNodes() 116 private final ImmutableSet<TestFuture> expected; [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_future3.py | 15 class TestFuture(unittest.TestCase): class 27 test_support.run_unittest(TestFuture)
|
D | test_future4.py | 6 class TestFuture(unittest.TestCase): class 44 test_support.run_unittest(TestFuture)
|
/external/python/cpython3/Lib/test/ |
D | test_future3.py | 14 class TestFuture(unittest.TestCase): class
|
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 3012 private static final class TestFuture { 3018 TestFuture(ListenableFuture<String> future, String name, Runnable finisher) { 3125 final ImmutableList<TestFuture> allFutures = 3127 new TestFuture(doneSuccess, "doneSuccess", doNothing), 3128 new TestFuture(doneFailed, "doneFailed", doNothing), 3129 new TestFuture(doneCancelled, "doneCancelled", doNothing), 3130 new TestFuture(doneRuntimeException, "doneRuntimeException", doNothing), 3131 new TestFuture(delayedSuccess, "delayedSuccess", finishSuccess), 3132 new TestFuture(delayedFailed, "delayedFailed", finishFailure), 3133 new TestFuture(delayedCancelled, "delayedCancelled", finishCancelled), [all …]
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 3012 private static final class TestFuture { 3018 TestFuture(ListenableFuture<String> future, String name, Runnable finisher) { 3125 final ImmutableList<TestFuture> allFutures = 3127 new TestFuture(doneSuccess, "doneSuccess", doNothing), 3128 new TestFuture(doneFailed, "doneFailed", doNothing), 3129 new TestFuture(doneCancelled, "doneCancelled", doNothing), 3130 new TestFuture(doneRuntimeException, "doneRuntimeException", doNothing), 3131 new TestFuture(delayedSuccess, "delayedSuccess", finishSuccess), 3132 new TestFuture(delayedFailed, "delayedFailed", finishFailure), 3133 new TestFuture(delayedCancelled, "delayedCancelled", finishCancelled), [all …]
|
/external/crosvm/cros_async/src/sync/ |
D | mu.rs | 1237 struct TestFuture { in rw_single_thread_async() struct 1242 impl Future for TestFuture { in rw_single_thread_async() implementation 1277 let fut = TestFuture { in rw_single_thread_async()
|
/external/libchromeos-rs/src/sync/ |
D | mu.rs | 1360 struct TestFuture { in rw_single_thread_async() struct 1365 impl Future for TestFuture { in rw_single_thread_async() implementation 1398 let fut = TestFuture { in rw_single_thread_async()
|