Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IdleConnStrsForTesting_h2 (0.17 sec)

  1. src/net/http/export_test.go

    		for _, pc := range conns {
    			ret = append(ret, pc.conn.LocalAddr().String()+"/"+pc.conn.RemoteAddr().String())
    		}
    	}
    	slices.Sort(ret)
    	return ret
    }
    
    func (t *Transport) IdleConnStrsForTesting_h2() []string {
    	var ret []string
    	noDialPool := t.h2transport.(*http2Transport).ConnPool.(http2noDialClientConnPool)
    	pool := noDialPool.http2clientConnPool
    
    	pool.mu.Lock()
    	defer pool.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    		tr := cst.tr
    		tr.IdleConnTimeout = timeout
    		defer tr.CloseIdleConnections()
    		c := &Client{Transport: tr}
    
    		idleConns := func() []string {
    			if mode == http2Mode {
    				return tr.IdleConnStrsForTesting_h2()
    			} else {
    				return tr.IdleConnStrsForTesting()
    			}
    		}
    
    		var conn string
    		doReq := func(n int) (timeoutOk bool) {
    			req, _ := NewRequest("GET", cst.ts.URL, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top