Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setDelegates (0.04 sec)

  1. guava/src/com/google/common/collect/AbstractBiMap.java

      V checkValue(@ParametricNullness V value) {
        return value;
      }
    
      /**
       * Specifies the delegate maps going in each direction. Called by subclasses during
       * deserialization.
       */
      void setDelegates(Map<K, V> forward, Map<V, K> backward) {
        inverse = checkMapsAndMakeInverse(forward, backward);
        delegate = forward;
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 15:50:50 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

       * connections.
       */
      private fun detachTimeout(timeout: ForwardingTimeout) {
        val oldDelegate = timeout.delegate
        timeout.setDelegate(Timeout.NONE)
        oldDelegate.clearDeadline()
        oldDelegate.clearTimeout()
      }
    
      /**
       * The response body from a CONNECT should be empty, but if it is not then we should consume it
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 17.5K bytes
    - Viewed (7)
Back to top