Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,291 for validations (0.31 sec)

  1. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
        id: context
        attributes:
          label: Context (optional)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
        id: context
        attributes:
          label: Context (optional)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    	Default() any
    
    	Validations
    	KubeExtensions
    
    	// WithTypeAndObjectMeta returns a schema that has the type and object meta set.
    	// the type includes "kind", "apiVersion" field
    	// the "metadata" field requires "name" and "generateName" to be set
    	// The original schema must not be mutated. Make a copy if necessary.
    	WithTypeAndObjectMeta() Schema
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug_report.yaml

          description: Please describe the issue you encountered.
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: Example
          description: >
            Please provide a [Short, Self Contained, Correct (Compilable), Example](http://sscce.org/)
            demonstrating the bug.
          render: java
        validations:
          required: true
    
      - type: textarea
        attributes:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/controller/validatingadmissionpolicystatus/controller_test.go

    						Resources:   resources,
    					},
    				},
    			},
    		},
    	}
    	return policy
    }
    
    func withValidations(validations []admissionregistrationv1.Validation, policy *admissionregistrationv1.ValidatingAdmissionPolicy) *admissionregistrationv1.ValidatingAdmissionPolicy {
    	policy.Spec.Validations = validations
    	return policy
    }
    
    func makePolicy(name string) *admissionregistrationv1.ValidatingAdmissionPolicy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/bug-report.yaml

        validations:
          required: true
    
      - type: textarea
        id: expected
        attributes:
          label: What did you expect to happen?
        validations:
          required: true
    
      - type: textarea
        id: repro
        attributes:
          label: How can we reproduce it (as minimally and precisely as possible)?
        validations:
          required: true
    
      - type: textarea
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 28 09:34:43 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. operator/pkg/validate/validate_values.go

    }
    
    // ValuesValidate validates the values of the tree using the supplied Func
    func ValuesValidate(validations map[string]ValidatorFunc, node any, path util.Path) (errs util.Errors) {
    	pstr := path.String()
    	scope.Debugf("ValuesValidate %s", pstr)
    	vf := validations[pstr]
    	if vf != nil {
    		errs = util.AppendErrs(errs, vf(path, node))
    	}
    
    	nn, ok := node.(map[string]any)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			errors: []validationMatch{
    				invalid("spec", "validation", "openAPIV3Schema", "x-kubernetes-validations[2]", "fieldPath"),
    				invalid("spec", "validation", "openAPIV3Schema", "x-kubernetes-validations[3]", "fieldPath"),
    				invalid("spec", "validation", "openAPIV3Schema", "x-kubernetes-validations[4]", "fieldPath"),
    				invalid("spec", "validation", "openAPIV3Schema", "x-kubernetes-validations[4]", "fieldPath"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicyspec.go

    	ParamKind        *ParamKindApplyConfiguration                    `json:"paramKind,omitempty"`
    	MatchConstraints *MatchResourcesApplyConfiguration               `json:"matchConstraints,omitempty"`
    	Validations      []ValidationApplyConfiguration                  `json:"validations,omitempty"`
    	FailurePolicy    *admissionregistrationv1beta1.FailurePolicyType `json:"failurePolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

        attributes:
          label: Expected Behavior
          description: Tell us how it should work
        validations:
          required: true
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior (optional)
          description: Explain the difference from current behavior
        validations:
          required: false
      - type: textarea
        id: context
        attributes:
          label: Context
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top