Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removeValue (0.09 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt

        s: String,
        o: Any,
      ) {
        delegate!!.putValue(s, o)
      }
    
      override fun getValue(s: String): Any {
        return delegate!!.getValue(s)
      }
    
      override fun removeValue(s: String) {
        delegate!!.removeValue(s)
      }
    
      override fun getValueNames(): Array<String> {
        return delegate!!.valueNames
      }
    
      @Throws(SSLPeerUnverifiedException::class)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt

        throw UnsupportedOperationException()
      }
    
      override fun putValue(
        s: String,
        obj: Any,
      ) {
        throw UnsupportedOperationException()
      }
    
      override fun removeValue(s: String) {
        throw UnsupportedOperationException()
      }
    
      override fun getValue(s: String): Any {
        throw UnsupportedOperationException()
      }
    
      override fun getValueNames(): Array<String> {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        Object removedValue;
    
        if (previousValue == null || previousValue == PRED) {
          removedValue = null;
        } else if (previousValue instanceof PredAndSucc) {
          adjacentNodeValues.put((N) node, PRED);
          removedValue = ((PredAndSucc) previousValue).successorValue;
        } else { // successor
          adjacentNodeValues.remove(node);
          removedValue = previousValue;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. RELEASE.md

        *   Added `tf.distribute.experimental.coordinator.*` namespace, including
            the main API `ClusterCoordinator` for coordinating the training cluster,
            the related data structure `RemoteValue` and `PerWorkerValue`.
    *   `MultiWorkerMirroredStrategy`](https://www.tensorflow.org/api_docs/python/tf/distribute/MultiWorkerMirroredStrategy)
        is now a stable API and is no longer considered experimental. Some of the
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top