Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for XValidations (0.88 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // 2) `atomic`: the list is treated as a single entity, like a scalar.
      //      Atomic maps will be entirely replaced when updated.
      // +optional
      optional string xKubernetesMapType = 43;
    
      // x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
      // This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled.
      // +patchMergeKey=rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // 2) `atomic`: the list is treated as a single entity, like a scalar.
      //      Atomic maps will be entirely replaced when updated.
      // +optional
      optional string xKubernetesMapType = 43;
    
      // x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
      // This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled.
      // +patchMergeKey=rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. cmd/tier.go

    	if t, ok := config.Tiers[tierName]; ok {
    		return t.Type, true
    	}
    	return madmin.Unsupported, false
    }
    
    // Add adds tier to config if it passes all validations.
    func (config *TierConfigMgr) Add(ctx context.Context, tier madmin.TierConfig, ignoreInUse bool) error {
    	config.Lock()
    	defer config.Unlock()
    
    	// check if tier name is in all caps
    	tierName := tier.Name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. architecture/environments/operator.md

    struct.
    
    Other per-component mappings to Helm values.yaml are expressed in the
    [ComponentMaps](https://github.com/istio/operator/blob/e9097258cb4fbe59648e7da663cdad6f16927b8f/pkg/translate/translate.go#L83)
    struct.
    
    ### Validations
    
    Both the `IstioOperatorSpec` and Helm APIs are validated. The `IstioOperatorSpec` API is validated through a
    table of validation rules in
    [pkg/validate/validate.go](pkg/validate/validate.go). These rules
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/strategy_test.go

    			MinReadySeconds:     newMinReadySeconds,
    		},
    		Status: apps.StatefulSetStatus{Replicas: 4},
    	}
    	Strategy.PrepareForUpdate(ctx, validPs, ps)
    	t.Run("StatefulSet minReadySeconds field validations on creation and updation", func(t *testing.T) {
    		// Test creation
    		ps := &apps.StatefulSet{
    			ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    			Spec: apps.StatefulSetSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            failure.assertHasErrorOutput "Disable this check by adding 'dependencies-without-versions' to the suppressed validations of the :generateMetadataFileForIvyPublication task."
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23030")
        def "can disable validation of dependencies without versions"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    === Fine tuning dependency locking behaviour with lock mode
    
    While the default lock mode behaves as described above, two other modes are available:
    
    Strict mode::
    In this mode, in addition to the validations above, dependency locking will fail if a configuration marked as _locked_ does not have lock state associated with it.
    
    Lenient mode::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            }
    
            if (ruleMethod.getTypeParameters().length > 0) {
                problems.add(ruleMethod, "Cannot have type variables (i.e. cannot be a generic method)");
            }
    
            // TODO validations on method: synthetic, bridge methods, varargs, abstract, native
            ModelType<?> returnType = ModelType.returnType(ruleMethod);
            if (returnType.isRawClassOfParameterizedType()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Task ordering can be useful in a number of scenarios:
    
    * Enforce sequential ordering of tasks (e.g., `build` never runs before `clean`).
    * Run build validations early in the build (e.g., validate I have the correct credentials before starting the work for a release build).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

            failure.assertHasErrorOutput "Disable this check by adding 'dependencies-without-versions' to the suppressed validations of the :generateMetadataFileForMavenPublication task."
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23030")
        def "can disable validation of dependencies without versions"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top