Searched refs:stage_weights (Results 1 – 3 of 3) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | progress.py | 153 def __init__(self, d, stage_weights, debug=False): argument 170 total = sum(stage_weights) 171 self._stage_weights = [float(x)/total for x in stage_weights] 252 stage_weights = [int(math.ceil(x / mintime)) for x in self._stage_times] 253 bb.warn('Stage weights: %s' % stage_weights) 255 for stage_weight, caller in zip(stage_weights, self._callers): 268 def __init__(self, d, processname, stage_weights, debug=False): argument 271 super().__init__(d, stage_weights, debug)
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | git.py | 108 stage_weights = [0.2, 0.05, 0.5, 0.25] 118 …progress = int(round((int(percs[-1]) * stage_weights[stagenum]) + (sum(stage_weights[:stagenum]) *…
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | image.bbclass | 227 stage_weights = [1, 203, 354, 186, 65, 4228, 1, 353, 49, 330, 382, 23, 1] 228 progress_reporter = bb.progress.MultiStageProgressReporter(d, stage_weights)
|