Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 507 for DOMAIN (0.19 sec)

  1. src/syscall/security_windows.go

    	return sid.Copy()
    }
    
    // LookupSID retrieves a security identifier sid for the account
    // and the name of the domain on which the account was found.
    // System specify target computer to search.
    func LookupSID(system, account string) (sid *SID, domain string, accType uint32, err error) {
    	if len(account) == 0 {
    		return nil, "", 0, EINVAL
    	}
    	acc, e := UTF16PtrFromString(account)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. internal/config/identity/openid/openid.go

    			// initialization.
    
    			// Generate role ARN as combination of provider domain and
    			// prefix of client ID.
    			domain := configURLDomain
    			if domain == "" {
    				// Attempt to parse the JWKs URI.
    				domain = p.JWKS.URL.Hostname()
    				if domain == "" {
    					return c, config.Errorf("unable to parse a domain from the OpenID config")
    				}
    			}
    			if p.ClientID == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     *     .build();
     * ```
     *
     * ## Domain Patterns
     *
     * Pinning is per-hostname and/or per-wildcard pattern. To pin both `publicobject.com` and
     * `www.publicobject.com` you must configure both hostnames. Or you may use patterns to match
     * sets of related domain names. The following forms are permitted:
     *
     *  * **Full domain name**: you may pin an exact domain name like `www.publicobject.com`. It won't
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/config.go

    	if netutil.IsValidIPAddress(hostname) {
    		return host.Name(out)
    	}
    
    	// if FQDN is specified, do not append domain or namespace to hostname
    	if !strings.Contains(hostname, ".") {
    		if meta.Namespace != "" {
    			out = out + "." + meta.Namespace
    		}
    
    		// FIXME this is a gross hack to hardcode a service's domain name in kubernetes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_386.go

    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) {
    	_, e := rawsocketcall(_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(flags), uintptr(unsafe.Pointer(fd)), 0, 0)
    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/syscall/syscall_unix.go

    }
    
    func Socket(domain, typ, proto int) (fd int, err error) {
    	if domain == AF_INET6 && SocketDisableIPv6 {
    		return -1, EAFNOSUPPORT
    	}
    	fd, err = socket(domain, typ, proto)
    	return
    }
    
    func Socketpair(domain, typ, proto int) (fd [2]int, err error) {
    	var fdx [2]int32
    	err = socketpair(domain, typ, proto, &fdx)
    	if err == nil {
    		fd[0] = int(fdx[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/builder_test.go

    			want:  []string{"single-policy-out.yaml"},
    		},
    		{
    			name:     "trust-domain-one-alias",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local"}),
    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                    try (EvaluationContext.ScopeContext scope = openScope()) {
                        // Create the domain object
                        object = createDomainObject();
                        // Configuring the domain object may cause circular evaluation, but after initializing this.object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. pkg/dns/client/dns_test.go

    		},
    		{
    			name:     "success: wild card with domain returns A record correctly",
    			host:     "foo.svc.mesh.company.net.",
    			expected: a("foo.svc.mesh.company.net.", []netip.Addr{netip.MustParseAddr("10.1.2.3")}),
    		},
    		{
    			name:     "success: wild card with namespace with domain returns A record correctly",
    			host:     "foo.foons.svc.mesh.company.net.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top