Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ProxyFromEnvironment (0.35 sec)

  1. cmd/kubeadm/app/preflight/checks_test.go

    		t.Fatalf("unexpected err: %v", err)
    	}
    	proxy, err := http.ProxyFromEnvironment(req)
    	if err != nil {
    		t.Fatalf("unexpected err: %v", err)
    	}
    	if proxy == nil {
    		t.Skip("test skipped as ProxyFromEnvironment already initialized in environment without defined HTTP proxy")
    	}
    	t.Log("http.ProxyFromEnvironment is usable, continue executing test")
    }
    
    func TestKubeletVersionCheck(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	conn net.Conn
    
    	// Dialer is the dialer used to connect.  Used if non-nil.
    	Dialer *net.Dialer
    
    	// proxier knows which proxy to use given a request, defaults to http.ProxyFromEnvironment
    	// Used primarily for mocking the proxy discovery in tests.
    	proxier func(req *http.Request) (*url.URL, error)
    
    	// pingPeriod is a period for sending Ping frames over established
    	// connections.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. internal/http/transports.go

    	}
    
    	// For more details about various values used here refer
    	// https://golang.org/pkg/net/http/#Transport documentation
    	tr := &http.Transport{
    		Proxy:                 http.ProxyFromEnvironment,
    		DialContext:           dialContext,
    		MaxIdleConnsPerHost:   maxIdleConnsPerHost,
    		WriteBufferSize:       WriteBufferSize,
    		ReadBufferSize:        ReadBufferSize,
    		IdleConnTimeout:       15 * time.Second,
    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/cmd/vendor/github.com/google/pprof/internal/transport/transport.go

    		// modified.
    		r := *req
    		*r.URL = *req.URL
    		req = &r
    		tlsConfig.InsecureSkipVerify = true
    		req.URL.Scheme = "https"
    	}
    
    	transport := http.Transport{
    		Proxy:           http.ProxyFromEnvironment,
    		TLSClientConfig: tlsConfig,
    	}
    
    	return transport.RoundTrip(req)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. internal/config/dns/operator_dns.go

    	}
    
    	args := &OperatorDNS{
    		Endpoint: endpoint,
    	}
    	for _, setter := range setters {
    		setter(args)
    	}
    	args.httpClient = &http.Client{
    		Transport: &http.Transport{
    			Proxy: http.ProxyFromEnvironment,
    			DialContext: (&net.Dialer{
    				Timeout:   3 * time.Second,
    				KeepAlive: 5 * time.Second,
    			}).DialContext,
    			ResponseHeaderTimeout: 3 * time.Second,
    			TLSHandshakeTimeout:   3 * time.Second,
    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,
    	})
    
    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. src/cmd/go/internal/web/http.go

    // or might be using self-signed certificates.
    var impatientInsecureHTTPClient = &http.Client{
    	CheckRedirect: checkRedirect,
    	Timeout:       5 * time.Second,
    	Transport: &http.Transport{
    		Proxy: http.ProxyFromEnvironment,
    		TLSClientConfig: &tls.Config{
    			InsecureSkipVerify: true,
    		},
    	},
    }
    
    var securityPreservingDefaultClient = securityPreservingHTTPClient(http.DefaultClient)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/jwks_resolver.go

    		refreshIntervalOnFailure: refreshIntervalOnFailure,
    		retryInterval:            retryInterval,
    		httpClient: &http.Client{
    			Transport: &http.Transport{
    				Proxy:             http.ProxyFromEnvironment,
    				DisableKeepAlives: true,
    			},
    		},
    	}
    
    	caCertPool, err := x509.SystemCertPool()
    	caCertsFound := true
    	if err != nil {
    		caCertsFound = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    // license that can be found in the LICENSE file.
    
    // Package httpproxy provides support for HTTP proxy determination
    // based on environment variables, as provided by net/http's
    // ProxyFromEnvironment function.
    //
    // The API is not subject to the Go 1 compatibility promise and may change at
    // any time.
    package httpproxy
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"net/url"
    	"os"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/pprof/pprof.go

    		}
    		url.Scheme = "https"
    		source = url.String()
    	}
    
    	client := &http.Client{
    		Transport: &http.Transport{
    			ResponseHeaderTimeout: timeout + 5*time.Second,
    			Proxy:                 http.ProxyFromEnvironment,
    			TLSClientConfig:       tlsConfig,
    		},
    	}
    	resp, err := client.Get(source)
    	if err != nil {
    		return nil, err
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top