Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,513 for integers (0.67 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // x-kubernetes-int-or-string specifies that this value is
      // either an integer or a string. If this is true, an empty
      // type is allowed and type as child of anyOf is permitted
      // if following one of the following patterns:
      //
      // 1) anyOf:
      //    - type: integer
      //    - type: string
      // 2) allOf:
      //    - anyOf:
      //      - type: integer
      //      - type: string
      //    - ... zero or more
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FCFID", argLength: 1, reg: fp11, asm: "FCFID", typ: "Float64"},   // convert 64-bit integer to float
    		{name: "FCFIDS", argLength: 1, reg: fp11, asm: "FCFIDS", typ: "Float32"}, // convert 32-bit integer to float
    		{name: "FRSP", argLength: 1, reg: fp11, asm: "FRSP", typ: "Float64"},     // round float to 32-bit value
    
    		// Movement between float and integer registers with no change in bits; accomplished with stores+loads on PPC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    				if err != nil {
    					return nil, err
    				}
    			}
    			if ndjson {
    				return buf.Bytes(), nil
    			}
    			var msi map[string]interface{}
    			dec := json.NewDecoder(buf)
    			// Use number to preserve integers.
    			dec.UseNumber()
    			err = dec.Decode(&msi)
    			if err != nil {
    				return nil, err
    			}
    			b, err = json.MarshalIndent(msi, "", "  ")
    			if err != nil {
    				return nil, err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    	if old.isLhs {
    		// If x is the lhs of a shift, its final type must be integer.
    		// We already know from the shift check that it is representable
    		// as an integer if it is a constant.
    		if !allInteger(typ) {
    			check.errorf(x, InvalidShiftOperand, invalidOp+"shifted operand %s (type %s) must be integer", x, typ)
    			return
    		}
    		// Even if we have an integer, if the value is a constant we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    of the coordinate system; thus translating or reflections of the coordinate
    system result in the same boxes being selected by the algorithm.
    The output of this operation is a set of integers indexing into the input
    collection of bounding boxes representing the selected boxes.  The bounding
    box coordinates corresponding to the selected indices can then be obtained
    using the `tf.gather operation`.  For example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    	if old.isLhs {
    		// If x is the lhs of a shift, its final type must be integer.
    		// We already know from the shift check that it is representable
    		// as an integer if it is a constant.
    		if !allInteger(typ) {
    			check.errorf(x, InvalidShiftOperand, invalidOp+"shifted operand %s (type %s) must be integer", x, typ)
    			return
    		}
    		// Even if we have an integer, if the value is a constant we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/time/format.go

    	if len(s) <= i {
    		return false
    	}
    	c := s[i]
    	return '0' <= c && c <= '9'
    }
    
    // getnum parses s[0:1] or s[0:2] (fixed forces s[0:2])
    // as a decimal integer and returns the integer and the
    // remainder of the string.
    func getnum(s string, fixed bool) (int, string, error) {
    	if !isDigit(s, 0) {
    		return 0, s, errBad
    	}
    	if !isDigit(s, 1) {
    		if fixed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/image/draw/draw.go

    //
    // x and y are both assumed to be in the range [0, 0xffff].
    func sqDiff(x, y int32) uint32 {
    	// This is an optimized code relying on the overflow/wrap around
    	// properties of unsigned integers operations guaranteed by the language
    	// spec. See sqDiff from the image/color package for more details.
    	d := uint32(x - y)
    	return (d * d) >> 2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    				if delta < 0 && !underflow {
    					ft.update(parent, x, w, signed, r)
    				}
    			} else {
    				// With w,delta constants, we want to derive: x+delta > w  ⇒  x > w-delta
    				//
    				// We compute (using integers of the correct size):
    				//    min = w - delta
    				//    max = MaxInt - delta
    				//
    				// And we prove that:
    				//    if min<max: min < x AND x <= max
    				//    if min>max: min < x OR  x <= max
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/math/big/float.go

    func (x *Float) Signbit() bool {
    	return x.neg
    }
    
    // IsInf reports whether x is +Inf or -Inf.
    func (x *Float) IsInf() bool {
    	return x.form == inf
    }
    
    // IsInt reports whether x is an integer.
    // ±Inf values are not integers.
    func (x *Float) IsInt() bool {
    	if debugFloat {
    		x.validate()
    	}
    	// special cases
    	if x.form != finite {
    		return x.form == zero
    	}
    	// x.form == finite
    	if x.exp <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top