Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for rootTask (0.12 sec)

  1. pilot/pkg/model/context.go

    	if e != nil {
    		e.PushContext().AddMetric(metric, key, proxyID, msg)
    	}
    }
    
    func (e *Environment) Version() string {
    	if x := e.GetLedger(); x != nil {
    		return x.RootHash()
    	}
    	return ""
    }
    
    // Init initializes the Environment for use.
    func (e *Environment) Init() {
    	// Use a default DomainSuffix, if none was provided.
    	if len(e.DomainSuffix) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    		}
    	}
    }
    
    func newClient(useNewConnection bool) *http.Client {
    	clientCACertPool := x509.NewCertPool()
    	clientCACertPool.AppendCertsFromPEM(backendCrt)
    	tlsConfig := &tls.Config{
    		RootCAs:    clientCACertPool,
    		NextProtos: []string{http2.NextProtoTLS},
    	}
    
    	tr := &http.Transport{
    		TLSClientConfig:   tlsConfig,
    		DisableKeepAlives: useNewConnection,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  3. cmd/erasure-sets.go

    	}
    
    	format, err := loadFormatErasure(disk, false)
    	if err != nil {
    		if errors.Is(err, errUnformattedDisk) {
    			info, derr := disk.DiskInfo(context.TODO(), DiskInfoOptions{})
    			if derr != nil && info.RootDisk {
    				disk.Close()
    				return nil, nil, fmt.Errorf("Drive: %s is a root drive", disk)
    			}
    		}
    		disk.Close()
    		return nil, nil, fmt.Errorf("Drive: %s returned %w", disk, err) // make sure to '%w' to wrap the error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top