Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 264 for subdomains (0.3 sec)

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

     *
     *  * **Any number of subdomains**: Use two asterisks to like `**.publicobject.com` to match any
     *    number of prefixes (`us-west.www.publicobject.com`, `www.publicobject.com`) including no
     *    prefix at all (`publicobject.com`). For most applications this is the best way to configure
     *    certificate pinning.
     *
     *  * **Exactly one subdomain**: Use a single asterisk like `*.publicobject.com` to match exactly
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/changelogs/changelog_4x.md

        event always used to follow one of these events; now it may be sent without them.
    
     *  New: Upgrade to Kotlin 1.3.61.
    
     *  New: Match any number of subdomains with two asterisks in `CertificatePinner`. For example,
        `**.squareup.com` matches `us-west.www.squareup.com`, `www.squareup.com` and `squareup.com`.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/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
    - 26.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			},
    			expectedErrList: field.ErrorList{},
    			knownTypes:      sets.NewString(string("Foo")),
    			repeatableTypes: sets.NewString(string("Webhook")),
    		},
    		{
    			name: "authorizer names should be DNS1123 subdomains",
    			configuration: api.AuthorizationConfiguration{
    				Authorizers: []api.AuthorizerConfiguration{
    					{
    						Type: "Foo",
    						Name: "foo.example.domain",
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top