Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for TLSHandshakeTimeout (0.26 sec)

  1. internal/http/transports.go

    		ReadBufferSize:        ReadBufferSize,
    		IdleConnTimeout:       15 * time.Second,
    		ResponseHeaderTimeout: 15 * time.Minute, // Conservative timeout is the default (for MinIO internode)
    		TLSHandshakeTimeout:   10 * time.Second,
    		TLSClientConfig:       &tlsClientConfig,
    		ForceAttemptHTTP2:     s.EnableHTTP2,
    		// Go net/http automatically unzip if content-type is
    		// gzip disable this feature, as we are always interested
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. internal/dsync/dsync-client_test.go

    		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,
    		// Go net/http automatically unzip if content-type is
    		// gzip disable this feature, as we are always interested
    		// in raw stream.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:36:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    				return
    			}
    			tlsConfig := &tls.Config{
    				InsecureSkipVerify: true,
    				NextProtos:         []string{http2.NextProtoTLS},
    			}
    			tr := &http.Transport{
    				TLSHandshakeTimeout: 10 * time.Second,
    				TLSClientConfig:     tlsConfig,
    				// Disable connection pooling to avoid additional connections
    				// that cause the test to flake
    				MaxIdleConnsPerHost: -1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
  5. internal/config/dns/operator_dns.go

    			Proxy: http.ProxyFromEnvironment,
    			DialContext: (&net.Dialer{
    				Timeout:   3 * time.Second,
    				KeepAlive: 5 * time.Second,
    			}).DialContext,
    			ResponseHeaderTimeout: 3 * time.Second,
    			TLSHandshakeTimeout:   3 * time.Second,
    			ExpectContinueTimeout: 3 * time.Second,
    			TLSClientConfig: &tls.Config{
    				RootCAs: args.rootCAs,
    			},
    			// Go net/http automatically unzip if content-type is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/transport.go

    			checkNewCertificateAndRotate()
    			return hasCert.Load(), nil
    		}, stopCh)
    	}
    
    	clientConfig.Transport = utilnet.SetTransportDefaults(&http.Transport{
    		Proxy:               http.ProxyFromEnvironment,
    		TLSHandshakeTimeout: 10 * time.Second,
    		TLSClientConfig:     tlsConfig,
    		MaxIdleConnsPerHost: 25,
    		DialContext:         d.DialContext,
    	})
    
    	// Zero out all existing TLS options since our new transport enforces them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    func setTransportDefaults(t *http.Transport) (*http.Transport, error) {
    	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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/net/http/server_test.go

    				ReadTimeout:       5 * time.Second,
    				ReadHeaderTimeout: 2 * time.Second,
    				WriteTimeout:      4 * time.Second,
    			},
    			want: 2 * time.Second,
    		},
    	}
    	for i, tt := range tests {
    		got := tt.s.tlsHandshakeTimeout()
    		if got != tt.want {
    			t.Errorf("%d. got %v; want %v", i, got, tt.want)
    		}
    	}
    }
    
    type handler struct{ i int }
    
    func (handler) ServeHTTP(ResponseWriter, *Request) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 13:54:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe.go

    			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()
    		var resp *http.Response
    		for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	// If nil, the default configuration is used.
    	// If non-nil, HTTP/2 support may not be enabled by default.
    	TLSClientConfig *tls.Config
    
    	// TLSHandshakeTimeout specifies the maximum amount of time to
    	// wait for a TLS handshake. Zero means no timeout.
    	TLSHandshakeTimeout time.Duration
    
    	// DisableKeepAlives, if true, disables HTTP keep-alives and
    	// will only use the connection to the server for a single
    	// HTTP request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top