Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for redeclared (0.35 sec)

  1. src/net/http/server.go

    	// ErrContentLength is returned by ResponseWriter.Write calls
    	// when a Handler set a Content-Length response header with a
    	// declared size and then attempted to write more bytes than
    	// declared.
    	ErrContentLength = errors.New("http: wrote more than the declared Content-Length")
    
    	// Deprecated: ErrWriteAfterFlush is no longer returned by
    	// anything in the net/http package. Callers should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	//         variables in the .Value field; the sources of variables are the declared
    	//         variables of the container and the service environment variables
    	//     b.  If a source is defined for an environment variable, resolve the source
    	// 2.  Create the container's environment in the order variables are declared
    	// 3.  Add remaining service environment vars
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	if err != nil {
    		t.Fatalf("error with Get of %s: %v", url, err)
    	}
    	res.Body.Close()
    
    	if mode != http1Mode {
    		return
    	}
    
    	// Verify that the connection is closed when the declared Content-Length
    	// is larger than what the handler wrote.
    	conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    	if err != nil {
    		t.Fatalf("error dialing: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top