Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ServerName (0.1 sec)

  1. pkg/kubelet/util/util_windows.go

    	// so using `url` like we do on unix gives us unclear benefits - see https://github.com/kubernetes/kubernetes/issues/78628
    	// So we just construct the path from scratch.
    	// Format: \\ServerName\pipe\PipeName
    	// Where where ServerName is either the name of a remote computer or a period, to specify the local computer.
    	// We only consider PipeName as regular windows path, while the pipe path components are fixed, hence we use constants.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/crypto/tls/ech.go

    	h, err := inner.marshalMsg(true)
    	if err != nil {
    		return nil, err
    	}
    	h = h[4:] // strip four byte prefix
    
    	var paddingLen int
    	if inner.serverName != "" {
    		paddingLen = max(0, maxNameLength-len(inner.serverName))
    	} else {
    		paddingLen = maxNameLength + 9
    	}
    	paddingLen = 31 - ((len(h) + paddingLen - 1) % 32)
    
    	return append(h, make([]byte, paddingLen)...), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/peer.go

    	clientConfig := &transport.Config{
    		TLS: transport.TLSConfig{
    			Insecure:   false,
    			CertFile:   proxyClientCertFile,
    			KeyFile:    proxyClientKeyFile,
    			CAFile:     peerCAFile,
    			ServerName: "kubernetes.default.svc",
    		}}
    
    	// build proxy transport
    	proxyRoundTripper, transportBuildingError := transport.New(clientConfig)
    	if transportBuildingError != nil {
    		klog.Error(transportBuildingError.Error())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 08:15:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top