Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getValueNames (0.25 sec)

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

      override fun removeValue(s: String): Unit = throw UnsupportedOperationException()
    
      override fun getValue(s: String): Any = throw UnsupportedOperationException()
    
      override fun getValueNames(): Array<String> = throw UnsupportedOperationException()
    
      override fun invalidate(): Unit = throw UnsupportedOperationException()
    
      override fun isValid(): Boolean = throw UnsupportedOperationException()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt

      ) {
        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)
      override fun getPeerCertificates(): Array<Certificate>? = delegate!!.peerCertificates
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top