Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Huston (0.21 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        server.enqueue(
          MockResponse(
            headers = headersOf("Content-Encoding", "custom"),
            body = "ABCDE",
          ),
        )
        val response =
          getResponse(
            Request.Builder()
              .url(server.url("/"))
              .header("Accept-Encoding", "custom")
              .build(),
          )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        val request =
          Request.Builder()
            .url(server.url("/"))
            .method("CUSTOM", "def".toRequestBody("text/plain".toMediaType()))
            .build()
        executeSynchronously(request)
          .assertCode(200)
          .assertBody("abc")
        val recordedRequest = server.takeRequest()
        assertThat(recordedRequest.method).isEqualTo("CUSTOM")
        assertThat(recordedRequest.body.readUtf8()).isEqualTo("def")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    book
    
    // booking : 2015-07-16 Booking.com B.V.
    booking
    
    // bosch : 2015-06-18 Robert Bosch GMBH
    bosch
    
    // bostik : 2015-05-28 Bostik SA
    bostik
    
    // boston : 2015-12-10 Registry Services, LLC
    boston
    
    // bot : 2014-12-18 Amazon Registry Services, Inc.
    bot
    
    // boutique : 2013-11-14 Binky Moon, LLC
    boutique
    
    // box : 2015-11-12 Intercap Registry Inc.
    box
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top