Home
last modified time | relevance | path

Searched defs:futures (Results 1 – 25 of 62) sorted by relevance

123

/external/okio/okio/src/jvmTest/kotlin/okio/
DThrottlerTest.kt88 val futures = List(threads) { in parallel() constant
101 val futures = List(threads) { in parallelFastThenSlower() constant
116 val futures = List(threads) { in parallelSlowThenFaster() constant
131 val futures = List(threads) { in parallelIndividualThrottle() constant
147 val futures = List(threads) { in parallelGroupAndIndividualThrottle() constant
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/tracing/
DPropagatedFluentFutures.java34 public static <T extends @Nullable Object> PropagatedFluentFuture<List<T>> allAsList( in allAsList()
41 PropagatedFluentFuture<List<@Nullable T>> successfulAsList( in successfulAsList()
DPropagatedFutures.java91 public static <V extends @Nullable Object> PropagatedFutureCombiner<V> whenAllComplete( in whenAllComplete()
97 Iterable<? extends ListenableFuture<? extends V>> futures) { in whenAllComplete()
102 public static <V extends @Nullable Object> PropagatedFutureCombiner<V> whenAllSucceed( in whenAllSucceed()
108 Iterable<? extends ListenableFuture<? extends V>> futures) { in whenAllSucceed()
/external/rust/crates/tokio/src/macros/
Dtry_join.rs125 let mut futures = ( $( maybe_done($e), )* ); localVariable
131 let mut futures = &mut futures; localVariable
Djoin.rs79 let mut futures = ( $( maybe_done($e), )* ); localVariable
85 let mut futures = &mut futures; localVariable
Dselect.rs467 let mut futures = ( $( $fut , )+ ); localVariable
473 let mut futures = &mut futures; localVariable
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/concurrent/
DUncheckedFuture.java48 static <T> Stream<UncheckedFuture<T>> map(final Collection<Future<T>> futures) { in map()
60 static <T> Collection<UncheckedFuture<T>> on(final Collection<Future<T>> futures) { in on()
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/
DAggregateException.java65 Collection<ListenableFuture<T>> futures, in throwIfFailed()
101 Collection<ListenableFuture<T>> futures, String message, Object... args) in throwIfFailed()
117 Collection<ListenableFuture<T>> futures, String message, Object... args) { in consolidateDoneFutures()
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/
DAggregateExceptionTest.java93 List<ListenableFuture<Void>> futures = new ArrayList<>(); in throwIfFailed_multipleExceptions() local
132 List<ListenableFuture<Void>> futures = new ArrayList<>(); in throwIfFailed_withCallback_invokesCallback() local
/external/guava/android/guava/src/com/google/common/util/concurrent/
DCollectionFuture.java42 ImmutableCollection<? extends ListenableFuture<? extends V>> futures, in CollectionFuture()
87 ImmutableCollection<? extends ListenableFuture<? extends V>> futures, in ListFuture()
DAggregateFuture.java59 @CheckForNull private ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures; field in AggregateFuture
65 ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures, in AggregateFuture()
DCombinedFuture.java39 ImmutableCollection<? extends ListenableFuture<?>> futures, in CombinedFuture()
49 ImmutableCollection<? extends ListenableFuture<?>> futures, in CombinedFuture()
/external/guava/guava/src/com/google/common/util/concurrent/
DCollectionFuture.java42 ImmutableCollection<? extends ListenableFuture<? extends V>> futures, in CollectionFuture()
87 ImmutableCollection<? extends ListenableFuture<? extends V>> futures, in ListFuture()
DAggregateFuture.java59 @CheckForNull private ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures; field in AggregateFuture
65 ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures, in AggregateFuture()
DCombinedFuture.java39 ImmutableCollection<? extends ListenableFuture<?>> futures, in CombinedFuture()
49 ImmutableCollection<? extends ListenableFuture<?>> futures, in CombinedFuture()
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsFileChannelTest.java681 List<Future<?>> futures = queueAllBlockingOperations(channel, executor, latch); in testAsynchronousClose() local
744 List<Future<?>> futures = queueAllBlockingOperations(channel, executor, blockingStartLatch); in testCloseByInterrupt() local
784 List<Future<?>> futures = new ArrayList<>(); in queueAllBlockingOperations() local
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DWrappingExecutorServiceTest.java99 List<Future<String>> futures = testExecutor.invokeAll(tasks); in testInvokeAll() local
108 List<Future<String>> futures = testExecutor.invokeAll(tasks, timeout, unit); in testInvokeAll() local
134 private static void checkResults(List<Future<String>> futures) in checkResults()
DAtomicLongMapBasherTest.java49 ArrayList<Future<Long>> futures = new ArrayList<>(); in testModify_basher() local
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DWrappingExecutorServiceTest.java99 List<Future<String>> futures = testExecutor.invokeAll(tasks); in testInvokeAll() local
108 List<Future<String>> futures = testExecutor.invokeAll(tasks, timeout, unit); in testInvokeAll() local
134 private static void checkResults(List<Future<String>> futures) in checkResults()
DAtomicLongMapBasherTest.java49 ArrayList<Future<Long>> futures = new ArrayList<>(); in testModify_basher() local
/external/mockito/src/test/java/org/mockitousage/serialization/
DParallelSerializationTest.java33 List<Future<?>> futures = new ArrayList<Future<?>>(threadingFactor); in single_mock_being_serialized_in_different_classloaders_by_multiple_threads() local
/external/dagger2/java/dagger/producers/internal/
DDependencyMethodProducer.java41 private final Set<ListenableFuture<T>> futures = field in DependencyMethodProducer
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/builder/
DReflectionToStringBuilderConcurrencyTest.java111 final List<Future<Integer>> futures = threadPool.invokeAll(tasks); in testConcurrency() local
DToStringStyleConcurrencyTest.java103 final List<Future<Integer>> futures = threadPool.invokeAll(tasks); in testConcurrency() local
/external/tensorflow/tensorflow/compiler/xla/python/
Dpy_executable.h54 explicit PyShardedToken(std::vector<PjRtFuture<Status>> futures) in PyShardedToken()

123