Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for MUTUAL (0.17 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		Labels: map[string]string{
    			"app":                      "prod-app",
    			label.SecurityTlsMode.Name: "mutual",
    		},
    		Metadata: &model.NodeMetadata{
    			ServiceAccount: "account",
    			ClusterID:      clusterID,
    			Labels: map[string]string{
    				"app":                      "prod-app",
    				label.SecurityTlsMode.Name: "mutual",
    			},
    		},
    	})
    
    	expected := model.ServiceTarget{
    		Service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    While in the previous example, all variants, "main variants" and optional features, were packaged in one jar file, it is common to publish certain variants as separate files.
    In particular, when the variants are mutual exclusive — i.e. they are *not* feature variants, but different variants offering alternative choices.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	// reuse Ps if GOMAXPROCS increases. A dead P is mostly
    	// stripped of its resources, though a few things remain
    	// (e.g., trace buffers).
    	_Pdead
    )
    
    // Mutual exclusion locks.  In the uncontended case,
    // as fast as spin locks (just a few user-level instructions),
    // but on the contention path they sleep in the kernel.
    // A zeroed Mutex is unlocked (no need to initialize each lock).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    			config: &Config{
    				CipherSuites: []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    				MaxVersion:   VersionTLS12,
    			},
    		}, ""}, // Check that mutual version selection works.
    
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    	}
    	namespace := gw.Namespace
    	switch mode {
    	case k8s.TLSModeTerminate:
    		out.Mode = istio.ServerTLSSettings_SIMPLE
    		if tls.Options != nil {
    			switch tls.Options[gatewayTLSTerminateModeKey] {
    			case "MUTUAL":
    				out.Mode = istio.ServerTLSSettings_MUTUAL
    			case "ISTIO_MUTUAL":
    				out.Mode = istio.ServerTLSSettings_ISTIO_MUTUAL
    				return out, nil
    			}
    		}
    		if len(tls.CertificateRefs) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. 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