Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for max_iters (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            type: object
                          maxItems: 8
                          type: array
                      required:
                      - attachedRoutes
                      - conditions
                      - name
                      - supportedKinds
                      type: object
                    maxItems: 64
                    type: array
                    x-kubernetes-list-map-keys:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/openapi/adaptor.go

    }
    
    func (s *Schema) UniqueItems() bool {
    	return s.Schema.UniqueItems
    }
    
    func (s *Schema) MinItems() *int64 {
    	return s.Schema.MinItems
    }
    
    func (s *Schema) MaxItems() *int64 {
    	return s.Schema.MaxItems
    }
    
    func (s *Schema) MinLength() *int64 {
    	return s.Schema.MinLength
    }
    
    func (s *Schema) MaxLength() *int64 {
    	return s.Schema.MaxLength
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK: tf_mlrt.tf_map_fn
      // CHECK-SAME: ([[max_iter]], [[tensor_list]], [[max_iter]], [[elems]], %arg0, %arg1)
      // CHECK-SAME: {body_fn = @"map/while_body/MapFnBody", num_tensor_list_or_flow_in = 1 : i32}
      // CHECK-NOT: tf.while
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

            exclusiveMinimum: true
            externalDocs:
              description: descriptionValue
              url: urlValue
            format: formatValue
            id: idValue
            items:
            - {}
            maxItems: 16
            maxLength: 13
            maxProperties: 21
            maximum: 9.5
            minItems: 17
            minLength: 14
            minProperties: 22
            minimum: 11.5
            multipleOf: 19.5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	return b
    }
    
    // WithMaxItems sets the MaxItems field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the MaxItems field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMaxItems(value int64) *JSONSchemaPropsApplyConfiguration {
    	b.MaxItems = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/gateway-api-crd.yaml

                            type: object
                          maxItems: 8
                          type: array
                      required:
                      - attachedRoutes
                      - conditions
                      - name
                      - supportedKinds
                      type: object
                    maxItems: 64
                    type: array
                    x-kubernetes-list-map-keys:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    	return b
    }
    
    // WithMaxItems sets the MaxItems field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the MaxItems field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMaxItems(value int64) *JSONSchemaPropsApplyConfiguration {
    	b.MaxItems = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.MinItems
    }
    
    func (s *Structural) MaxItems() *int64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.MaxItems
    }
    
    func (s *Structural) MinLength() *int64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		Minimum:          s.Minimum,
    		ExclusiveMinimum: s.ExclusiveMinimum,
    		MaxLength:        s.MaxLength,
    		MinLength:        s.MinLength,
    		Pattern:          s.Pattern,
    		MaxItems:         s.MaxItems,
    		MinItems:         s.MinItems,
    		UniqueItems:      s.UniqueItems,
    		MultipleOf:       s.MultipleOf,
    		MaxProperties:    s.MaxProperties,
    		MinProperties:    s.MinProperties,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"array": []interface{}{"value1", "value2", "value3"},
    					}},
    				patchMyCRDV1Beta1Schema{
    					"change maxItems on array to 1, invalidates previous object",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"array": map[string]interface{}{
    								"maxItems": 1,
    							},
    						},
    					}},
    				applyPatchOperation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top