Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ProtoMinor (0.5 sec)

  1. src/net/http/response_test.go

    	return &Request{Method: method, Proto: "HTTP/1.1", ProtoMajor: 1, ProtoMinor: 1}
    }
    
    var respTests = []respTest{
    	// Unchunked response without Content-Length.
    	{
    		"HTTP/1.0 200 OK\r\n" +
    			"Connection: close\r\n" +
    			"\r\n" +
    			"Body here\n",
    
    		Response{
    			Status:     "200 OK",
    			StatusCode: 200,
    			Proto:      "HTTP/1.0",
    			ProtoMajor: 1,
    			ProtoMinor: 0,
    			Request:    dummyReq("GET"),
    			Header: Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/net/http/readrequest_test.go

    			"abcdef\n???",
    
    		&Request{
    			Method: "GET",
    			URL: &url.URL{
    				Scheme: "http",
    				Host:   "www.techcrunch.com",
    				Path:   "/",
    			},
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Header: Header{
    				"Accept":           {"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},
    				"Accept-Language":  {"en-us,en;q=0.5"},
    				"Accept-Encoding":  {"gzip,deflate"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/net/http/httptest/httptest_test.go

    	want := &http.Request{
    		Method:     "GET",
    		Host:       "example.com",
    		URL:        &url.URL{Path: "/"},
    		Header:     http.Header{},
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		RemoteAddr: "192.0.2.1:1234",
    		RequestURI: "/",
    	}
    	got.Body = nil // before DeepEqual
    	want = want.WithContext(context.Background())
    	if !reflect.DeepEqual(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/net/http/response.go

    	return r.ProtoMajor > major ||
    		r.ProtoMajor == major && r.ProtoMinor >= minor
    }
    
    // Write writes r to w in the HTTP/1.x server response format,
    // including the status line, headers, body, and optional trailer.
    //
    // This method consults the following fields of the response r:
    //
    //	StatusCode
    //	ProtoMajor
    //	ProtoMinor
    //	Request.Method
    //	TransferEncoding
    //	Trailer
    //	Body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/net/http/transfer.go

    		t.ProtoMajor = rr.ProtoMajor
    		t.ProtoMinor = rr.ProtoMinor
    		t.Close = shouldClose(t.ProtoMajor, t.ProtoMinor, t.Header, true)
    		isResponse = true
    		if rr.Request != nil {
    			t.RequestMethod = rr.Request.Method
    		}
    	case *Request:
    		t.Header = rr.Header
    		t.RequestMethod = rr.Method
    		t.ProtoMajor = rr.ProtoMajor
    		t.ProtoMinor = rr.ProtoMinor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. src/net/http/httptest/httptest.go

    	if err != nil {
    		panic("invalid NewRequest arguments; " + err.Error())
    	}
    	req = req.WithContext(ctx)
    
    	// HTTP/1.0 was used above to avoid needing a Host field. Change it to 1.1 here.
    	req.Proto = "HTTP/1.1"
    	req.ProtoMinor = 1
    	req.Close = false
    
    	if body != nil {
    		switch v := body.(type) {
    		case *bytes.Buffer:
    			req.ContentLength = int64(v.Len())
    		case *bytes.Reader:
    			req.ContentLength = int64(v.Len())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/net/http/cgi/child.go

    	r.Method = params["REQUEST_METHOD"]
    	if r.Method == "" {
    		return nil, errors.New("cgi: no REQUEST_METHOD in environment")
    	}
    
    	r.Proto = params["SERVER_PROTOCOL"]
    	var ok bool
    	r.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion(r.Proto)
    	if !ok {
    		return nil, errors.New("cgi: invalid SERVER_PROTOCOL version")
    	}
    
    	r.Close = true
    	r.Trailer = http.Header{}
    	r.Header = http.Header{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	// For client requests, these fields are ignored. The HTTP
    	// client code always uses either HTTP/1.1 or HTTP/2.
    	// See the docs on Transport for details.
    	Proto      string // "HTTP/1.0"
    	ProtoMajor int    // 1
    	ProtoMinor int    // 0
    
    	// Header contains the request header fields either received
    	// by the server or to be sent by the client.
    	//
    	// If a server received a request with header lines,
    	//
    	//	Host: example.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/net/http/httptest/recorder.go

    	if rw.result != nil {
    		return rw.result
    	}
    	if rw.snapHeader == nil {
    		rw.snapHeader = rw.HeaderMap.Clone()
    	}
    	res := &http.Response{
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		StatusCode: rw.Code,
    		Header:     rw.snapHeader,
    	}
    	rw.result = res
    	if res.StatusCode == 0 {
    		res.StatusCode = 200
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/net/http/httputil/dump.go

    	reqURI := req.RequestURI
    	if reqURI == "" {
    		reqURI = req.URL.RequestURI()
    	}
    
    	fmt.Fprintf(&b, "%s %s HTTP/%d.%d\r\n", valueOrDefault(req.Method, "GET"),
    		reqURI, req.ProtoMajor, req.ProtoMinor)
    
    	absRequestURI := strings.HasPrefix(req.RequestURI, "http://") || strings.HasPrefix(req.RequestURI, "https://")
    	if !absRequestURI {
    		host := req.Host
    		if host == "" && req.URL != nil {
    			host = req.URL.Host
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top