Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for BarTest (0.14 sec)

  1. src/math/big/float_test.go

    		{"0x.0000020p-126", math.SmallestNonzeroFloat32, Exact},
    		{"0x.8p-148", math.SmallestNonzeroFloat32, Exact},
    		{"1p-149", math.SmallestNonzeroFloat32, Exact},
    		{"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
    
    		// special denormal cases (see issues 14553, 14651)
    		{"0x0.0000001p-126", math.Float32frombits(0x00000000), Below}, // underflow to zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. src/time/time.go

    func (t Time) YearDay() int {
    	_, _, _, yday := t.date(false)
    	return yday + 1
    }
    
    // A Duration represents the elapsed time between two instants
    // as an int64 nanosecond count. The representation limits the
    // largest representable duration to approximately 290 years.
    type Duration int64
    
    const (
    	minDuration Duration = -1 << 63
    	maxDuration Duration = 1<<63 - 1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/time/time_test.go

    	{"-9223372036854775.808us", -1 << 63 * Nanosecond},
    	{"-9223372036s854ms775us808ns", -1 << 63 * Nanosecond},
    	// largest negative value
    	{"-9223372036854775808ns", -1 << 63 * Nanosecond},
    	// largest negative round trip value, see https://golang.org/issue/48629
    	{"-2562047h47m16.854775808s", -1 << 63 * Nanosecond},
    	// huge string; issue 15011.
    	{"0.100000000000000000000h", 6 * Minute},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    )
    
    const (
    	// StaticEstimatedCostLimit represents the largest-allowed static CEL cost on a per-expression basis.
    	StaticEstimatedCostLimit = 10000000
    	// StaticEstimatedCRDCostLimit represents the largest-allowed total cost for the x-kubernetes-validations rules of a CRD.
    	StaticEstimatedCRDCostLimit = 100000000
    
    	MaxSelectableFields = 8
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		//	STXVD2X VS33,(R31)(R20)
    		//	ADD $32,R20
    		//	BC 16,0,top
    		// Bytes not moved by this loop are moved
    		// with a combination of the following instructions,
    		// starting with the largest sizes and generating as
    		// many as needed, using the appropriate offset value.
    		//	MOVD  n(R21),R31
    		//	MOVD  R31,n(R20)
    		//	MOVW  n1(R21),R31
    		//	MOVW  R31,n1(R20)
    		//	MOVH  n2(R21),R31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    normalization algorithms:
    
    *  If the input values are all positive, they are rescaled so the largest one
       is 255.
    
    *  If any input value is negative, the values are shifted so input value 0.0
       is at 127.  They are then rescaled so that either the smallest value is 0,
       or the largest one is 255.
    
    The `tag` argument is a scalar `Tensor` of type `string`.  It is used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	// the crossover between the largest size class and large objects that have
    	// their own spans. The small window of object sizes between maxSmallSize-mallocHeaderSize
    	// and maxSmallSize will be considered large, even though they might fit in
    	// a size class. In practice this is completely fine, since the largest small
    	// size class has a single object in it already, precisely to make the transition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	justify-content: space-between;
    	max-width: 75rem;
    	margin-left: auto;
    	margin-right: auto;
    	font-size: 0.875rem;
    	padding: 0.5rem 0.75rem;
    }
    
    /*
     * 1. Value is the largest computed width among 'site-footer__copy' and 'site-footer__links'.
     */
    .site-footer__copy,
    .site-footer__secondary-links {
    	flex-grow: 0;
    	flex-basis: 280px;
    	/* 1. */
    }
    
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "$0.cast<DenseElementsAttr>().getNumElements() == 1 && "
      "std::abs(*$0.cast<DenseElementsAttr>().getValues<float>().begin()) < "
      # n>>;
    
    // Constraint that the attribute value is negative infinity or negative largest.
    // We use both -inf & flt_min due to the forward compatibility.
    def ConstAPFloatNegLargestOrNegInfinity : Constraint<CPred<
      "$0.isa<DenseElementsAttr>() && "
      "$0.cast<DenseElementsAttr>().getNumElements() == 1 && "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. src/time/format.go

    		}
    		v *= unit
    		if f > 0 {
    			// float64 is needed to be nanosecond accurate for fractions of hours.
    			// v >= 0 && (f*unit/scale) <= 3.6e+12 (ns/h, h is the largest unit)
    			v += uint64(float64(f) * (float64(unit) / scale))
    			if v > 1<<63 {
    				// overflow
    				return 0, errors.New("time: invalid duration " + quote(orig))
    			}
    		}
    		d += v
    		if d > 1<<63 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top