Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for SubDomain (0.14 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{[]string{"my-hostname", "my.subdomain", "1.2.3.4"}, true},             // supported
    		{[]string{"my-hostname2", "my.other.subdomain", "10.0.0.10"}, true},    // supported
    		{[]string{"my-hostname", "my.subdomain", "2001:db8::4"}, true},         // supported
    		{[]string{"my-hostname2", "my.other.subdomain", "2001:db8::10"}, true}, // supported
    		{[]string{"*.my-hostname2", "*.my.other.subdomain"}, true},             // supported Wildcard DNS label
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "name"), badName, "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*')")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    			parameters:   testResourceClaimParameters(goodName, "", goodRequests),
    		},
    		"bad-name": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "name"), badName, "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*')")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    // the scheduler assumes that capacity is insufficient and tries some other
    // node.
    message CSIStorageCapacity {
      // Standard object's metadata. The name has no particular meaning. It must be
      // be a DNS subdomain (dots allowed, 253 characters). To ensure that
      // there are no conflicts with other CSI drivers on the cluster, the recommendation
      // is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    			NodeSelector: map[string]string{
    				"label1": "value1",
    				"label2": "value2",
    			},
    			ServiceAccountName: "service-account",
    			HostNetwork:        false,
    			HostPID:            true,
    			Subdomain:          "hostname.subdomain.namespace.svc.domain",
    		},
    		Status: testapigroupv1.CarpStatus{
    			Phase: "phase",
    			Conditions: []testapigroupv1.CarpCondition{
    				{
    					Type:               "condition1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"metadata":          "Standard object's metadata. The name has no particular meaning. It must be be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    	}, {
    		name:       "name should not include scheme",
    		targetName: "http://foo.k8s.io",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "email should be invalid",
    		targetName: "******@****.***",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "name cannot be empty",
    		targetName: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1alpha1/types.go

    // node.
    type CSIStorageCapacity struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata. The name has no particular meaning. It must be
    	// be a DNS subdomain (dots allowed, 253 characters). To ensure that
    	// there are no conflicts with other CSI drivers on the cluster, the recommendation
    	// is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/common_test.go

    		name              string
    		cfg               string
    		expectedError     bool
    		allowExperimental bool
    	}{
    		{
    			name: "invalid subdomain",
    			cfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: InitConfiguration
    			  name: foo bar # not a valid subdomain
    			`, gv)),
    			expectedError: true,
    		},
    		{
    			name: "unknown API GVK",
    			cfg: dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/InternetDomainName.java

       *
       * @since 6.0
       */
      public boolean isUnderPublicSuffix() {
        return publicSuffixIndex() > 0;
      }
    
      /**
       * Indicates whether this domain name is composed of exactly one subdomain component followed by a
       * {@linkplain #isPublicSuffix() public suffix}. For example, returns {@code true} for {@code
       * google.com} {@code foo.co.uk}, and {@code myblog.blogspot.com}, but not for {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top