Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for san1 (0.07 sec)

  1. src/net/netip/netip_test.go

    		"0.0.0.0/0",
    		"::/0",
    		"::1/128",
    		"2001:db8::/32",
    	}
    
    	for _, s := range tests {
    		t.Run(s, func(t *testing.T) {
    			// Ensure that JSON  (and by extension, text) marshaling is
    			// sane by entering quoted input.
    			orig := `"` + s + `"`
    
    			var p Prefix
    			if err := json.Unmarshal([]byte(orig), &p); err != nil {
    				t.Fatalf("failed to unmarshal: %v", err)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    		if err != nil {
    			continue
    		}
    		// If SANs are *not* present, some clients will consider the certificate
    		// valid for the name in the Common Name.
    		if x509Cert.Subject.CommonName != "" && len(x509Cert.DNSNames) == 0 {
    			c.NameToCertificate[x509Cert.Subject.CommonName] = cert
    		}
    		for _, san := range x509Cert.DNSNames {
    			c.NameToCertificate[san] = cert
    		}
    	}
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    this means that Gradle will verify the signatures and fallback to SHA-256 checksums when there's a problem.
    
    When bootstrapping, Gradle performs _optimistic verification_ and therefore assumes a sane build environment.
    It will therefore:
    
    - automatically add the trusted keys as soon as verification passes
    - automatically add ignored keys for keys which couldn't be downloaded from public key servers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    	if tls == nil {
    		return nil, nil
    	}
    	// Explicitly not supported: file mounted
    	// Not yet implemented: TLS mode, https redirect, max protocol version, SANs, CipherSuites, VerifyCertificate
    	out := &istio.ServerTLSSettings{
    		HttpsRedirect: false,
    	}
    	mode := k8s.TLSModeTerminate
    	if tls.Mode != nil {
    		mode = *tls.Mode
    	}
    	namespace := gw.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    			index.shardsBySvc[string(svc.Hostname)] = map[string]*EndpointShards{}
    		}
    		index.shardsBySvc[string(svc.Hostname)][svc.Attributes.Namespace] = &EndpointShards{
    			ServiceAccounts: sets.New("spiffe://cluster.local/ns/def/sa/sa1", "spiffe://cluster.local/ns/def/sa/sa2"),
    		}
    	}
    	b.ResetTimer()
    	for n := 0; n < b.N; n++ {
    		ps.initServiceAccounts(env, services)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    // KeyctlSetperm implements the KEYCTL_SETPERM command. The perm value is the
    // key handle permission mask as described in the "keyctl setperm" section of
    // http://man7.org/linux/man-pages/man1/keyctl.1.html.
    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_setperm.3.html
    func KeyctlSetperm(id int, perm uint32) error {
    	_, err := KeyctlInt(KEYCTL_SETPERM, id, int(perm), 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// Ports for the service.
    	// The target_port may be overridden on a per-workload basis.
    	Ports []*Port `protobuf:"bytes,5,rep,name=ports,proto3" json:"ports,omitempty"`
    	// Optional; if set, the SAN to verify for TLS connections.
    	// Typically, this is not set and per-workload identity is used to verify
    	// TODO: support this field
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. src/sync/atomic/atomic_test.go

    						break
    					}
    				}
    			}
    			c <- true
    		}(p)
    	}
    	<-c
    	<-c
    }
    
    func shouldPanic(t *testing.T, name string, f func()) {
    	defer func() {
    		// Check that all GC maps are sane.
    		runtime.GC()
    
    		err := recover()
    		want := "unaligned 64-bit atomic operation"
    		if err == nil {
    			t.Errorf("%s did not panic", name)
    		} else if s, _ := err.(string); s != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    // represented here as pvc.Spec.VolumeName and pv.Spec.ClaimRef. The bi-
    // directionality is complicated to manage in a transactionless system, but
    // without it we can't ensure sane behavior in the face of different forms of
    // trouble. For example, a rogue HA controller instance could end up racing
    // and making multiple bindings that are indistinguishable, resulting in
    // potential data loss.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top