Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for clientport (0.47 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    	tlsContext *tls.UpstreamTlsContext
    	err        error
    }
    
    // TestBuildUpstreamClusterTLSContext tests the buildUpstreamClusterTLSContext function
    func TestBuildUpstreamClusterTLSContext(t *testing.T) {
    	clientCert := "/path/to/cert"
    	rootCert := "path/to/cacert"
    	clientKey := "/path/to/key"
    
    	credentialName := "some-fake-credential"
    
    	testCases := []struct {
    		name                     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    }
    
    func autoConvert_v1alpha1_TLSConfig_To_apiserver_TLSConfig(in *TLSConfig, out *apiserver.TLSConfig, s conversion.Scope) error {
    	out.CABundle = in.CABundle
    	out.ClientKey = in.ClientKey
    	out.ClientCert = in.ClientCert
    	return nil
    }
    
    // Convert_v1alpha1_TLSConfig_To_apiserver_TLSConfig is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	config.Certificates = []Certificate{cert}
    
    	test := &clientTest{
    		name:   "ClientCert-RSA-RSA",
    		args:   []string{"-cipher", "AES128", "-Verify", "1"},
    		config: config,
    	}
    
    	runClientTestTLS10(t, test)
    	runClientTestTLS12(t, test)
    
    	test = &clientTest{
    		name:   "ClientCert-RSA-ECDSA",
    		args:   []string{"-cipher", "ECDHE-ECDSA-AES128-SHA", "-Verify", "1"},
    		config: config,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    			CacheTTL:            10 * time.Second,
    			TokenRequestTimeout: 10 * time.Second,
    			WebhookRetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    			ClientCert:          apiserveroptions.ClientCertAuthenticationOptions{},
    			RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    				UsernameHeaders:     []string{"x-remote-user"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    			hbwl := echo.HBONE{
    				Address:            apps.WaypointProxies[apps.WorkloadAddressedWaypoint.Config().WorkloadWaypointProxy].Inbound(),
    				Headers:            nil,
    				Cert:               string(cert.ClientCert),
    				Key:                string(cert.Key),
    				CaCert:             string(cert.RootCert),
    				InsecureSkipVerify: true,
    			}
    			hbsvc := echo.HBONE{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top