Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Smallest (0.29 sec)

  1. src/math/big/float_test.go

    		{"0x0.0000011p-126", math.Float32frombits(0x00000001), Above}, // rounded up to smallest denormal
    		{"0x0.0000018p-126", math.Float32frombits(0x00000001), Above}, // rounded up to smallest denormal
    
    		{"0x1.0000000p-149", math.Float32frombits(0x00000001), Exact}, // smallest denormal
    		{"0x0.0000020p-126", math.Float32frombits(0x00000001), Exact}, // smallest denormal
    		{"0x0.fffffe0p-126", math.Float32frombits(0x007fffff), Exact}, // largest denormal
    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. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// should be delivered to the watcher can be created before it will
    	// block the implementation and as a result force the watcher to be
    	// closed (as otherwise events would have to be dropped).
    	// For now, this number is smallest for Cacher and it equals 21 for it.
    	totalPods := 21
    	for i := 0; i < totalPods; i++ {
    		out := &example.Pod{}
    		pod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    // first and subsequent calls for a block.  For the first call, the
    // starting state is approximated by taking the state from the
    // predecessor whose state is smallest, and removing any elements not
    // in all the other predecessors; this makes the smallest number of
    // changes and shares the most state.  On subsequent calls the old
    // value of startState is adjusted with new information; this is judged
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  []string{"Normal FailedBinding"},
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim binds claims to the smallest matching volume
    			name: "1-4 - smallest volume",
    			initialVolumes: []*v1.PersistentVolume{
    				newVolume("volume1-4_1", "10Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	// 2, 3, and 4 are all plausible maximums depending
    	// on the hardware details of the machine. The garbage
    	// collector scales well to 32 cpus.
    	_MaxGcproc = 32
    
    	// minLegalPointer is the smallest possible legal pointer.
    	// This is the smallest possible architectural page size,
    	// since we assume that the first page is never mapped.
    	//
    	// This should agree with minZeroPage in the compiler.
    	minLegalPointer uintptr = 4096
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/math/all_test.go

    }
    var erfcinvSC = []float64{
    	Inf(+1),
    	Inf(-1),
    	0,
    	NaN(),
    	NaN(),
    	NaN(),
    }
    
    var vfexpSC = []float64{
    	Inf(-1),
    	-2000,
    	2000,
    	Inf(1),
    	NaN(),
    	// smallest float64 that overflows Exp(x)
    	7.097827128933841e+02,
    	// Issue 18912
    	1.48852223e+09,
    	1.4885222e+09,
    	1,
    	// near zero
    	3.725290298461915e-09,
    	// denormal
    	-740,
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    // 3. Apply the constraints period (i.e. add no more than 4 pods per minute)
    // 4. Apply the stabilization (i.e. add no more than 4 pods per minute, and pick the smallest recommendation during last 5 minutes)
    func (a *HorizontalController) normalizeDesiredReplicasWithBehaviors(hpa *autoscalingv2.HorizontalPodAutoscaler, key string, currentReplicas, prenormalizedDesiredReplicas, minReplicas int32) int32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

        HashSet<E> set = newHashSet();
        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	if p == nil {
    		return
    	}
    
    	liveInfo := funcdata(f, abi.FUNCDATA_ArgLiveInfo)
    	liveIdx := pcdatavalue(f, abi.PCDATA_ArgLiveIndex, pc)
    	startOffset := uint8(0xff) // smallest offset that needs liveness info (slots with a lower offset is always live)
    	if liveInfo != nil {
    		startOffset = *(*uint8)(liveInfo)
    	}
    
    	isLive := func(off, slotIdx uint8) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

       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
    build the `tag` of the summary values:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top