@@ -722,7 +722,7 @@ func (p *policy) compareScores(request Request, pools []Node, scores map[int]Sco
722722 // * more isolated capacity wins
723723 // * for a tie, prefer the smaller id
724724 // - for (non-reserved) exclusive allocations
725- // * more slicable (shared) capacity wins
725+ // * more sliceable (shared) capacity wins
726726 // * for a tie, prefer the smaller id
727727 // - for (non-reserved) shared-only allocations
728728 // * fewer colocated containers win
@@ -1043,18 +1043,18 @@ func (p *policy) compareScores(request Request, pools []Node, scores map[int]Sco
10431043 }
10441044 }
10451045
1046- // more slicable shared capacity wins
1046+ // more sliceable shared capacity wins
10471047 if request .FullCPUs () > 0 && (shared1 > 0 || shared2 > 0 ) {
10481048 if shared1 > shared2 {
1049- log .Debug (" => %s WINS on more slicable capacity" , node1 .Name ())
1049+ log .Debug (" => %s WINS on more sliceable capacity" , node1 .Name ())
10501050 return true
10511051 }
10521052 if shared2 > shared1 {
1053- log .Debug (" => %s WINS on more slicable capacity" , node2 .Name ())
1053+ log .Debug (" => %s WINS on more sliceable capacity" , node2 .Name ())
10541054 return false
10551055 }
10561056
1057- log .Debug (" => %s WINS based on equal slicable capacity, lower id" ,
1057+ log .Debug (" => %s WINS based on equal sliceable capacity, lower id" ,
10581058 map [bool ]string {true : node1 .Name (), false : node2 .Name ()}[id1 < id2 ])
10591059
10601060 return id1 < id2
0 commit comments