Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for ProxyFromEnvironment (0.31 sec)

  1. 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)
  2. 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)
  3. pkg/spiffe/spiffe.go

    		}
    
    		config := &tls.Config{
    			ServerName: u.Hostname(),
    			RootCAs:    caCertPool,
    			MinVersion: tls.VersionTLS12,
    		}
    
    		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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. cmd/update.go

    	return sha256Sum, releaseTime, releaseInfo, err
    }
    
    func getUpdateTransport(timeout time.Duration) http.RoundTripper {
    	var updateTransport http.RoundTripper = &http.Transport{
    		Proxy:                 http.ProxyFromEnvironment,
    		DialContext:           xhttp.NewInternodeDialContext(timeout, globalTCPOptions),
    		IdleConnTimeout:       timeout,
    		TLSHandshakeTimeout:   timeout,
    		ExpectContinueTimeout: timeout,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations_test.go

    			// never performed.
    			caPool := x509.NewCertPool()
    			require.True(t, caPool.AppendCertsFromPEM(caCert))
    
    			client := &http.Client{
    				Transport: &http.Transport{
    					Proxy: http.ProxyFromEnvironment,
    					TLSClientConfig: &tls.Config{
    						RootCAs: caPool,
    					},
    				},
    			}
    
    			_, err = client.Transport.RoundTrip(req)
    
    			if sha1checker.CheckRoundTripError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    // as directed by the environment variables HTTP_PROXY, HTTPS_PROXY
    // and NO_PROXY (or the lowercase versions thereof).
    var DefaultTransport RoundTripper = &Transport{
    	Proxy: ProxyFromEnvironment,
    	DialContext: defaultTransportDialContext(&net.Dialer{
    		Timeout:   30 * time.Second,
    		KeepAlive: 30 * time.Second,
    	}),
    	ForceAttemptHTTP2:     true,
    	MaxIdleConns:          100,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    		responder   *fakeResponder
    		expectedErr = errors.New("EXPECTED")
    	)
    	proxy := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		transport := &http.Transport{
    			Proxy: http.ProxyFromEnvironment,
    			DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
    				return &fakeConn{err: expectedErr}, nil
    			},
    			MaxIdleConns:          100,
    			IdleConnTimeout:       90 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    			os.Setenv("HTTP_PROXY", tt.env)
    			os.Setenv("HTTPS_PROXY", tt.httpsenv)
    			os.Setenv("NO_PROXY", tt.noenv)
    			os.Setenv("REQUEST_METHOD", tt.reqmeth)
    			ResetCachedEnvironment()
    			return ProxyFromEnvironment(req)
    		})
    	}
    }
    
    func TestProxyFromEnvironmentLowerCase(t *testing.T) {
    	ResetProxyEnv()
    	defer ResetProxyEnv()
    	for _, tt := range proxyFromEnvTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ParseHTTPVersion", Func, 0},
    		{"ParseTime", Func, 1},
    		{"Post", Func, 0},
    		{"PostForm", Func, 0},
    		{"ProtocolError", Type, 0},
    		{"ProtocolError.ErrorString", Field, 0},
    		{"ProxyFromEnvironment", Func, 0},
    		{"ProxyURL", Func, 0},
    		{"PushOptions", Type, 8},
    		{"PushOptions.Header", Field, 8},
    		{"PushOptions.Method", Field, 8},
    		{"Pusher", Type, 8},
    		{"ReadRequest", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg net/http, func ParseHTTPVersion(string) (int, int, bool)
    pkg net/http, func Post(string, string, io.Reader) (*Response, error)
    pkg net/http, func PostForm(string, url.Values) (*Response, error)
    pkg net/http, func ProxyFromEnvironment(*Request) (*url.URL, error)
    pkg net/http, func ProxyURL(*url.URL) func(*Request) (*url.URL, error)
    pkg net/http, func ReadRequest(*bufio.Reader) (*Request, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top