Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Combining (0.03 sec)

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

     * ways similar to {@link FluentFuture}s:
     *
     * <ul>
     *   <li>by transforming the value from a successful input step,
     *   <li>by catching the exception from a failed input step, or
     *   <li>by combining the results of several input steps.
     * </ul>
     *
     * Each derivation can capture the next value or any intermediate objects for later closing.
     *
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 13:51:27 UTC 2025
    - 96.9K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

        nonePlusA.callStart(FailingCall())
        assertThat(a.takeEvent()).isInstanceOf<CallStart>()
        assertThat(a.eventSequence).isEmpty()
      }
    
      /** Make sure we didn't mess up our special case for combining aggregates. */
      @Test
      fun moreThanTwoAggregation() {
        val a = EventRecorder(enforceOrder = false)
        val b = EventRecorder(enforceOrder = false)
        val c = EventRecorder(enforceOrder = false)
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.5K bytes
    - Viewed (0)
Back to top