Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,291 for validations (0.48 sec)

  1. operator/pkg/translate/translate_common.go

    )
    
    // IsComponentEnabledInSpec reports whether the given component is enabled in the given spec.
    // IsComponentEnabledInSpec assumes that controlPlaneSpec has been validated.
    // TODO: remove extra validations when comfort level is high enough.
    func IsComponentEnabledInSpec(componentName name.ComponentName, controlPlaneSpec *v1alpha1.IstioOperatorSpec) (bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. fastapi/routing.py

                    This affects the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
                    [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi).
                    """
                ),
            ] = True,
            generate_unique_id_function: Annotated[
                Callable[[APIRoute], str],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    // ExpressionAccessor is an interface that provides access to a CEL expression.
    type ExpressionAccessor interface {
    	GetExpression() string
    	ReturnTypes() []*celgo.Type
    }
    
    // CompilationResult represents a compiled validations expression.
    type CompilationResult struct {
    	Program            celgo.Program
    	AST                *celgo.Ast
    	ExpressionAccessor ExpressionAccessor
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// 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
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	// ratcheting validation of x-kubernetes-list-type value map and set
    	if oldErrs := structurallisttype.ValidateListSetsAndMaps(nil, a.structuralSchema, uOld.Object); len(oldErrs) == 0 {
    		errs = append(errs, structurallisttype.ValidateListSetsAndMaps(nil, a.structuralSchema, uNew.Object)...)
    	}
    
    	// validate x-kubernetes-validations rules
    	if celValidator := a.celValidator; celValidator != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1alpha1.Validation)(nil), (*admissionregistration.Validation)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_Validation_To_admissionregistration_Validation(a.(*v1alpha1.Validation), b.(*admissionregistration.Validation), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.deepcopy.go

    func (in *Validation) DeepCopyInto(out *Validation) {
    	*out = *in
    	if in.Reason != nil {
    		in, out := &in.Reason, &out.Reason
    		*out = new(v1.StatusReason)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Validation.
    func (in *Validation) DeepCopy() *Validation {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                  in Gateway API. This is used for validation of maps
                                  such as TLS options. This roughly matches Kubernetes
                                  annotation validation, although the length validation
                                  in that case is based on the entire size of the annotations
                                  struct.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator.go

    			}
    			// fallback to set message to the custom message
    			if message == "" && len(validation.Message) > 0 {
    				message = strings.TrimSpace(validation.Message)
    			}
    			// fallback to use the expression to compose a message
    			if message == "" {
    				message = fmt.Sprintf("failed expression: %v", strings.TrimSpace(validation.Expression))
    			}
    			decision.Message = message
    		} else {
    			decision.Action = ActionAdmit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. fastapi/applications.py

                    This affects the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
                    [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi).
                    """
                ),
            ] = True,
            swagger_ui_parameters: Annotated[
                Optional[Dict[str, Any]],
                Doc(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top