Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCreationTime (0.23 sec)

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

    ) : SSLSession {
      override fun getApplicationBufferSize(): Int = throw UnsupportedOperationException()
    
      override fun getCipherSuite(): String = throw UnsupportedOperationException()
    
      override fun getCreationTime(): Long = throw UnsupportedOperationException()
    
      override fun getId(): ByteArray = throw UnsupportedOperationException()
    
      override fun getLastAccessedTime(): Long = 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

      protected val delegate: SSLSession?,
    ) : SSLSession {
      override fun getId(): ByteArray = delegate!!.id
    
      override fun getSessionContext(): SSLSessionContext = delegate!!.sessionContext
    
      override fun getCreationTime(): Long = delegate!!.creationTime
    
      override fun getLastAccessedTime(): Long = delegate!!.lastAccessedTime
    
      override fun invalidate() {
        delegate!!.invalidate()
      }
    
    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