Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for max_iters (0.15 sec)

  1. android/guava/src/com/google/common/base/Splitter.java

       *
       * @param maxItems the maximum number of items returned
       * @return a splitter with the desired configuration
       * @since 9.0
       */
      public Splitter limit(int maxItems) {
        checkArgument(maxItems > 0, "must be greater than zero: %s", maxItems);
        return new Splitter(strategy, omitEmptyStrings, trimmer, maxItems);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

       *
       * @param maxItems the maximum number of items returned
       * @return a splitter with the desired configuration
       * @since 9.0
       */
      public Splitter limit(int maxItems) {
        checkArgument(maxItems > 0, "must be greater than zero: %s", maxItems);
        return new Splitter(strategy, omitEmptyStrings, trimmer, maxItems);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    type Validations interface {
    	Pattern() string
    	Minimum() *float64
    	IsExclusiveMinimum() bool
    	Maximum() *float64
    	IsExclusiveMaximum() bool
    	MultipleOf() *float64
    	MinItems() *int64
    	MaxItems() *int64
    	MinLength() *int64
    	MaxLength() *int64
    	MinProperties() *int64
    	MaxProperties() *int64
    	Required() []string
    	Enum() []any
    	Nullable() bool
    	UniqueItems() bool
    
    	AllOf() []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. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "exclusiveMaximum": true,
                "minimum": 11.5,
                "exclusiveMinimum": true,
                "maxLength": 13,
                "minLength": 14,
                "pattern": "patternValue",
                "maxItems": 16,
                "minItems": 17,
                "uniqueItems": true,
                "multipleOf": 19.5,
                "enum": [
                  "enumValue"
                ],
                "maxProperties": 21,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                properties:
                  ips:
                    description: ip will be used as the VIP for this service when type
                      is ClusterSetIP.
                    type: array
                    maxItems: 1
                    items:
                      type: string
                  ports:
                    type: array
                    items:
                      description: ServicePort represents the port on which the service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    	out.ExclusiveMaximum = in.ExclusiveMaximum
    	out.Minimum = in.Minimum
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = in.MaxLength
    	out.MinLength = in.MinLength
    	out.Pattern = in.Pattern
    	out.MaxItems = in.MaxItems
    	out.MinItems = in.MinItems
    	out.UniqueItems = in.UniqueItems
    	out.MultipleOf = in.MultipleOf
    	out.MaxProperties = in.MaxProperties
    	out.MinProperties = in.MinProperties
    	out.Required = in.Required
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

             ++member_iter) {
          ResourceAndDevice resource_and_device = *member_iter;
          auto map_iter = chain_resource_to_ops_map.find(resource_and_device);
          if (map_iter == chain_resource_to_ops_map.end()) continue;
          OperationSetTy& resource_ops = map_iter->getSecond();
    
          // Add dependencies between all ops that access current resource and chain
          // source and sink.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	MinLength        *int64   `json:"minLength,omitempty" protobuf:"bytes,14,opt,name=minLength"`
    	Pattern          string   `json:"pattern,omitempty" protobuf:"bytes,15,opt,name=pattern"`
    	MaxItems         *int64   `json:"maxItems,omitempty" protobuf:"bytes,16,opt,name=maxItems"`
    	MinItems         *int64   `json:"minItems,omitempty" protobuf:"bytes,17,opt,name=minItems"`
    	UniqueItems      bool     `json:"uniqueItems,omitempty" protobuf:"bytes,18,opt,name=uniqueItems"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/types.go

    )
    
    const (
    	noMaxLength = math.MaxInt
    )
    
    // NewListType returns a parameterized list type with a specified element type.
    func NewListType(elem *DeclType, maxItems int64) *DeclType {
    	return &DeclType{
    		name:         "list",
    		ElemType:     elem,
    		MaxElements:  maxItems,
    		celType:      cel.ListType(elem.CelType()),
    		defaultValue: NewListValue(),
    		// a list can always be represented as [] in JSON, so hardcode the min size
    		// to 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	MinLength        *int64   `json:"minLength,omitempty" protobuf:"bytes,14,opt,name=minLength"`
    	Pattern          string   `json:"pattern,omitempty" protobuf:"bytes,15,opt,name=pattern"`
    	MaxItems         *int64   `json:"maxItems,omitempty" protobuf:"bytes,16,opt,name=maxItems"`
    	MinItems         *int64   `json:"minItems,omitempty" protobuf:"bytes,17,opt,name=minItems"`
    	UniqueItems      bool     `json:"uniqueItems,omitempty" protobuf:"bytes,18,opt,name=uniqueItems"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
Back to top