Help for this page

Select Code to Download


  1. or download this
    sub by_cpu {
        no warnings 'numeric';
    ...
    }
    for my $tc (sort by_cpu keys %$passes) {
        # ...
    
  2. or download this
    my @dashed;
    my @sorted = sort { $passes->{$a}{cpu} <=> $passes->{$b}{cpu} }
    ...
                 } keys %$passes;
    for my $tc (@dashed, @sorted) {
        # ...