Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for XValidations (0.76 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Required.
      optional MatchResources matchConstraints = 2;
    
      // 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
      repeated Validation validations = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	"k8s.io/klog/v2"
    )
    
    // Backend describes the storage servers, the information here should be enough
    // for health validations.
    type Backend struct {
    	// the url of storage backend like: https://etcd.domain:2379
    	Server string
    	// the required tls config
    	TLSConfig *tls.Config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. operator/pkg/validate/common.go

    }
    
    // get validation function for specified path
    func getValidationFuncForPath(validations map[string]ValidatorFunc, path util.Path) (ValidatorFunc, bool) {
    	pstr := path.String()
    	// fast match
    	if !strings.Contains(pstr, "[") && !strings.Contains(pstr, "]") {
    		vf, ok := validations[pstr]
    		return vf, ok
    	}
    	for p, vf := range validations {
    		ps := strings.Split(p, ".")
    		if len(ps) != len(path) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"validations":      "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"validations":      "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	var warnings []v1.ExpressionWarning // intentionally not setting capacity
    
    	// check main validation expressions and their message expressions, located in spec.validations[*]
    	fieldRef := field.NewPath("spec", "validations")
    	for i, v := range policy.Spec.Validations {
    		results := c.CheckExpression(ctx, v.Expression)
    		if len(results) != 0 {
    			warnings = append(warnings, v1.ExpressionWarning{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.MatchConstraints != nil {
    		in, out := &in.MatchConstraints, &out.MatchConstraints
    		*out = new(MatchResources)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Validations != nil {
    		in, out := &in.Validations, &out.Validations
    		*out = make([]Validation, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.FailurePolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    		if err := Convert_v1alpha1_MatchResources_To_admissionregistration_MatchResources(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.MatchConstraints = nil
    	}
    	out.Validations = *(*[]admissionregistration.Validation)(unsafe.Pointer(&in.Validations))
    	out.FailurePolicy = (*admissionregistration.FailurePolicyType)(unsafe.Pointer(in.FailurePolicy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	// validate x-kubernetes-list-type "map" and "set" invariant
    	errs = append(errs, structurallisttype.ValidateListSetsAndMaps(nil, a.structuralSchema, u.Object)...)
    
    	// validate x-kubernetes-validations rules
    	if celValidator := a.celValidator; celValidator != nil {
    		if has, err := hasBlockingErr(errs); has {
    			errs = append(errs, err)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/dependencies/index.md

        If you don't know, check the [Async: *"In a hurry?"*](../../async.md#in-a-hurry){.internal-link target=_blank} section about `async` and `await` in the docs.
    
    ## Integrated with OpenAPI
    
    All the request declarations, validations and requirements of your dependencies (and sub-dependencies) will be integrated in the same OpenAPI schema.
    
    So, the interactive docs will have all the information from these dependencies too:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top