Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dsts (0.2 sec)

  1. pkg/apis/core/validation/validation.go

    		if c.Name == containerName {
    			hasContainer = true
    			return false
    		}
    		return true
    	})
    	return hasContainer
    }
    
    const (
    	// a sysctl segment regex, concatenated with dots to form a sysctl name
    	SysctlSegmentFmt string = "[a-z0-9]([-_a-z0-9]*[a-z0-9])?"
    
    	// a sysctl name regex with slash allowed
    	SysctlContainSlashFmt string = "(" + SysctlSegmentFmt + "[\\./])*" + SysctlSegmentFmt
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      before less specific wildcard entries. For example, `\"*.foo.example.com\"`
                      takes precedence over `\"*.example.com\"`. The precise definition
                      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_
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    enabled.([#51436](https://github.com/kubernetes/kubernetes/pull/51436))
    
    * [Action required] The validation rule for metadata.initializers.pending[x].name is tightened. The initializer name must contain at least three segments, separated by dots. You can create objects with pending initializers and not rely on the API server to add pending initializers according to `initializerConfiguration`. If you do so, update the initializer name in the existing objects and the configuration files to comply...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "spec": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			fieldPath:       ".c",
    			pathOfFieldPath: path,
    			schema:          &schema,
    			errMsg:          "does not refer to a valid field",
    		},
    		{
    			name:            "Duplicate dots",
    			fieldPath:       ".a..b",
    			pathOfFieldPath: path,
    			schema:          &schema,
    			errMsg:          "does not refer to a valid field",
    		},
    		{
    			name:            "Negative array index",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - `StatefulSet` names must be DNS labels, rather than subdomains. Any `StatefulSet`
      which took advantage of subdomain validation (by having dots in the name) can't
      possibly have worked, because we eventually set `pod.spec.hostname` from the `StatefulSetName`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-65986`](https://youtrack.jetbrains.com/issue/KT-65986) `GradleDeprecatedOption.removeAfter` does not actually remove arguments from the compilerOptions/kotlinOptions DSLs
    - [`KT-65989`](https://youtrack.jetbrains.com/issue/KT-65989) Compile against Gradle API 8.6
    - [`KT-65819`](https://youtrack.jetbrains.com/issue/KT-65819) Build Gradle Plugins against Gradle 8.5 API
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top