Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for input (0.13 sec)

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

        }
        ImmutableList<SettableFuture<Long>> inputs = builder.build();
        ImmutableList<ListenableFuture<Long>> delegates = inCompletionOrder(inputs);
    
        for (ListenableFuture<?> delegate : delegates) {
          delegate.cancel(true);
        }
    
        for (ListenableFuture<?> input : inputs) {
          assertTrue(input.isDone());
        }
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
        ImmutableList<SettableFuture<Long>> inputs = builder.build();
        ImmutableList<ListenableFuture<Long>> delegates = inCompletionOrder(inputs);
    
        for (ListenableFuture<?> delegate : delegates) {
          delegate.cancel(true);
        }
    
        for (ListenableFuture<?> input : inputs) {
          assertTrue(input.isDone());
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * Executor)} on the input step.
     *
     * <h4>Catching</h4>
     *
     * To derive the next step from a failed input step, call {@link #catching(Class, ClosingFunction,
     * Executor)} or {@link #catchingAsync(Class, AsyncClosingFunction, Executor)} on the input step.
     *
     * <h4>Combining</h4>
     *
     * To derive a {@code ClosingFuture} from two or more input steps, pass the input steps to {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
          checkArgument(output != null, "No non-null mapping present for input: %s", input);
          return output;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: hq */
        public static final String LABELS_HQ = "{labels.hq}";
    
        /** The key of the message: Source */
        public static final String LABELS_INPUTS = "{labels.inputs}";
    
        /** The key of the message: Logging */
        public static final String LABELS_JOB_LOGGING = "{labels.jobLogging}";
    
        /** The key of the message: Name */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top