Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,628 for integers (0.21 sec)

  1. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    the Job. The list of indexes must be within 0 to \".spec.completions-1\" and must not contain duplicates. At least one element is required. The indexes are represented as intervals separated by commas. The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen. The number are listed in represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". When this...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. src/math/rand/rand.go

    again:
    	f := float32(r.Float64())
    	if f == 1 {
    		goto again // resample; this branch is taken O(very rarely)
    	}
    	return f
    }
    
    // Perm returns, as a slice of n ints, a pseudo-random permutation of the integers
    // in the half-open interval [0,n).
    func (r *Rand) Perm(n int) []int {
    	m := make([]int, n)
    	// In the following loop, the iteration when i=0 always swaps m[0] with m[0].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/generated.proto

      // must not contain duplicates. At least one element is required.
      // The indexes are represented as intervals separated by commas.
      // The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
      // The number are listed in represented by the first and last element of the series,
      // separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. src/database/sql/driver/types.go

    	Value() (Value, error)
    }
    
    // Bool is a [ValueConverter] that converts input values to bool.
    //
    // The conversion rules are:
    //   - booleans are returned unchanged
    //   - for integer types,
    //     1 is true
    //     0 is false,
    //     other integers are an error
    //   - for strings and []byte, same rules as [strconv.ParseBool]
    //   - all other types are an error
    var Bool boolType
    
    type boolType struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/internal/fuzz/encoding_test.go

    math.Float64frombits(0x7ff8000000000002)
    math.Float32frombits(0x7fc00001)`,
    		},
    		{
    			desc: "int variations",
    			// Although we arbitrarily choose default integer bases (0 or 16), we may
    			// want to change those arbitrary choices in the future and should not
    			// break the parser. Verify that integers in the opposite bases still
    			// parse correctly.
    			in: `go test fuzz v1
    int(0x0)
    int32(0x41)
    int64(0xfffffffff)
    uint32(0xcafef00d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    	// first (and in this case only) frame's width and height.
    	//
    	// A Config only specifies a width and height (two integers) while an
    	// image.Image's Bounds method returns an image.Rectangle (four integers).
    	// For a gif.GIF, the overall bounds' top-left point is always implicitly
    	// (0, 0), and any frame whose bounds have a negative X or Y will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-nested-models.md

        Keep in mind that JSON only supports `str` as keys.
    
        But Pydantic has automatic data conversion.
    
        This means that, even though your API clients can only send strings as keys, as long as those strings contain pure integers, Pydantic will convert them and validate them.
    
        And the `dict` you receive as `weights` will actually have `int` keys and `float` values.
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. doc/go_spec.html

    *    product                integers, floats, complex values
    /    quotient               integers, floats, complex values
    %    remainder              integers
    
    &    bitwise AND            integers
    |    bitwise OR             integers
    ^    bitwise XOR            integers
    &^   bit clear (AND NOT)    integers
    
    <<   left shift             integer << integer >= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Comparators.java

       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
       * <p>Note that {@code Collections.reverseOrder(lexicographical(comparator))} is not equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. docs/distributed/README.md

    ```sh
    export MINIO_ROOT_USER=<ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m}
    ```
    
    > **NOTE:** In above example `n` and `m` represent positive integers, _do not copy paste and expect it work make the changes according to local deployment and setup_.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top