Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 507 for DOMAIN (0.1 sec)

  1. 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)
  2. pkg/config/model.go

    	// (security domains, fault domains, organizational domains)
    	Namespace string `json:"namespace,omitempty"`
    
    	// Domain defines the suffix of the fully qualified name past the namespace.
    	// Domain is not a part of the unique key unlike name and namespace.
    	Domain string `json:"domain,omitempty"`
    
    	// Map of string keys and values that can be used to organize and categorize
    	// (scope and select) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"A pair of x509 certificate and private key file paths, optionally suffixed with a list of "+
    		"domain patterns which are fully qualified domain names, possibly with prefixed wildcard "+
    		"segments. The domain patterns also allow IP addresses, but IPs should only be used if "+
    		"the apiserver has visibility to the IP address requested by a client. "+
    		"If no domain patterns are provided, the names of the certificate are "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  4. cmd/handler-utils.go

    	xhost, err := xnet.ParseHost(host)
    	if err != nil {
    		return "", err
    	}
    
    	for _, domain := range domains {
    		if xhost.Name == minioReservedBucket+"."+domain {
    			continue
    		}
    		if !strings.HasSuffix(xhost.Name, "."+domain) {
    			continue
    		}
    		bucket := strings.TrimSuffix(xhost.Name, "."+domain)
    		return SlashSeparator + pathJoin(bucket, path), nil
    	}
    	return path, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/first-steps.md

    # Sicherheit – Erste Schritte
    
    Stellen wir uns vor, dass Sie Ihre **Backend**-API auf einer Domain haben.
    
    Und Sie haben ein **Frontend** auf einer anderen Domain oder in einem anderen Pfad derselben Domain (oder in einer mobilen Anwendung).
    
    Und Sie möchten eine Möglichkeit haben, dass sich das Frontend mithilfe eines **Benutzernamens** und eines **Passworts** beim Backend authentisieren kann.
    
    Wir können **OAuth2** verwenden, um das mit **FastAPI** zu erstellen.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    			DNSNames: []string{"test-domain.space"},
    		},
    		Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    	}
    
    	cert := &x509.Certificate{
    		Subject: pkix.Name{
    			CommonName:   "test-common-name",
    			Organization: testCertOrganization,
    		},
    		ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		DNSNames:    []string{"test-domain.space"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar_fiat.go

    // The type fiatScalarMontgomeryDomainFieldElement is a field element in the Montgomery domain.
    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type fiatScalarMontgomeryDomainFieldElement [4]uint64
    
    // The type fiatScalarNonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/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: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    	}
    	if len(strings.Split(name, ".")) < 3 {
    		return append(allErrors, field.Invalid(fldPath, name, "should be a domain with at least three segments separated by dots"))
    	}
    	return allErrors
    }
    
    // IsFullyQualifiedDomainName checks if the domain name is fully qualified. This
    // is similar to IsFullyQualifiedName but only requires a minimum of 2 segments
    // instead of 3 and accepts a trailing . as valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Configuration.java

        boolean isDfsDisabled ();
    
    
        /**
         * Enable hack to make kerberos auth work with DFS sending short names
         * 
         * This works by appending the domain name to the netbios short name and will fail horribly if this mapping is not
         * correct for your domain.
         * 
         * Property <tt>jcifs.smb.client.dfs.convertToFQDN</tt> (boolean, default false)
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top