Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for TransferEncoding (0.22 sec)

  1. src/net/http/clientserver_test.go

    		t.Errorf("expected ContentLength of %d; got %d", e, g)
    	}
    	wantTE := []string{"chunked"}
    	if mode == http2Mode {
    		wantTE = nil
    	}
    	if !reflect.DeepEqual(res.TransferEncoding, wantTE) {
    		t.Errorf("TransferEncoding = %v; want %v", res.TransferEncoding, wantTE)
    	}
    	if got, haveCL := res.Header["Content-Length"]; haveCL {
    		t.Errorf("Unexpected Content-Length: %q", got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/net/http/httputil/dump_test.go

    	{
    		Req: &http.Request{
    			Method: "GET",
    			URL: &url.URL{
    				Scheme: "http",
    				Host:   "www.google.com",
    				Path:   "/search",
    			},
    			ProtoMajor:       1,
    			ProtoMinor:       1,
    			TransferEncoding: []string{"chunked"},
    		},
    
    		Body: []byte("abcdef"),
    
    		WantDump: "GET /search HTTP/1.1\r\n" +
    			"Host: www.google.com\r\n" +
    			"Transfer-Encoding: chunked\r\n\r\n" +
    			chunk("abcdef") + chunk(""),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	// also treated as unknown.
    	ContentLength int64
    
    	// TransferEncoding lists the transfer encodings from outermost to
    	// innermost. An empty list denotes the "identity" encoding.
    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    	TransferEncoding []string
    
    	// Close indicates whether to close the connection after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. cmd/signature-v4-utils.go

    			extractedSignedHeaders.Set(header, r.Host)
    		case "transfer-encoding":
    			// Go http server removes "host" from Request.Header
    			extractedSignedHeaders[http.CanonicalHeaderKey(header)] = r.TransferEncoding
    		case "content-length":
    			// Signature-V4 spec excludes Content-Length from signed headers list for signature calculation.
    			// But some clients deviate from this rule. Hence we consider Content-Length for signature
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/net/http/requestwrite_test.go

    			Method: "GET",
    			URL: &url.URL{
    				Scheme: "http",
    				Host:   "www.google.com",
    				Path:   "/search",
    			},
    			ProtoMajor:       1,
    			ProtoMinor:       1,
    			Header:           Header{},
    			TransferEncoding: []string{"chunked"},
    		},
    
    		Body: []byte("abcdef"),
    
    		WantWrite: "GET /search HTTP/1.1\r\n" +
    			"Host: www.google.com\r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils_test.go

    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    		t.Fatal("Unable to create http.Request :", err)
    	}
    	r.TransferEncoding = []string{expectedTransferEncoding}
    
    	// Creating input http header.
    	inputHeader := r.Header
    	inputHeader.Set("x-amz-content-sha256", expectedContentSha256)
    	inputHeader.Set("x-amz-date", expectedTime)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    		if r.Method == "GET" && r.FormValue("mode") == "hangup" {
    			c, _, _ := w.(http.Hijacker).Hijack()
    			c.Close()
    			return
    		}
    		if len(r.TransferEncoding) > 0 {
    			t.Errorf("backend got unexpected TransferEncoding: %v", r.TransferEncoding)
    		}
    		if r.Header.Get("X-Forwarded-For") == "" {
    			t.Errorf("didn't get X-Forwarded-For header")
    		}
    		if c := r.Header.Get("Connection"); c != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    			t.Errorf("for %s expected Content-Length header of %q; got %q", url, expected, cl)
    		}
    		if tl, expected := len(res.TransferEncoding), 0; tl != expected {
    			t.Errorf("for %s expected len(res.TransferEncoding) of %d; got %d (%v)",
    				url, expected, tl, res.TransferEncoding)
    		}
    		res.Body.Close()
    	}
    
    	// Verify that ErrContentLength is returned
    	url := ts.URL + "/?overwrite=1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // This type is used to avoid extra allocations from cloning and/or populating
    // the response Header map and all its 1-element slices.
    type extraHeader struct {
    	contentType      string
    	connection       string
    	transferEncoding string
    	date             []byte // written if not nil
    	contentLength    []byte // written if not nil
    }
    
    // Sorted the same as extraHeader.Write's loop.
    var extraHeaderKeys = [][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    		addCustomHeaders(req, testCase.headers)
    
    		// Inject faults if specified in testCase.fault
    		switch testCase.fault {
    		case MissingContentLength:
    			req.ContentLength = -1
    			req.TransferEncoding = []string{}
    		case TooBigObject:
    			req.ContentLength = globalMaxObjectSize + 1
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top