Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 507 for DOMAIN (0.13 sec)

  1. samples/security/spire/spire-quickstart.yaml

                    description: TrustDomain is the name of the trust domain to federate
                      with (e.g. example.org)
                    pattern: '[a-z0-9._-]{1,255}'
                    type: string
                  trustDomainBundle:
                    description: TrustDomainBundle is the contents of the bundle for the
                      referenced trust domain. This field is optional when the resource
                      is created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util_test.go

    	cases := []struct {
    		name string
    		in   config.Meta
    		want *core.Metadata
    	}{
    		{
    			"destination-rule",
    			config.Meta{
    				Name:             "svcA",
    				Namespace:        "default",
    				Domain:           "svc.cluster.local",
    				GroupVersionKind: gvk.DestinationRule,
    			},
    			&core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{
    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. pkg/config/constants/constants.go

    	KubernetesGatewayName = "istio-autogenerated-k8s-gateway"
    
    	// DefaultClusterLocalDomain the default service domain suffix for Kubernetes, if not overridden in config.
    	DefaultClusterLocalDomain = "cluster.local"
    
    	// DefaultClusterSetLocalDomain is the default domain suffix for Kubernetes Multi-Cluster Services (MCS)
    	// used for load balancing requests against endpoints across the ClusterSet (i.e. mesh).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tls.go

    					if destinationCIDR != "" {
    						destinationCIDRs = []string{destinationCIDR}
    					}
    					// Only set CIDR match if the listener is bound to an IP.
    					// If its bound to a unix domain socket, then ignore the CIDR matches
    					// Unix domain socket bound ports have Port value set to 0
    					if len(match.DestinationSubnets) > 0 && listenPort.Port > 0 {
    						destinationCIDRs = match.DestinationSubnets
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        val value: String = cookie.value()
        val persistent: Boolean = cookie.persistent()
        val expiresAt: Long = cookie.expiresAt()
        val hostOnly: Boolean = cookie.hostOnly()
        val domain: String = cookie.domain()
        val path: String = cookie.path()
        val httpOnly: Boolean = cookie.httpOnly()
        val secure: Boolean = cookie.secure()
      }
    
      @Test @Disabled
      fun formBody() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// IngressRuleValue. If the host is unspecified, the Ingress routes all
    	// traffic based on the specified IngressRuleValue.
    	//
    	// host can be "precise" which is a domain name without the terminating dot of
    	// a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
    	// prefixed with a single wildcard label (e.g. "*.foo.com").
    	// The wildcard character '*' must appear by itself as the first DNS label and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

              preferredDuringSchedulingIgnoredDuringExecution: null
              requiredDuringSchedulingIgnoredDuringExecution: null
          containers:
          - args:
            - proxy
            - router
            - --domain
            - $(POD_NAMESPACE).svc.cluster.local
            - --proxyLogLevel=warning
            - --proxyComponentLogLevel=misc:error
            - --log_output_level=default:info
            env:
            - name: JWT_POLICY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top