Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for AbstractFuture (0.07 seconds)

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

        BarChild barChild = new BarChild();
        AsyncFunction<Foo, BarChild> function =
            new AsyncFunction<Foo, BarChild>() {
              @Override
              public AbstractFuture<BarChild> apply(Foo unused) {
                AbstractFuture<BarChild> future = new AbstractFuture<BarChild>() {};
                future.set(barChild);
                return future;
              }
            };
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 134K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        BarChild barChild = new BarChild();
        AsyncFunction<Foo, BarChild> function =
            new AsyncFunction<Foo, BarChild>() {
              @Override
              public AbstractFuture<BarChild> apply(Foo unused) {
                AbstractFuture<BarChild> future = new AbstractFuture<BarChild>() {};
                future.set(barChild);
                return future;
              }
            };
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 134K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          }
        }
      }
    
      static class LoadingValueReference<K, V> implements ValueReference<K, V> {
        volatile ValueReference<K, V> oldValue;
    
        // TODO(fry): rename get, then extend AbstractFuture instead of containing SettableFuture
        final SettableFuture<V> futureValue = SettableFuture.create();
        final Stopwatch stopwatch = Stopwatch.createUnstarted();
    
        public LoadingValueReference() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  4. guava/src/com/google/common/cache/LocalCache.java

          }
        }
      }
    
      static class LoadingValueReference<K, V> implements ValueReference<K, V> {
        volatile ValueReference<K, V> oldValue;
    
        // TODO(fry): rename get, then extend AbstractFuture instead of containing SettableFuture
        final SettableFuture<V> futureValue = SettableFuture.create();
        final Stopwatch stopwatch = Stopwatch.createUnstarted();
    
        public LoadingValueReference() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
Back to Top