Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for character (0.16 sec)

  1. doc/go_spec.html

    an integer value identifying a Unicode code point.
    A rune literal is expressed as one or more characters enclosed in single quotes,
    as in <code>'x'</code> or <code>'\n'</code>.
    Within the quotes, any character may appear except newline and unescaped single
    quote. A single quoted character represents the Unicode value
    of the character itself,
    while multi-character sequences beginning with a backslash encode
    values in various formats.
    </p>
    
    <p>
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-06-04 21:07
    - 281.5K bytes
    - Viewed (1)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			want:       []string{"must only contain printable UTF-8 characters; non-printable character found at index 12"},
    		},
    		{
    			name:       "null character",
    			deprecated: true,
    			warning:    pointer.StringPtr("Test message\u0000"),
    			want:       []string{"must only contain printable UTF-8 characters; non-printable character found at index 12"},
    		},
    		{
    			name:       "non-utf-8",
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-05-10 22:07
    - 349.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      here is that the higher the number of dots in the hostname to the
                      right of the wildcard character, the higher the precedence. \n The
                      wildcard character will match any number of characters _and dots_
                      to the left, however, so `\"*.example.com\"` will match both `\"foo.bar.example.com\"`
    Registered: 2024-06-15 01:39
    - Last Modified: 2023-10-27 17:15
    - 458.3K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	maxRunAsUserNameUserLength       = 104
    )
    
    var (
    	// control characters are not permitted in the runAsUserName field.
    	ctrlRegex = regexp.MustCompile(`[[:cntrl:]]+`)
    
    	// a valid NetBios Domain name cannot start with a dot, has at least 1 character,
    	// at most 15 characters, and it cannot the characters: \ / : * ? " < > |
    	validNetBiosRegex = regexp.MustCompile(`^[^\\/:\*\?"<>|\.][^\\/:\*\?"<>|]{0,14}$`)
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-05-29 22:40
    - 349.5K bytes
    - Viewed (1)
  5. pkg/apis/core/types.go

    // ResourceName is the name identifying various resources in a ResourceList.
    type ResourceName string
    
    // Resource names must be not more than 63 characters, consisting of upper- or lower-case alphanumeric characters,
    // with the -, _, and . characters allowed anywhere, except the first or last character.
    // The default convention, matching that for annotations, is to use lower-case names, with dashes, rather than
    // camel case, separating compound words.
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-05-29 22:40
    - 268.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

    ### Action Required
    
    * action required: the API server and client-go libraries have been fixed to support additional non-alpha-numeric characters in UserInfo "extra" data keys. Both should be updated in order to properly support extra data containing "/" characters or other characters disallowed in HTTP headers. ([#65799](https://github.com/kubernetes/kubernetes/pull/65799), [@dekkagaijin](https://github.com/dekkagaijin))
    
    Registered: 2024-06-15 01:39
    - Last Modified: 2022-05-05 13:44
    - 341.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                }
              },
              {
                "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
                "in": "query",
                "name": "fieldManager",
                "schema": {
                  "type": "string",
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-03-08 04:18
    - 324.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    ...
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-03-08 04:18
    - 388.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.15.md

    ### Auth
    
    - Fixed OpenID Connect (OIDC) token refresh when the client secret contains a special character. ([#76914](https://github.com/kubernetes/kubernetes/pull/76914), [@tsuna](https://github.com/tsuna))
    Registered: 2024-06-15 01:39
    - Last Modified: 2022-05-05 13:44
    - 278.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-03-08 04:18
    - 481.9K bytes
    - Viewed (0)
Back to top