Runing goimports on project as well as fixing README so that headers render correctly.
This commit is contained in:
parent
b341c0a0e4
commit
9554bf2666
22 changed files with 90 additions and 71 deletions
utilities
|
@ -1,10 +1,11 @@
|
|||
package offerUtils
|
||||
|
||||
import (
|
||||
"gitlab.com/spdf/elektron/constants"
|
||||
mesos "github.com/mesos/mesos-go/api/v0/mesosproto"
|
||||
"log"
|
||||
"strings"
|
||||
|
||||
mesos "github.com/mesos/mesos-go/api/v0/mesosproto"
|
||||
"gitlab.com/spdf/elektron/constants"
|
||||
)
|
||||
|
||||
func OfferAgg(offer *mesos.Offer) (float64, float64, float64) {
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
package schedUtils
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
||||
"gitlab.com/spdf/elektron/def"
|
||||
"gitlab.com/spdf/elektron/utilities"
|
||||
"log"
|
||||
)
|
||||
|
||||
// Criteria for resizing the scheduling window.
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
package utilities
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"sync"
|
||||
|
||||
mesos "github.com/mesos/mesos-go/api/v0/mesosproto"
|
||||
"gitlab.com/spdf/elektron/def"
|
||||
"gitlab.com/spdf/elektron/utilities/offerUtils"
|
||||
"errors"
|
||||
mesos "github.com/mesos/mesos-go/api/v0/mesosproto"
|
||||
"sync"
|
||||
)
|
||||
|
||||
type TrackResourceUsage struct {
|
||||
|
|
Reference in a new issue