Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for ServerName (0.27 sec)

  1. pkg/scheduler/extender.go

    func makeTransport(config *schedulerapi.Extender) (http.RoundTripper, error) {
    	var cfg restclient.Config
    	if config.TLSConfig != nil {
    		cfg.TLSClientConfig.Insecure = config.TLSConfig.Insecure
    		cfg.TLSClientConfig.ServerName = config.TLSConfig.ServerName
    		cfg.TLSClientConfig.CertFile = config.TLSConfig.CertFile
    		cfg.TLSClientConfig.KeyFile = config.TLSConfig.KeyFile
    		cfg.TLSClientConfig.CAFile = config.TLSConfig.CAFile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// ReadCache reads and returns the content of the named cache file.
    	// Any returned error will be treated as equivalent to the file not existing.
    	// There can be arbitrarily many cache files, such as:
    	//	serverName/lookup/pkg@version
    	//	serverName/tile/8/1/x123/456
    	ReadCache(file string) ([]byte, error)
    
    	// WriteCache writes the named cache file.
    	WriteCache(file string, data []byte)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo.pb.go

    	Alpn *Alpn `protobuf:"bytes,13,opt,name=alpn,proto3" json:"alpn,omitempty"`
    	// Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
    	ServerName string `protobuf:"bytes,20,opt,name=serverName,proto3" json:"serverName,omitempty"`
    	// Expected response determines what string to look for in the response to validate TCP requests succeeded.
    	// If not set, defaults to "StatusCode=200"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ExtenderTLSConfig_To_config_ExtenderTLSConfig(in *v1.ExtenderTLSConfig, out *config.ExtenderTLSConfig, s conversion.Scope) error {
    	out.Insecure = in.Insecure
    	out.ServerName = in.ServerName
    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	out.CAFile = in.CAFile
    	out.CertData = *(*[]byte)(unsafe.Pointer(&in.CertData))
    	out.KeyData = *(*[]byte)(unsafe.Pointer(&in.KeyData))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  5. src/crypto/tls/boring_test.go

    		clientConfig := testConfig.Clone()
    		clientConfig.RootCAs = pool
    		clientConfig.InsecureSkipVerify = false
    		clientConfig.ServerName = "example.com"
    
    		serverConfig := testConfig.Clone()
    		serverConfig.Certificates = []Certificate{{Certificate: list, PrivateKey: key}}
    		serverConfig.BuildNameToCertificate()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/crypto/x509/root_windows.go

    	servernamep, err := syscall.UTF16PtrFromString(strings.TrimSuffix(opts.DNSName, "."))
    	if err != nil {
    		return err
    	}
    	sslPara := &syscall.SSLExtraCertChainPolicyPara{
    		AuthType:   syscall.AUTHTYPE_SERVER,
    		ServerName: servernamep,
    	}
    	sslPara.Size = uint32(unsafe.Sizeof(*sslPara))
    
    	para := &syscall.CertChainPolicyPara{
    		ExtraPolicyPara: (syscall.Pointer)(unsafe.Pointer(sslPara)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    		httpOpts: &httpListenerOpts{
    			rds:              model.RDSHttpProxy,
    			useRemoteAddress: false,
    			connectionManager: &hcm.HttpConnectionManager{
    				HttpProtocolOptions:        httpOpts,
    				ServerName:                 ph.ServerName,
    				ServerHeaderTransformation: ph.ServerHeaderTransformation,
    				GenerateRequestId:          ph.GenerateRequestID,
    			},
    			suppressEnvoyDebugHeaders: ph.SuppressDebugHeaders,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/options.go

    	// certSigner is cert signer for workload cert
    	certSigner = env.Register("ISTIO_META_CERT_SIGNER", "",
    		"The cert signer info for workload cert")
    
    	istiodSAN = env.Register("ISTIOD_SAN", "",
    		"Override the ServerName used to validate Istiod certificate. "+
    			"Can be used as an alternative to setting /etc/hosts for VMs - discovery address will be an IP:port")
    
    	minimumDrainDurationEnv = env.Register("MINIMUM_DRAIN_DURATION",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_test.go

    						SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    							Subject: proto.BoolTrue,
    							Cert:    true,
    							Uri:     true,
    							Dns:     true,
    						},
    						ServerName: EnvoyServerName,
    						HttpProtocolOptions: &core.Http1ProtocolOptions{
    							AcceptHttp_10: true,
    						},
    						Proxy_100Continue: true,
    					},
    					class:    istionetworking.ListenerClassGateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	if !ok {
    		return nil, errors.New("dynamiccertificates: unexpected config type")
    	}
    
    	tlsConfigCopy := tlsConfig.Clone()
    
    	// if the client set SNI information, just use our "normal" SNI flow
    	if len(clientHello.ServerName) > 0 {
    		return tlsConfigCopy, nil
    	}
    
    	// if the client didn't set SNI, then we need to inspect the requested IP so that we can choose
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top