Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ImmutableList (1.47 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ImmutableList<? extends ListenableFuture<?>> inputs =
            ImmutableList.<ListenableFuture<?>>of(future1, future2, future3);
        ImmutableList<ListenableFuture<Object>> futures = inCompletionOrder(inputs);
        future2.set("1L");
        future1.set(2L);
        future3.set(3);
    
        ImmutableList<?> expected = ImmutableList.of("1L", 2L, 3);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ImmutableList<? extends ListenableFuture<?>> inputs =
            ImmutableList.<ListenableFuture<?>>of(future1, future2, future3);
        ImmutableList<ListenableFuture<Object>> futures = inCompletionOrder(inputs);
        future2.set("1L");
        future1.set(2L);
        future3.set(3);
    
        ImmutableList<?> expected = ImmutableList.of("1L", 2L, 3);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * <p>Only for use by a {@link CombiningCallable} or {@link AsyncCombiningCallable} object.
       */
      public static final class Peeker {
        private final ImmutableList<ClosingFuture<?>> futures;
        private volatile boolean beingCalled;
    
        private Peeker(ImmutableList<ClosingFuture<?>> futures) {
          this.futures = checkNotNull(futures);
        }
    
        /**
         * Returns the value of {@code closingFuture}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * <p>Only for use by a {@link CombiningCallable} or {@link AsyncCombiningCallable} object.
       */
      public static final class Peeker {
        private final ImmutableList<ClosingFuture<?>> futures;
        private volatile boolean beingCalled;
    
        private Peeker(ImmutableList<ClosingFuture<?>> futures) {
          this.futures = checkNotNull(futures);
        }
    
        /**
         * Returns the value of {@code closingFuture}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top