Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for ForwardingListenableFuture (0.43 sec)

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

        SettableFuture<Object> orig = SettableFuture.create();
        // unlike the above this indirection defeats the trivial cycle detection and causes a SOE
        orig.setFuture(
            new ForwardingListenableFuture<Object>() {
              @Override
              protected ListenableFuture<Object> delegate() {
                return orig;
              }
            });
        assertThat(orig.toString())
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 46.8K bytes
    - Viewed (0)
Back to top