Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ParallelizeUntil (0.11 sec)

  1. pkg/scheduler/framework/parallelize/parallelism.go

    	s := int(math.Sqrt(float64(n)))
    
    	if r := n/parallelism + 1; s > r {
    		s = r
    	} else if s < 1 {
    		s = 1
    	}
    	return s
    }
    
    // Until is a wrapper around workqueue.ParallelizeUntil to use in scheduling algorithms.
    // A given operation will be a label that is recorded in the goroutine metric.
    func (p Parallelizer) Until(ctx context.Context, pieces int, doWorkPiece workqueue.DoWorkPieceFunc, operation string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:12:30 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top