Home
last modified time | relevance | path

Searched defs:TestFuture (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/concurrent/
H A DUncheckedFutureTest.java40 private static class TestFuture<V> extends AbstractFutureProxy<V> { class in UncheckedFutureTest
44 TestFuture(final Exception throwable) { in TestFuture() method in UncheckedFutureTest.TestFuture
49 TestFuture(final V value) { in TestFuture() method in UncheckedFutureTest.TestFuture
/aosp_15_r20/external/dagger2/javatests/dagger/functional/producers/cancellation/
H A DProducerTester.java141 private static final class TestFuture extends AbstractFuture<String> { class in ProducerTester
146 private TestFuture(String name) { in TestFuture() method in ProducerTester.TestFuture
/aosp_15_r20/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DTestScheduledExecutorService.java182 static class TestFuture implements ScheduledFuture<Void> { class in TestScheduledExecutorService
188 public TestFuture(Runnable runnable, long delay, TimeUnit unit) { in TestFuture() method in TestScheduledExecutorService.TestFuture
/aosp_15_r20/external/crosvm/cros_async/src/sync/
H A Dmu.rs1279 struct TestFuture { in rw_single_thread_async() struct
1280 polled: bool, in rw_single_thread_async()
1281 waker: Arc<SpinLock<Option<Waker>>>, in rw_single_thread_async()
1284 impl Future for TestFuture { in rw_single_thread_async() implementation
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_future4.py6 class TestFuture(unittest.TestCase): class
Dtest_future3.py15 class TestFuture(unittest.TestCase): class
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_future3.py14 class TestFuture(unittest.TestCase): class
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/util/concurrent/
H A DFutureTest.java116 static class TestFuture implements Future<Integer> { class in FutureTest
/aosp_15_r20/external/pytorch/test/
H A Dtest_futures.py19 class TestFuture(TestCase): class