Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for XValidations (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    								apiVersion:
    									type: string
    									x-kubernetes-validations:
    									- rule: self == "v1"
    								kind:
    									type: string
    									x-kubernetes-validations:
    									- rule: self == "Pod"
    					subField:
    						type: object
    						properties:
    							apiVersion:
    								type: string
    								x-kubernetes-validations:
    								- rule: self == "v1"
    							kind:
    								type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/printers/internalversion/printers.go

    	validatingAdmissionPolicy := []metav1.TableColumnDefinition{
    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Validations", Type: "integer", Description: "Validations indicates the number of validation rules defined in this configuration"},
    		{Name: "ParamKind", Type: "string", Description: "ParamKind specifies the kind of resources used to parameterize this policy"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		if !ok {
    			return nil, errors.New("cannot cast to virtual service")
    		}
    		errs := Validation{}
    		if len(virtualService.Hosts) == 0 {
    			// This must be delegate - enforce delegate validations.
    			if len(virtualService.Gateways) != 0 {
    				// meaningless to specify gateways in delegate
    				errs = AppendValidation(errs, fmt.Errorf("delegate virtual service must have no gateways specified"))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    	// policies and any (LDAP user created) service accounts on the other
    	// peer clusters, and if so, reject the cluster replicate add request.
    	// This is not yet implemented.
    
    	// VALIDATIONS COMPLETE.
    
    	// Create a common service account for all clusters, with root
    	// permissions.
    
    	// Create a local service account.
    
    	// Generate a secret key for the service account if not created already.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top