Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for propagated (0.09 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

        return nonNull;
      }
    
      /**
       * Creates a {@link FutureCombiner} that processes the completed futures whether or not they're
       * successful.
       *
       * <p>Any failures from the input futures will not be propagated to the returned future.
       *
       * @since 20.0
       */
      @SafeVarargs
      public static <V extends @Nullable Object> FutureCombiner<V> whenAllComplete(
          ListenableFuture<? extends V>... futures) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

        return nonNull;
      }
    
      /**
       * Creates a {@link FutureCombiner} that processes the completed futures whether or not they're
       * successful.
       *
       * <p>Any failures from the input futures will not be propagated to the returned future.
       *
       * @since 20.0
       */
      @SafeVarargs
      public static <V extends @Nullable Object> FutureCombiner<V> whenAllComplete(
          ListenableFuture<? extends V>... futures) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilder.java

       * operation at some <i>undefined</i> point in the future.
       *
       * <p><b>Warning:</b> any exception thrown by {@code listener} will <i>not</i> be propagated to
       * the {@code Cache} user, only logged via a {@link Logger}.
       *
       * @return the cache builder reference that should be used instead of {@code this} for any
       *     remaining configuration and cache building
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * operation at some <i>undefined</i> point in the future.
       *
       * <p><b>Warning:</b> any exception thrown by {@code listener} will <i>not</i> be propagated to
       * the {@code Cache} user, only logged via a {@link Logger}.
       *
       * @return the cache builder reference that should be used instead of {@code this} for any
       *     remaining configuration and cache building
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          ).build()
        val call1 = localClient.newCall(Request(server.url("/")))
        val response1 = call1.execute()
        assertThat(response1.body.string()).isEqualTo("ABC")
    
        // Add delays for DISCONNECT_AT_END to propogate
        waitForConnectionShutdown(connections[0])
        val call2 = localClient.newCall(Request(server.url("/")))
        val response2 = call2.execute()
        assertThat(response2.body.string()).isEqualTo("DEF")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top