Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for removeValue (0.3 seconds)

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

      override fun putValue(
        s: String,
        o: Any,
      ) {
        delegate!!.putValue(s, o)
      }
    
      override fun getValue(s: String): Any = delegate!!.getValue(s)
    
      override fun removeValue(s: String) {
        delegate!!.removeValue(s)
      }
    
      override fun getValueNames(): Array<String> = delegate!!.valueNames
    
      @Throws(SSLPeerUnverifiedException::class)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt

      override fun getSessionContext(): SSLSessionContext = throw UnsupportedOperationException()
    
      override fun putValue(
        s: String,
        obj: Any,
      ): Unit = throw UnsupportedOperationException()
    
      override fun removeValue(s: String): Unit = throw UnsupportedOperationException()
    
      override fun getValue(s: String): Any = throw UnsupportedOperationException()
    
      override fun getValueNames(): Array<String> = throw UnsupportedOperationException()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 3.2K bytes
    - Click Count (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;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Jan 18 02:54:30 GMT 2025
    - 17.8K bytes
    - Click Count (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
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top