Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,291 for validations (0.15 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validatingadmissionpolicyspec.go

    	ParamKind        *ParamKindApplyConfiguration                     `json:"paramKind,omitempty"`
    	MatchConstraints *MatchResourcesApplyConfiguration                `json:"matchConstraints,omitempty"`
    	Validations      []ValidationApplyConfiguration                   `json:"validations,omitempty"`
    	FailurePolicy    *admissionregistrationv1alpha1.FailurePolicyType `json:"failurePolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:13:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicyspec.go

    	ParamKind        *ParamKindApplyConfiguration               `json:"paramKind,omitempty"`
    	MatchConstraints *MatchResourcesApplyConfiguration          `json:"matchConstraints,omitempty"`
    	Validations      []ValidationApplyConfiguration             `json:"validations,omitempty"`
    	FailurePolicy    *admissionregistrationv1.FailurePolicyType `json:"failurePolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    var unbounded *uint64 = nil
    
    // CELSchemaContext keeps track of data used by x-kubernetes-validations rules for a specific schema node.
    type CELSchemaContext struct {
    	// withinValidationRuleScope is true if the schema at the current level or above have x-kubernetes-validations rules. typeInfo
    	// should only be populated for schema nodes where this is true.
    	withinValidationRuleScope bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                        type: string
                        x-kubernetes-validations:
                        - message: cross namespace referencing is not currently supported
                          rule: self.size() == 0
                    required:
                    - kind
                    - name
                    type: object
                    x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/enhancement.yaml

            See https://git.k8s.io/enhancements/keps#kubernetes-enhancement-proposals-keps
        validations:
          required: true
    
      - type: textarea
        id: rationale
        attributes:
          label: Why is this needed?
        validations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 750 bytes
    - Viewed (0)
  6. pkg/apis/policy/validation/validation.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"regexp"
    
    	policyapiv1beta1 "k8s.io/api/policy/v1beta1"
    	unversionedvalidation "k8s.io/apimachinery/pkg/apis/meta/v1/validation"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	appsvalidation "k8s.io/kubernetes/pkg/apis/apps/validation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/12-telemetry.yml

          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
          for more details on telemetry proposals.
      validations:
        required: true
    - type: input
      attributes:
        label: Proposed Config Change
        description: >
          A CL containing proposed changes to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

          label: 1. What are you trying to do?
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: 2. What's the best code you can write to accomplish that without the new feature?
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: 3. What would that same code look like if we added your feature?
        validations:
          required: true
    
      - type: markdown
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

            List<DefaultModelSchemaExtractionContext<?>> validations = new ArrayList<>();
            Queue<DefaultModelSchemaExtractionContext<?>> unsatisfiedDependencies = new ArrayDeque<DefaultModelSchemaExtractionContext<?>>();
            DefaultModelSchemaExtractionContext<?> extractionContext = context;
            validations.add(extractionContext);
    
            while (extractionContext != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// Validations contain CEL expressions which is used to apply the validation.
    	// Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
    	// required.
    	// +listType=atomic
    	// +optional
    	Validations []Validation `json:"validations,omitempty" protobuf:"bytes,3,rep,name=validations"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
Back to top