Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for IdleConnTimeout (0.44 sec)

  1. src/net/http/doc.go

    	resp, err := client.Do(req)
    	// ...
    
    For control over proxies, TLS configuration, keep-alives,
    compression, and other settings, create a [Transport]:
    
    	tr := &http.Transport{
    		MaxIdleConns:       10,
    		IdleConnTimeout:    30 * time.Second,
    		DisableCompression: true,
    	}
    	client := &http.Client{Transport: tr}
    	resp, err := client.Get("https://example.com")
    
    Clients and Transports are safe for concurrent use by multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. internal/dsync/dsync-client_test.go

    		MaxIdleConnsPerHost:   1024,
    		WriteBufferSize:       32 << 10, // 32KiB moving up from 4KiB default
    		ReadBufferSize:        32 << 10, // 32KiB moving up from 4KiB default
    		IdleConnTimeout:       15 * time.Second,
    		ResponseHeaderTimeout: 15 * time.Minute, // Set conservative timeouts for MinIO internode.
    		TLSHandshakeTimeout:   15 * time.Second,
    		ExpectContinueTimeout: 15 * time.Second,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:36:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. internal/http/transports.go

    		Proxy:                 http.ProxyFromEnvironment,
    		DialContext:           dialContext,
    		MaxIdleConnsPerHost:   maxIdleConnsPerHost,
    		WriteBufferSize:       WriteBufferSize,
    		ReadBufferSize:        ReadBufferSize,
    		IdleConnTimeout:       15 * time.Second,
    		ResponseHeaderTimeout: 15 * time.Minute, // Conservative timeout is the default (for MinIO internode)
    		TLSHandshakeTimeout:   10 * time.Second,
    		TLSClientConfig:       &tlsClientConfig,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	// The HTTP/2 implementation manages the idle timer itself
    	// (see idleConnTimeout in h2_bundle.go).
    	if t.IdleConnTimeout > 0 && pconn.alt == nil {
    		if pconn.idleTimer != nil {
    			pconn.idleTimer.Reset(t.IdleConnTimeout)
    		} else {
    			pconn.idleTimer = time.AfterFunc(t.IdleConnTimeout, pconn.closeConnIfStillIdle)
    		}
    	}
    	pconn.idleAt = time.Now()
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    		t.DialContext = defaultTransport.DialContext
    	}
    	if t.TLSHandshakeTimeout == 0 {
    		t.TLSHandshakeTimeout = defaultTransport.TLSHandshakeTimeout
    	}
    	if t.IdleConnTimeout == 0 {
    		t.IdleConnTimeout = defaultTransport.IdleConnTimeout
    	}
    	return t
    }
    
    // SetTransportDefaults applies the defaults from http.DefaultTransport
    // for the Proxy, Dial, and TLSHandshakeTimeout fields if unset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    	if !EnableHTTP2Probing {
    		return t, nil
    	}
    	if t.TLSHandshakeTimeout == 0 {
    		t.TLSHandshakeTimeout = defaultTransport.TLSHandshakeTimeout
    	}
    	if t.IdleConnTimeout == 0 {
    		t.IdleConnTimeout = defaultTransport.IdleConnTimeout
    	}
    	t2, err := http2.ConfigureTransports(t)
    	if err != nil {
    		return nil, err
    	}
    	t2.ReadIdleTimeout = time.Duration(30) * time.Second
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pkg/spiffe/spiffe.go

    		httpClient.Transport = &http.Transport{
    			Proxy:           http.ProxyFromEnvironment,
    			TLSClientConfig: config,
    			DialContext: (&net.Dialer{
    				Timeout: time.Second * 10,
    			}).DialContext,
    			IdleConnTimeout:       90 * time.Second,
    			TLSHandshakeTimeout:   10 * time.Second,
    			ExpectContinueTimeout: 1 * time.Second,
    		}
    
    		retryBackoffTime := firstRetryBackOffTime
    		startTime := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. api/go1.7.txt

    pkg net/http, type Response struct, Uncompressed bool
    pkg net/http, type Transport struct, DialContext func(context.Context, string, string) (net.Conn, error)
    pkg net/http, type Transport struct, IdleConnTimeout time.Duration
    pkg net/http, type Transport struct, MaxIdleConns int
    pkg net/http, type Transport struct, MaxResponseHeaderBytes int64
    pkg net/http, var ErrUseLastResponse error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  9. cmd/update.go

    	var updateTransport http.RoundTripper = &http.Transport{
    		Proxy:                 http.ProxyFromEnvironment,
    		DialContext:           xhttp.NewInternodeDialContext(timeout, globalTCPOptions),
    		IdleConnTimeout:       timeout,
    		TLSHandshakeTimeout:   timeout,
    		ExpectContinueTimeout: timeout,
    		TLSClientConfig: &tls.Config{
    			RootCAs:            globalRootCAs,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    			return true
    		})
    		break
    	}
    }
    
    // Issue 16208: Go 1.7 crashed after Transport.IdleConnTimeout if an
    // HTTP/2 connection was established but its caller no longer
    // wanted it. (Assuming the connection cache was enabled, which it is
    // by default)
    //
    // This test reproduced the crash by setting the IdleConnTimeout low
    // (to make the test reasonable) and then making a request which is
    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