Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for closeIdleConnections (0.43 sec)

  1. src/net/http/transport_test.go

    	}
    
    	if e := "|http|" + ts.Listener.Addr().String(); keys[0] != e {
    		t.Errorf("Expected idle cache key %q; got %q", e, keys[0])
    	}
    
    	tr.CloseIdleConnections()
    	if e, g := 0, len(tr.IdleConnKeysForTesting()); e != g {
    		t.Errorf("After CloseIdleConnections expected %d idle conn cache keys; got %d", e, g)
    	}
    }
    
    // Tests that the HTTP transport re-uses connections when a client
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	}()
    	readRes := make(chan error, 1)
    	go func() {
    		_, err := c.Read([]byte{0})
    		readRes <- err
    	}()
    
    	// TODO(#59037): This timeout is hard-coded in closeIdleConnections.
    	// 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 {
    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