Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for removeHeader (0.08 sec)

  1. okhttp/api/jvm/okhttp.api

    	public fun post (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    	public fun put (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    	public fun query (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    	public fun removeHeader (Ljava/lang/String;)Lokhttp3/Request$Builder;
    	public fun tag (Ljava/lang/Class;Ljava/lang/Object;)Lokhttp3/Request$Builder;
    	public fun tag (Ljava/lang/Object;)Lokhttp3/Request$Builder;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  2. okhttp/api/android/okhttp.api

    	public fun post (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    	public fun put (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    	public fun query (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    	public fun removeHeader (Ljava/lang/String;)Lokhttp3/Request$Builder;
    	public fun tag (Ljava/lang/Class;Ljava/lang/Object;)Lokhttp3/Request$Builder;
    	public fun tag (Ljava/lang/Object;)Lokhttp3/Request$Builder;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

      fun get204Response(protocol: Protocol) {
        setUp(protocol)
        val responseWithoutBody =
          MockResponse
            .Builder()
            .status("HTTP/1.1 204")
            .removeHeader("Content-Length")
            .build()
        server.enqueue(responseWithoutBody)
        val call = client.newCall(Request(server.url("/foo")))
        val response = call.execute()
    
        // Body contains nothing.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 73.4K bytes
    - Viewed (0)
Back to top