Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for successfulHttpProxyConnect (0.08 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionListenerTest.kt

          "ConnectFailed",
          "ConnectStart",
          "ConnectEnd",
          "ConnectionAcquired",
          "ConnectionReleased",
        )
      }
    
      @Test
      @Throws(IOException::class)
      fun successfulHttpProxyConnect() {
        server.enqueue(MockResponse())
        val proxy = server.proxyAddress
        client =
          client
            .newBuilder()
            .proxy(proxy)
            .build()
        val call =
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 18:33:48 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

        eventRecorder.removeUpToEvent<ConnectFailed>()
        eventRecorder.removeUpToEvent<ConnectStart>()
        eventRecorder.removeUpToEvent<ConnectEnd>()
      }
    
      @Test
      fun successfulHttpProxyConnect() {
        server.enqueue(MockResponse())
        client =
          client
            .newBuilder()
            .proxy(server.proxyAddress)
            .build()
        val call =
          client.newCallWithListener(
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.5K bytes
    - Viewed (0)
Back to top