in 0.5.0-incubating/hive/scaladocs/lib/scheduler.js [64:70]
this.clear = function(labelName) {
var idx = 0;
while (idx < scheduler.labels.length && scheduler.labels[idx].name != labelName) { idx = idx + 1; }
if (idx < scheduler.queues.length && scheduler.labels[idx].name == labelName) {
scheduler.queues[idx] = new Array();
}
}