Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for rootTask (0.26 sec)

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

    		}
    		CACertPool = x509.NewCertPool()
    		CACertPool.AppendCertsFromPEM(CACert)
    	}
    	if CACertPool != nil {
    		if config == nil {
    			config = &tls.Config{}
    		}
    		config.RootCAs = CACertPool
    	}
    	return config, nil
    }
    
    // configCertAndKey configures and returns a reference to tls.Config instance if CertFile and KeyFile pair is provided
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	}).ts
    
    	certpool := x509.NewCertPool()
    	certpool.AddCert(ts.Certificate())
    
    	c := &Client{Transport: &Transport{
    		TLSClientConfig: &tls.Config{
    			ServerName: "dns-is-faked.golang",
    			RootCAs:    certpool,
    		},
    	}}
    
    	trace := &httptrace.ClientTrace{
    		TLSHandshakeStart: func() { logf("TLSHandshakeStart") },
    		TLSHandshakeDone: func(s tls.ConnectionState, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Config.NameToCertificate", Field, 0},
    		{"Config.NextProtos", Field, 0},
    		{"Config.PreferServerCipherSuites", Field, 1},
    		{"Config.Rand", Field, 0},
    		{"Config.Renegotiation", Field, 7},
    		{"Config.RootCAs", Field, 0},
    		{"Config.ServerName", Field, 0},
    		{"Config.SessionTicketKey", Field, 1},
    		{"Config.SessionTicketsDisabled", Field, 1},
    		{"Config.Time", Field, 0},
    		{"Config.UnwrapSession", Field, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg crypto/tls, type Config struct, NameToCertificate map[string]*Certificate
    pkg crypto/tls, type Config struct, NextProtos []string
    pkg crypto/tls, type Config struct, Rand io.Reader
    pkg crypto/tls, type Config struct, RootCAs *x509.CertPool
    pkg crypto/tls, type Config struct, ServerName string
    pkg crypto/tls, type Config struct, Time func() time.Time
    pkg crypto/tls, type Conn struct
    pkg crypto/tls, type ConnectionState struct
    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