Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for eles (0.19 sec)

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

              return if (uploadKind === TransferKind.CHUNKED) -1L else n.toLong()
            }
    
            override fun writeTo(sink: BufferedSink) {
              if (writeKind == WriteKind.BYTE_BY_BYTE) {
                for (i in 0 until n) {
                  sink.writeByte('x'.code)
                }
              } else {
                val buf = ByteArray(if (writeKind == WriteKind.SMALL_BUFFERS) 256 else 64 * 1024)
                Arrays.fill(buf, 'x'.code.toByte())
    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

              // JDK 11 response to the FAIL_HANDSHAKE
              val jvmVersion = System.getProperty("java.specification.version")
              assertThat(jvmVersion).isEqualTo("11")
            }
            else -> throw expected
          }
        }
      }
    
      @Test
      fun tlsHostnameVerificationFailure() {
        assumeNotWindows()
        platform.assumeNotBouncyCastle()
    
        server.enqueue(MockResponse())
    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/java/okhttp3/CacheTest.kt

          assertThat(response2.header("X-Response-ID")).isEqualTo("1")
        } else {
          assertThat(response2.header("X-Response-ID")).isEqualTo("2")
        }
      }
    
      private fun requestBodyOrNull(requestMethod: String): RequestBody? {
        return if (requestMethod == "POST" || requestMethod == "PUT") "foo".toRequestBody("text/plain".toMediaType()) else null
      }
    
      @Test
      fun postInvalidatesCache() {
    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)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    dnsupdater.de
    internet-dns.de
    l-o-g-i-n.de
    dynamic-dns.info
    feste-ip.net
    knx-server.net
    static-access.net
    
    // Craynic, s.r.o. : http://www.craynic.com/
    // Submitted by Ales Krajnik <ales******@****.***>
    realm.cz
    
    // Cryptonomic : https://cryptonomic.net/
    // Submitted by Andrew Cady <******@****.***>
    *.cryptonomic.net
    
    // Cupcake : https://cupcake.io/
    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