Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Franke (0.18 sec)

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

            .build(),
        )
        val url = server.url("/")
        val request =
          Request.Builder()
            .url(url)
            .header("Range", "bytes=1000-1001")
            .build()
        val range = client.newCall(request).execute()
        assertThat(range.body.string()).isEqualTo("AA")
        assertThat(get(url).body.string()).isEqualTo("BB")
      }
    
      /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    orsites.com
    
    // Opera Software, A.S.A.
    // Submitted by Yngve Pettersen <******@****.***>
    operaunite.com
    
    // Orange : https://www.orange.com
    // Submitted by Alexandre Linte <alexandre.linte@orange.com>
    tech.orange
    
    // Oursky Limited : https://authgear.com/, https://skygear.io/
    // Submitted by Authgear Team <******@****.***>, Skygear Developer <******@****.***>
    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)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

            .body(gzippedBody)
            .addHeader("Content-Encoding: gzip")
            .addHeader("Content-Range: bytes 0-" + (gzippedBody.size - 1))
            .build(),
        )
    
        // Make a range request.
        val request =
          Request.Builder()
            .url(server.url("/"))
            .header("Range", "bytes=0-")
            .build()
        val call = client.newCall(request)
    
    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)
Back to top