- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getKeepAlive (0.1 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
} @Throws(IOException::class) override fun getInputStream(): InputStream { return delegate!!.inputStream } @Throws(SocketException::class) override fun getKeepAlive(): Boolean { return delegate!!.keepAlive } override fun getLocalAddress(): InetAddress { return delegate!!.localAddress } override fun getLocalPort(): Int {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/URLConnectionTest.kt
assertFailsWith<IOException> { getResponse(Request("http://-/foo.html".toHttpUrl())) } } // The request should work once and then fail. @Test fun getKeepAlive() { server.enqueue(MockResponse(body = "ABC")) // The request should work once and then fail. val connection1 = getResponse(newRequest("/")) val source1 = connection1.body.source()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K bytes - Viewed (0)