Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for TLSClientConfig (0.42 sec)

  1. docs/debugging/s3-check-md5/main.go

    	}
    
    	secure := strings.EqualFold(u.Scheme, "https")
    	transport, err := minio.DefaultTransport(secure)
    	if err != nil {
    		log.Fatalln(err)
    	}
    	if insecure {
    		// skip TLS verification
    		transport.TLSClientConfig.InsecureSkipVerify = true
    	}
    
    	s3Client, err := minio.New(u.Host, &minio.Options{
    		Creds:     credentials.NewStaticV4(accessKey, secretKey, ""),
    		Secure:    secure,
    		Transport: transport,
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/hbone/dialer.go

    // NewDialer creates a Dialer that proxies connections over HBONE to the configured proxy.
    func NewDialer(cfg Config) Dialer {
    	var transport *http2.Transport
    
    	if cfg.TLS != nil {
    		transport = &http2.Transport{
    			TLSClientConfig: cfg.TLS,
    		}
    	} else {
    		transport = &http2.Transport{
    			// For h2c
    			AllowHTTP: true,
    			DialTLSContext: func(ctx context.Context, network, addr string, tlsCfg *tls.Config) (net.Conn, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. pkg/wasm/httpfetcher.go

    		requestTimeout = 5 * time.Second
    	}
    	transport := http.DefaultTransport.(*http.Transport).Clone()
    	// nolint: gosec
    	// This is only when a user explicitly sets a flag to enable insecure mode
    	transport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
    	return &HTTPFetcher{
    		client: &http.Client{
    			Timeout: requestTimeout,
    		},
    		insecureClient: &http.Client{
    			Timeout:   requestTimeout,
    			Transport: transport,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/crypto/tls/example_test.go

    	// Typically the log would go to an open file:
    	// w, err := os.OpenFile("tls-secrets.txt", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
    	w := os.Stdout
    
    	client := &http.Client{
    		Transport: &http.Transport{
    			TLSClientConfig: &tls.Config{
    				KeyLogWriter: w,
    
    				Rand:               zeroSource{}, // for reproducible output; don't do this.
    				InsecureSkipVerify: true,         // test server certificate is not trusted.
    			},
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/test/fakes/imageregistry/main.go

    	ref, err := name.ParseReference(u)
    	if err != nil {
    		return "", fmt.Errorf("could not parse url in image reference: %v", err)
    	}
    
    	t := remote.DefaultTransport.(*http.Transport).Clone()
    	t.TLSClientConfig = &tls.Config{InsecureSkipVerify: true} // nolint: gosec // test only code
    	desc, err := remote.Get(ref, remote.WithTransport(t))
    	if err != nil {
    		return "", fmt.Errorf("could not get the description: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/transport.go

    		}, 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.
    	clientConfig.CertData = nil
    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/net/http/client_test.go

    		w.Write([]byte("Hello"))
    	})).ts
    
    	c := ts.Client()
    	tr := c.Transport.(*Transport)
    	tr.TLSClientConfig.CipherSuites = []uint16{tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256}
    	tr.TLSClientConfig.MaxVersion = tls.VersionTLS12 // to get to pick the cipher suite
    	tr.Dial = func(netw, addr string) (net.Conn, error) {
    		return net.Dial(netw, ts.Listener.Addr().String())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. internal/config/lambda/target/webhook.go

    		if err != nil {
    			return err
    		}
    		manager.ReloadOnSignal(syscall.SIGHUP) // allow reloads upon SIGHUP
    		transport.TLSClientConfig.GetClientCertificate = manager.GetClientCertificate
    	}
    	target.httpClient = &http.Client{Transport: transport}
    
    	yes, err := target.isActive()
    	if err != nil {
    		return err
    	}
    	if !yes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. internal/config/dns/operator_dns.go

    				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
    			// gzip disable this feature, as we are always interested
    			// in raw stream.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. internal/event/target/webhook.go

    		if err != nil {
    			return err
    		}
    		manager.ReloadOnSignal(syscall.SIGHUP) // allow reloads upon SIGHUP
    		transport.TLSClientConfig.GetClientCertificate = manager.GetClientCertificate
    	}
    	target.httpClient = &http.Client{Transport: transport}
    
    	yes, err := target.isActive()
    	if err != nil {
    		return err
    	}
    	if !yes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top