Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MUTUAL (0.07 sec)

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

    		if found {
    			if alpnOverride.GetStringValue() != "false" {
    				t.Errorf("alpn_override:%s tlsMode:%s, should be false for either TLS mode SIMPLE or MUTUAL", alpnOverride, tlsMode)
    			}
    		} else {
    			t.Errorf("alpn_override metadata should be written for either TLS mode SIMPLE or MUTUAL")
    		}
    	} else if ok {
    		alpnOverride, found := istio.Fields[util.AlpnOverrideMetadataKey]
    		if found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a server certificate"))
    		}
    		if tls.PrivateKey == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a private key"))
    		}
    		if tls.CaCertificates == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a client CA bundle"))
    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// Mark the goroutine which called stopTheWorld preemptible so its
    		// stack may be scanned.
    		// This lets a mark worker scan us while we try to stop the world
    		// since otherwise we could get in a mutual preemption deadlock.
    		// We must not modify anything on the G stack because a stack shrink
    		// may occur. A stack shrink is otherwise OK though because in order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top