Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for t0 (0.03 sec)

  1. src/net/http/server.go

    	}
    
    	var (
    		wholeReqDeadline time.Time // or zero if none
    		hdrDeadline      time.Time // or zero if none
    	)
    	t0 := time.Now()
    	if d := c.server.readHeaderTimeout(); d > 0 {
    		hdrDeadline = t0.Add(d)
    	}
    	if d := c.server.ReadTimeout; d > 0 {
    		wholeReqDeadline = t0.Add(d)
    	}
    	c.rwc.SetReadDeadline(hdrDeadline)
    	if d := c.server.WriteTimeout; d > 0 {
    		defer func() {
    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. src/net/http/serve_test.go

    	// It is undocumented, and some users may find it surprising.
    	// Either document it, or switch to a less surprising behavior.
    	const expectTimeout = 5 * time.Second
    
    	t0 := time.Now()
    	select {
    	case got := <-shutdownRes:
    		d := time.Since(t0)
    		if got != nil {
    			t.Fatalf("shutdown error after %v: %v", d, err)
    		}
    		if d < expectTimeout/2 {
    			t.Errorf("shutdown too soon after %v", d)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. go.sum

    github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU=
    github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
    github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
    github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
    github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top