| /openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
| H A D | toasterui.py | 332 …if isinstance(event, (bb.runqueue.sceneQueueTaskStarted, bb.runqueue.runQueueTaskStarted, bb.runqu… 336 if isinstance(event, bb.runqueue.runQueueTaskCompleted): 340 if isinstance(event, bb.runqueue.runQueueTaskFailed): 346 … if isinstance(event, (bb.runqueue.sceneQueueTaskCompleted, bb.runqueue.sceneQueueTaskFailed)):
|
| H A D | uihelper.py | 52 …elif isinstance(event, bb.runqueue.runQueueTaskStarted) or isinstance(event, bb.runqueue.sceneQueu…
|
| H A D | teamcity.py | 33 import bb.runqueue 344 if isinstance(event, bb.runqueue.sceneQueueTaskStarted): 351 if isinstance(event, bb.runqueue.runQueueTaskStarted): 361 if isinstance(event, bb.runqueue.sceneQueueTaskFailed): 364 if isinstance(event, bb.runqueue.runQueueTaskFailed):
|
| H A D | knotty.py | 31 import bb.runqueue 699 if isinstance(event, bb.runqueue.runQueueExitWait): 827 if isinstance(event, bb.runqueue.sceneQueueTaskStarted): 831 if isinstance(event, bb.runqueue.runQueueTaskStarted): 843 if isinstance(event, bb.runqueue.runQueueTaskFailed): 849 if isinstance(event, bb.runqueue.sceneQueueTaskFailed): 886 bb.runqueue.runQueueEvent,
|
| H A D | buildinfohelper.py | 1202 …assert isinstance(event, (bb.runqueue.sceneQueueTaskStarted, bb.runqueue.runQueueTaskStarted, bb.r… 1215 if isinstance(event, bb.runqueue.runQueueTaskSkipped): 1230 if not isinstance(event, bb.runqueue.sceneQueueTaskStarted): 1293 … if isinstance(event, (bb.runqueue.runQueueTaskCompleted, bb.runqueue.sceneQueueTaskCompleted)): 1297 … if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runqueue.sceneQueueTaskFailed)):
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | sstatesig.py | 7 import bb.runqueue 31 depmc, _, deptaskname, depmcfn = bb.runqueue.split_tid_mcfn(dep) 32 mc, _ = bb.runqueue.split_mc(fn) 171 (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) 182 (depmc, _, _, depfn) = bb.runqueue.split_tid_mcfn(dep) 187 depnames = [ recipename_from_dep(x) for x in deps if mc == bb.runqueue.mc_from_tid(x)] 222 (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) 248 (_, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) 265 … sortedtid = sorted(types[t], key=lambda tid: self.lockedpnmap[bb.runqueue.fn_from_tid(tid)]) 267 (_, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) [all …]
|
| /openbmc/openbmc/poky/documentation/migration-guides/ |
| H A D | release-notes-4.0.15.rst | 35 - bitbake: runqueue.py: fix PSI check logic 36 - bitbake: runqueue: Add pressure change logging 37 - bitbake: runqueue: convert deferral messages from bb.note to bb.debug 38 - bitbake: runqueue: fix PSI check calculation 39 - bitbake: runqueue: show more pressure data 40 - bitbake: runqueue: show number of currently running bitbake threads when pressure changes
|
| H A D | release-notes-5.0.2.rst | 38 - bitbake: runqueue: Add timing warnings around slow loops 39 - bitbake: runqueue: Allow rehash loop to exit in case of interrupts 40 - bitbake: runqueue: Improve rehash get_unihash parallelism 41 - bitbake: runqueue: Process unihashes in parallel at init 42 - bitbake: siggen/runqueue: Report which dependencies affect the taskhash
|
| H A D | release-notes-4.0.5.rst | 25 - bitbake: runqueue: Drop deadlock breaking force fail 26 - bitbake: runqueue: Ensure deferred tasks are sorted by multiconfig 27 - bitbake: runqueue: Improve deadlock warning messages
|
| H A D | release-notes-5.0.6.rst | 36 - bitbake: runqueue: Fix performance of multiconfigs with large overlap 37 - bitbake: runqueue: Fix scenetask processing performance issue 38 - bitbake: runqueue: Optimise setscene loop processing
|
| H A D | release-notes-4.0.4.rst | 41 - bitbake: bitbake: runqueue: add cpu/io pressure regulation 42 - bitbake: bitbake: runqueue: add memory pressure regulation 49 - bitbake: runqueue: Change pressure file warning to a note 50 - bitbake: runqueue: Fix unihash cache mismatch issues
|
| H A D | release-notes-3.4.1.rst | 42 - bitbake: runqueue: Fix runall option handling 43 - bitbake: runqueue: Fix runall option task deletion ordering issue 49 - bitbake: tests/runqueue: Ensure hashserv exits before deleting files
|
| H A D | release-notes-5.1.2.rst | 150 - bitbake: runqueue: Fix performance of multiconfigs with large overlap 151 - bitbake: runqueue: Fix scenetask processing performance issue 152 - bitbake: runqueue: Optimise setscene loop processing
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | siggen.py | 21 from bb import runqueue 138 mc = bb.runqueue.mc_from_tid(mcfn) 142 mc = bb.runqueue.mc_from_tid(mcfn) 160 mc = bb.runqueue.mc_from_tid(mcfn) 179 mc = bb.runqueue.mc_from_tid(mcfn) 306 mc = bb.runqueue.mc_from_tid(mcfn) 335 (mc, _, task, mcfn) = bb.runqueue.split_tid_mcfn(tid) 345 (depmc, _, deptask, depmcfn) = bb.runqueue.split_tid_mcfn(dep) 420 mc = bb.runqueue.mc_from_tid(mcfn) 521 mc = bb.runqueue.mc_from_tid(mcfn) [all …]
|
| H A D | cooker.py | 21 from bb import utils, data, parse, event, cache, providers, taskdata, runqueue, build 714 rq = bb.runqueue.RunQueue(self, self.data, self.recipecaches, taskdata, runlist) 746 (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid) 768 dotname = "%s.%s" % (pn, bb.runqueue.taskname_from_tid(tid)) 772 (depmc, depfn, _, deptaskfn) = bb.runqueue.split_tid_mcfn(dep) 776 …depend_tree["tdepends"][dotname].append("%s%s.%s" % (depmc, deppn, bb.runqueue.taskname_from_tid(d… 844 (mc, fn, taskname, taskfn) = bb.runqueue.split_tid_mcfn(tid) 1387 rqloglevel = bb.runqueue.logger.getEffectiveLevel() 1388 bb.runqueue.logger.setLevel(logging.WARNING) 1400 rq = bb.runqueue.RunQueue(self, self.data, self.recipecaches, taskdata, runlist) [all …]
|
| H A D | command.py | 485 (mc, pn) = bb.runqueue.split_mc(params[0]) 800 (mc, pn) = bb.runqueue.split_mc(params[0])
|
| H A D | runqueue.py | 144 def __init__(self, runqueue, rqdata): argument 149 self.rq = runqueue 330 def __init__(self, runqueue, rqdata): argument 334 RunQueueScheduler.__init__(self, runqueue, rqdata) 361 def __init__(self, runqueue, rqdata): argument 362 super(RunQueueSchedulerCompletion, self).__init__(runqueue, rqdata) 1647 raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) 1660 except bb.runqueue.TaskFailure:
|
| /openbmc/openbmc/poky/ |
| H A D | .gitignore | 34 bitbake/lib/bb/tests/runqueue-tests/bitbake-cookerdaemon.log
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/libubox/libubox/ |
| H A D | 0001-version-libraries.patch | 8 …sg.c uloop.c usock.c ustream.c ustream-fd.c vlist.c utils.c safe_list.c runqueue.c md5.c kvlist.c …
|
| /openbmc/openbmc/poky/meta/classes-global/ |
| H A D | buildstats.bbclass | 283 from bb import event, runqueue 291 …if not system_stats and isinstance(e, (bb.runqueue.sceneQueueTaskStarted, bb.runqueue.runQueueTask… 305 runqueue_stats[eventmask] = "bb.runqueue.sceneQueueTaskStarted bb.runqueue.runQueueTaskStarted bb.e…
|
| H A D | sstate.bbclass | 956 tname = bb.runqueue.taskname_from_tid(task)[3:] 1075 …evdata['missed'].append((bb.runqueue.fn_from_tid(tid), bb.runqueue.taskname_from_tid(tid), gethash… 1078 …evdata['found'].append((bb.runqueue.fn_from_tid(tid), bb.runqueue.taskname_from_tid(tid), gethash(… 1347 taskname = bb.runqueue.taskname_from_tid(tid)[3:]
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | oe-check-sstate | 35 (mc, fn, taskname) = bb.runqueue.split_tid(task)
|
| /openbmc/openbmc/poky/bitbake/ |
| H A D | ChangeLog | 45 - Fix int(0)/None confusion in runqueue.py which causes random gaps in dependency chains 52 - runqueue.py: Fix idepends handling to avoid dependency errors 85 - Improve runqueue code comments 95 - Make taskdata and runqueue errors more user friendly 110 - Convert -b option to use taskdata/runqueue 136 - Add bb.runqueue.check_stamp_fn() for use by packaged-staging 187 of tasks. Code from bin/bitbake replaced with runqueue.py
|
| /openbmc/openbmc/poky/bitbake/lib/bb/tests/runqueue-tests/classes/ |
| H A D | base.bbclass | 239 …n = os.path.basename(bb.runqueue.fn_from_tid(tid)).split(".")[0] + ":do_" + bb.runqueue.taskname_f…
|
| /openbmc/openbmc/poky/meta/classes/ |
| H A D | toaster.bbclass | 375 toaster_artifacts[eventmask] = "bb.runqueue.runQueueTaskSkipped bb.runqueue.runQueueTaskCompleted"
|