Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for maxItems (0.21 sec)

  1. tests/test_tuples.py

                                    "schema": IsDict(
                                        {
                                            "title": "Square",
                                            "maxItems": 2,
                                            "minItems": 2,
                                            "type": "array",
                                            "prefixItems": [
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  2. 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);
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.7K bytes
    - Viewed (0)
  3. 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);
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 24.4K bytes
    - Viewed (0)
  4. fastapi/openapi/models.py

        exclusiveMinimum: Optional[float] = None
        maxLength: Optional[int] = Field(default=None, ge=0)
        minLength: Optional[int] = Field(default=None, ge=0)
        pattern: Optional[str] = None
        maxItems: Optional[int] = Field(default=None, ge=0)
        minItems: Optional[int] = Field(default=None, ge=0)
        uniqueItems: Optional[bool] = None
        maxContains: Optional[int] = Field(default=None, ge=0)
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 22:49:33 GMT 2024
    - 15K bytes
    - Viewed (1)
  5. internal/config/identity/plugin/config.go

    	default:
    		// This request is too old, it should never happen, ignore it as we
    		// cannot return an error.
    		return
    	}
    
    	// Update stats
    	if isSuccess {
    		if entry.maxRttMs < rttMs {
    			entry.maxRttMs = rttMs
    		}
    		entry.rttMsSum += rttMs
    		entry.successRequestCount++
    	} else {
    		entry.failedRequestCount++
    	}
    }
    
    // AuthNPlugin - implements pluggable authentication via webhook.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                            rule: '(has(self.valueFrom) ? self.valueFrom : '''') != ''HOST''
                              || !has(self.value)'
                        maxItems: 256
                        type: array
                        x-kubernetes-list-map-keys:
                        - name
                        x-kubernetes-list-type: map
                    type: object
                required:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            rule: '(has(self.valueFrom) ? self.valueFrom : '''') != ''HOST''
                              || !has(self.value)'
                        maxItems: 256
                        type: array
                        x-kubernetes-list-map-keys:
                        - name
                        x-kubernetes-list-type: map
                    type: object
                required:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    variable's value. enum: - INLINE - HOST type: string required: - name type: object x-kubernetes-validations: - message: value may only be set when valueFrom is INLINE rule: '(has(self.valueFrom) ? self.valueFrom : '''') != ''HOST'' || !has(self.value)' maxItems: 256 type: array x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map type: object required: - url type: object status: type: object x-kubernetes-preserve-unknown-fields: true required: - spec type: object served: true storage: true subresources:...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top