Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 264 for subdomains (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    		MaxRegexSize: 30,
    	},
    	"qualifiedName": {
    		Name:         "QualifiedName",
    		ValidateFunc: validation.IsQualifiedName,
    		MaxRegexSize: 60, // uses subdomain regex
    	},
    
    	"dns1123LabelPrefix": {
    		Name:         "DNS1123LabelPrefix",
    		ValidateFunc: func(s string) []string { return apimachineryvalidation.NameIsDNSLabel(s, true) },
    		MaxRegexSize: 30,
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    					Request:    newCSRPEM(t),
    					SignerName: "example.com/",
    				},
    			},
    			errs: field.ErrorList{
    				field.Invalid(specPath.Child("signerName"), "", `validating label "": 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 Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kube/util.go

    			ServiceAccountName: oldSpec.ServiceAccountName,
    			NodeName:           oldSpec.NodeName,
    			HostNetwork:        oldSpec.HostNetwork,
    			Hostname:           oldSpec.Hostname,
    			Subdomain:          oldSpec.Subdomain,
    		}
    		pod.Spec = newSpec
    		pod.Status.InitContainerStatuses = nil
    		pod.Status.ContainerStatuses = nil
    	}
    
    	return obj, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // such as state.*.us, dst.*.us, etc., but resolution of these is somewhat
    // haphazard; in some states these domains resolve as addresses, while in others
    // only subdomains are available, or even nothing at all. We include the
    // most common ones where it's clear that different sites are different
    // entities.
    k12.ak.us
    k12.al.us
    k12.ar.us
    k12.as.us
    k12.az.us
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. pkg/apis/apiserverinternal/validation/validation.go

    		}
    	default:
    		return append(errs, "an apiVersion is "+utilvalidation.RegexError(dns1035LabelErrMsg, dns1035LabelFmt, "my-name", "abc-123")+
    			" with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyVersion')")
    	}
    
    	if len(version) == 0 {
    		errs = append(errs, "version part: "+utilvalidation.EmptyError())
    	} else if msgs := utilvalidation.IsDNS1035Label(version); len(msgs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"bad-name": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("instances").Index(0).Child("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:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	WorkloadName string
    
    	// Specifies the hostname of the Pod, empty for vm workload.
    	HostName string
    
    	// If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
    	SubDomain string
    
    	// Determines the discoverability of this endpoint throughout the mesh.
    	DiscoverabilityPolicy EndpointDiscoverabilityPolicy `json:"-"`
    
    	// Indicates the endpoint health status.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	for _, r := range dedupResourceInfos(resources) {
    		decodableVersions := decodableVersions(r.DirectlyDecodableVersions, r.EquivalentResourceMapper, r.GroupResource)
    		gr := r.GroupResource
    		// Group must be a valid subdomain in DNS (RFC 1123)
    		if len(gr.Group) == 0 {
    			gr.Group = "core"
    		}
    
    		servedVersions := r.ServedVersions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    matchImages is a pattern which can optionally contain a port and a path. 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.\n\nA match exists between an image and a matchImage when all of the below are true: - Both contain the same number...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top