Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Falque (4.93 sec)

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

        assertThat(responseHeaders.name(0)).isEqualTo("A")
        assertThat(responseHeaders.value(0)).isEqualTo("c")
        assertThat(responseHeaders.name(1)).isEqualTo("B")
        assertThat(responseHeaders.value(1)).isEqualTo("d")
        assertThat(responseHeaders.name(2)).isEqualTo("A")
        assertThat(responseHeaders.value(2)).isEqualTo("e")
        response.body.close()
      }
    
      @Test
      fun serverSendsInvalidStatusLine() {
    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

      }
    
      private fun stringFill(
        fillChar: Char,
        length: Int,
      ): String {
        val value = CharArray(length)
        Arrays.fill(value, fillChar)
        return String(value)
      }
    
      @Test
      fun canceledBeforeExecute() {
        val call = client.newCall(Request.Builder().url(server.url("/a")).build())
        call.cancel()
    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-android/src/main/baseline-prof.txt

    HSPLkotlin/TuplesKt;->withContext(Lkotlin/coroutines/CoroutineContext;Lkotlin/jvm/functions/Function2;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
    HSPLkotlin/UNINITIALIZED_VALUE;-><clinit>()V
    HSPLkotlin/UNINITIALIZED_VALUE;-><init>()V
    HSPLkotlin/Unit;-><clinit>()V
    HSPLkotlin/Unit;-><init>()V
    HSPLkotlin/collections/AbstractCollection;-><init>()V
    HSPLkotlin/collections/AbstractList;-><init>()V
    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)
  4. 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 May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
Back to top