formatted code
This commit is contained in:
parent
435c4ca1bc
commit
b58ffdbdd6
2 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ type SchedWindowResizingStrategy interface {
|
||||||
|
|
||||||
// Scheduling window resizing strategy that attempts to resize the scheduling window
|
// Scheduling window resizing strategy that attempts to resize the scheduling window
|
||||||
// to include as many tasks as possible so as to make the most use of the next offer cycle.
|
// to include as many tasks as possible so as to make the most use of the next offer cycle.
|
||||||
type fillNextOfferCycle struct {}
|
type fillNextOfferCycle struct{}
|
||||||
|
|
||||||
func (s *fillNextOfferCycle) Apply(getArgs func() interface{}) int {
|
func (s *fillNextOfferCycle) Apply(getArgs func() interface{}) int {
|
||||||
return s.apply(getArgs().([]def.Task))
|
return s.apply(getArgs().([]def.Task))
|
||||||
|
|
Reference in a new issue