Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for avevate (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		}
    
    		if gotFair != expectFair {
    			uss.t.Errorf("%s client %d last=%v expectFair=%v margin=%v got an Average of %v but the expected average was %v", uss.name, i, last, expectFair, margin, averages[i], expectedAverage)
    		} else {
    			uss.t.Logf("%s client %d last=%v expectFair=%v margin=%v got an Average of %v and the expected average was %v", uss.name, i, last, expectFair, margin, averages[i], expectedAverage)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	if target.AverageUtilization == nil {
    		errMsg := "invalid resource metric source: neither an average utilization target nor an average value (usage) target was set"
    		return 0, nil, time.Time{}, "", condition, fmt.Errorf(errMsg)
    	}
    
    	targetUtilization := *target.AverageUtilization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    }
    
    var blockprofilerate uint64 // in CPU ticks
    
    // SetBlockProfileRate controls the fraction of goroutine blocking events
    // that are reported in the blocking profile. The profiler aims to sample
    // an average of one blocking event per rate nanoseconds spent blocked.
    //
    // To include every blocking event in the profile, pass rate = 1.
    // To turn off profiling entirely, pass rate <= 0.
    func SetBlockProfileRate(rate int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    This is the first output from tf.nn.moments,
    or a saved moving average thereof.}]>:$m,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	}
    }
    
    // blockFrequentShort produces 100000 block events with an average duration of
    // rate / 10.
    func blockFrequentShort(rate int) {
    	for i := 0; i < 100000; i++ {
    		blockevent(int64(rate/10), 1)
    	}
    }
    
    // blockFrequentShort produces 10000 block events with an average duration of
    // rate.
    func blockInfrequentLong(rate int) {
    	for i := 0; i < 10000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	// half (a quarter overall) will be SLLS; an eighth will be SLLLS, and so on.
    	// Not counting the final S in each (which overlaps the first S in the next),
    	// This works out to an average length 2×½ + 3×¼ + 4×⅛ + ... = 3.
    	// The space we need is further reduced by the fact that many of the
    	// short patterns like SLS will often be the same character sequences
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	}
    	c.nextSample = nextSample()
    	mProf_Malloc(mp, x, size)
    }
    
    // nextSample returns the next sampling point for heap profiling. The goal is
    // to sample allocations on average every MemProfileRate bytes, but with a
    // completely random distribution over the allocation timeline; this
    // corresponds to a Poisson process with parameter MemProfileRate. In Poisson
    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. src/runtime/map.go

    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    	// Maximum number of key/elem pairs a bucket can hold.
    	bucketCntBits = abi.MapBucketCountBits
    
    	// Maximum average load of a bucket that triggers growth is bucketCnt*13/16 (about 80% full)
    	// Because of minimum alignment rules, bucketCnt is known to be at least 8.
    	// Represent as loadFactorNum/loadFactorDen, to allow integer math.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top