Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 2048 (0.04 sec)

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

        // assertCached(false, 100);
        assertCached(false, 101)
        assertCached(true, 200)
        assertCached(false, 201)
        assertCached(false, 202)
        assertCached(true, 203)
        assertCached(true, 204)
        assertCached(false, 205)
        assertCached(false, 206) // Electing to not cache partial responses
        assertCached(false, 207)
        assertCached(true, 300)
        assertCached(true, 301)
        assertCached(true, 302)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

      }
    
      @Test
      fun http204WithBodyDisallowed() {
        server.enqueue(
          MockResponse(
            code = 204,
            body = "I'm not even supposed to be here today.",
          ),
        )
        executeSynchronously("/")
          .assertFailure("HTTP 204 had non-zero Content-Length: 39")
      }
    
      @Test
      fun http205WithBodyDisallowed() {
        server.enqueue(
          MockResponse(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            body = "This body is not allowed!",
          ),
        )
        assertFailsWith<IOException> {
          getResponse(newRequest("/"))
        }.also { expected ->
          assertThat(expected.message).isEqualTo("HTTP 204 had non-zero Content-Length: 25")
        }
      }
    
      @Test
      fun singleByteReadIsSigned() {
        server.enqueue(
          MockResponse
            .Builder()
            .body(
              Buffer()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  4. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    123website.lu
    123website.nl
    12chars.dev
    12chars.it
    12chars.pro
    12hp.at
    12hp.ch
    12hp.de
    1337.pictures
    16-b.it
    180r.com
    1kapp.com
    2-d.jp
    2.azurestaticapps.net
    2.bg
    2000.hu
    2038.io
    2ix.at
    2ix.ch
    2ix.de
    3.azurestaticapps.net
    3.bg
    32-b.it
    3utilities.com
    4.azurestaticapps.net
    4.bg
    4lima.at
    4lima.ch
    4lima.de
    4u.com
    5.azurestaticapps.net
    5.bg
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  5. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    123website.lu
    123website.nl
    12chars.dev
    12chars.it
    12chars.pro
    12hp.at
    12hp.ch
    12hp.de
    1337.pictures
    16-b.it
    180r.com
    1kapp.com
    2-d.jp
    2.azurestaticapps.net
    2.bg
    2000.hu
    2038.io
    2ix.at
    2ix.ch
    2ix.de
    3.azurestaticapps.net
    3.bg
    32-b.it
    3utilities.com
    4.azurestaticapps.net
    4.bg
    4lima.at
    4lima.ch
    4lima.de
    4u.com
    5.azurestaticapps.net
    5.bg
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
Back to top