Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for subdomains (0.33 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cookie.kt

        /**
         * Set the domain pattern for this cookie. The cookie will match [domain] and all of its
         * subdomains.
         */
        fun domain(domain: String): Builder = domain(domain, false)
    
        /**
         * Set the host-only domain for this cookie. The cookie will match [domain] but none of
         * its subdomains.
         */
        fun hostOnlyDomain(domain: String): Builder = domain(domain, true)
    
        private fun domain(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// An IP address prefix and domain name can also include a literal port
    	// number (1.2.3.4:80).
    	// A domain name matches that name and all subdomains. A domain name with
    	// a leading "." matches subdomains only. For example "foo.com" matches
    	// "foo.com" and "bar.foo.com"; ".y.com" matches "x.y.com" but not "y.com".
    	// A single asterisk (*) indicates that no proxying should be done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/middleware.md

    ```
    
    Die folgenden Argumente werden unterstützt:
    
    * `allowed_hosts` – Eine Liste von Domain-Namen, die als Hostnamen zulässig sein sollten. Wildcard-Domains wie `*.example.com` werden unterstützt, um Subdomains zu matchen. Um jeden Hostnamen zu erlauben, verwenden Sie entweder `allowed_hosts=["*"]` oder lassen Sie diese Middleware weg.
    
    Wenn ein eingehender Request nicht korrekt validiert wird, wird eine „400“-Response gesendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/crypto/x509/name_constraints_test.go

    	},
    
    	// #6: .example.com matches subdomains.
    	{
    		roots: make([]constraintsSpec, 1),
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					ok: []string{"dns:.example.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.example.com"},
    		},
    	},
    
    	// #7: .example.com matches multiple levels of subdomains
    	{
    		roots: []constraintsSpec{
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InternetDomainName.java

       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InternetDomainName.java

       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	Type AuthorizerType
    
    	// Name used to describe the webhook
    	// This is explicitly used in monitoring machinery for metrics
    	// Note: Names must be DNS1123 labels like `myauthorizername` or
    	//		 subdomains like `myauthorizer.example.domain`
    	// Required, with no default
    	Name string
    
    	// Webhook defines the configuration for a Webhook authorizer
    	// Must be defined when Type=Webhook
    	Webhook *WebhookConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar.go

    		// would be sent to every subdomain of bbc.co.uk.
    		// It just doesn't make sense on IP addresses.
    		// The other processing and validation steps in RFC 6265 just
    		// collapse to:
    		if host != domain {
    			return "", false, errIllegalDomain
    		}
    
    		// According to RFC 6265 such cookies should be treated as
    		// domain cookies.
    		// As there are no subdomains of an IP address the treatment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	// Globs can be used in the domain, but not in the port or the path. Globs are supported
    	// as subdomains like `*.k8s.io` or `k8s.*.io`, and top-level-domains such as `k8s.*`.
    	// Matching partial subdomains like `app*.k8s.io` is also supported. Each glob can only match
    	// a single subdomain segment, so `*.io` does not match *.k8s.io.
    	//
    	// A match exists between an image and a matchImage when all of the below are true:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	Type string `json:"type"`
    
    	// Name used to describe the webhook
    	// This is explicitly used in monitoring machinery for metrics
    	// Note: Names must be DNS1123 labels like `myauthorizername` or
    	//		 subdomains like `myauthorizer.example.domain`
    	// Required, with no default
    	Name string `json:"name"`
    
    	// Webhook defines the configuration for a Webhook authorizer
    	// Must be defined when Type=Webhook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top