Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lazyTransform (0.23 sec)

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

          executor.shutdown();
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // lazyTransform
      public void testLazyTransform() throws Exception {
        FunctionSpy<Object, String> spy = new FunctionSpy<>(constant("bar"));
        Future<String> input = immediateFuture("foo");
        Future<String> transformed = lazyTransform(input, spy);
        spy.verifyCallCount(0);
        assertEquals("bar", getDone(transformed));
    Java
    - Registered: Fri Apr 26 12:43:10 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

          executor.shutdown();
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // lazyTransform
      public void testLazyTransform() throws Exception {
        FunctionSpy<Object, String> spy = new FunctionSpy<>(constant("bar"));
        Future<String> input = immediateFuture("foo");
        Future<String> transformed = lazyTransform(input, spy);
        spy.verifyCallCount(0);
        assertEquals("bar", getDone(transformed));
    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/Futures.java

       * @since 10.0
       */
      @J2ktIncompatible
      @GwtIncompatible // TODO
      public static <I extends @Nullable Object, O extends @Nullable Object> Future<O> lazyTransform(
          final Future<I> input, final Function<? super I, ? extends O> function) {
        checkNotNull(input);
        checkNotNull(function);
        return new Future<O>() {
    
          @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top