Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Song (0.23 sec)

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

      ) {
        this.server = server
        this.server2 = server2
        platform.assumeNotOpenJSSE()
        server.protocolNegotiationEnabled = false
        fileSystem.emulateUnix()
        cache = Cache(fileSystem, "/cache/".toPath(), Long.MAX_VALUE)
        client =
          clientTestRule.newClientBuilder()
            .cache(cache)
            .cookieJar(JavaNetCookieJar(cookieManager))
            .build()
      }
    
      @AfterEach
      fun tearDown() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 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

    موريتانيا
    
    // xn--node ("ge", Georgian Mkhedruli) : GE
    გე
    
    // xn--qxam ("el", Greek) : GR
    // Hellenic Ministry of Infrastructure, Transport, and Networks
    ελ
    
    // xn--j6w193g ("Hong Kong", Chinese) : HK
    // https://www.hkirc.hk
    // Submitted by registry <******@****.***>
    // https://www.hkirc.hk/content.jsp?id=30#!/34
    香港
    公司.香港
    教育.香港
    政府.香港
    個人.香港
    網絡.香港
    組織.香港
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

                  override fun contentType(): MediaType? = null
    
                  override fun contentLength(): Long = contentLength
    
                  override fun writeTo(sink: BufferedSink) {
                    val buffer = ByteArray(1024 * 1024)
                    var bytesWritten: Long = 0
                    while (bytesWritten < contentLength) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

                "Retry-After",
                "1",
              ),
            body = "You took too long!",
            socketPolicy = DisconnectAtEnd,
          ),
        )
        val request = Request(server.url("/"))
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("You took too long!")
      }
    
      @Test
      fun requestBodyRetransmittedOnClientRequestTimeout() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
Back to top