Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Tolerance (0.27 sec)

  1. docs/metrics/prometheus/minio-es-tolerance-alert.png

    minio-es-tolerance-alert.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Nov 19 18:16:08 UTC 2023
    - 79.8K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator_test.go

    	// i.e. .60 * 20 -> scaled down expectation.
    	finalPods := int32(math.Ceil(resourcesUsedRatio * float64(startPods)))
    
    	// To breach tolerance we will create a utilization ratio difference of tolerance to usageRatioToleranceValue)
    	tc := replicaCalcTestCase{
    		currentReplicas:  startPods,
    		expectedReplicas: finalPods,
    		resource: &resourceInfo{
    			name: v1.ResourceCPU,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  3. src/math/all_test.go

    	// make error tolerance a fraction of b, not a.
    	if b != 0 {
    		e = e * b
    		if e < 0 {
    			e = -e
    		}
    	}
    	return d < e
    }
    func close(a, b float64) bool      { return tolerance(a, b, 1e-14) }
    func veryclose(a, b float64) bool  { return tolerance(a, b, 4e-16) }
    func soclose(a, b, e float64) bool { return tolerance(a, b, e) }
    func alike(a, b float64) bool {
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    	hpaInformer autoscalinginformers.HorizontalPodAutoscalerInformer,
    	podInformer coreinformers.PodInformer,
    	resyncPeriod time.Duration,
    	downscaleStabilisationWindow time.Duration,
    	tolerance float64,
    	cpuInitializationPeriod,
    	delayOfInitialReadinessStatus time.Duration,
    ) *HorizontalController {
    	broadcaster := record.NewBroadcaster(record.WithContext(ctx))
    	broadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    	}
    
    	lbrack := p.expect(token.LBRACK)
    	if p.tok == token.RBRACK {
    		// empty index, slice or index expressions are not permitted;
    		// accept them for parsing tolerance, but complain
    		p.errorExpected(p.pos, "operand")
    		rbrack := p.pos
    		p.next()
    		return &ast.IndexExpr{
    			X:      x,
    			Lbrack: lbrack,
    			Index:  &ast.BadExpr{From: rbrack, To: rbrack},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	f.PkgName = p.name()
    	p.want(_Semi)
    
    	// don't bother continuing if package clause has errors
    	if p.first != nil {
    		return nil
    	}
    
    	// Accept import declarations anywhere for error tolerance, but complain.
    	// { ( ImportDecl | TopLevelDecl ) ";" }
    	prev := _Import
    	for p.tok != _EOF {
    		if p.tok == _Import && prev != _Import {
    			p.syntaxError("imports must appear before other declarations")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top