Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for init (0.17 sec)

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

              host: InetAddress,
              port: Int,
            ): Socket? = null
    
            override fun createSocket(
              address: InetAddress,
              port: Int,
              localAddress: InetAddress,
              localPort: Int,
            ): Socket? = null
    
            override fun createSocket(
              host: String,
              port: Int,
            ): Socket? = null
    
    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-android/src/main/baseline-prof.txt

    HSPLkotlin/UNINITIALIZED_VALUE;-><init>()V
    HSPLkotlin/Unit;-><clinit>()V
    HSPLkotlin/Unit;-><init>()V
    HSPLkotlin/collections/AbstractCollection;-><init>()V
    HSPLkotlin/collections/AbstractList;-><init>()V
    HSPLkotlin/collections/AbstractMutableList;-><init>()V
    HSPLkotlin/collections/ArrayAsCollection;-><init>([Ljava/lang/Object;Z)V
    HSPLkotlin/collections/ArrayAsCollection;->toArray()[Ljava/lang/Object;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        }
        server.shutdown() // tearDown() isn't sufficient; this test starts multiple servers
      }
    
      private fun assertSubsequentResponseCached(
        initialResponseCode: Int,
        finalResponseCode: Int,
      ) {
        server = MockWebServer()
        val builder =
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
    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

    firm.in
    gen.in
    gov.in
    gujarat.in
    ind.in
    info.in
    int.in
    internet.in
    io.in
    me.in
    mil.in
    net.in
    nic.in
    org.in
    pg.in
    post.in
    pro.in
    res.in
    travel.in
    tv.in
    uk.in
    up.in
    us.in
    
    // info : https://en.wikipedia.org/wiki/.info
    info
    
    // int : https://en.wikipedia.org/wiki/.int
    // Confirmed by registry <******@****.***> 2008-06-18
    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)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(recordedRequest.bodySize).isEqualTo(1048576)
        assertThat(recordedRequest.chunkSizes).isEmpty()
      }
    
      private fun upload(
        chunked: Boolean,
        size: Int,
        writeSize: Int,
      ) {
        server.enqueue(MockResponse())
        executeSynchronously(
          Request(
            url = server.url("/"),
            body = requestBody(chunked, size.toLong(), writeSize),
          ),
    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