本文整理汇总了Golang中github.com/cloudfoundry-incubator/auction/auctiontypes.TaskAuction.Copy方法的典型用法代码示例。如果您正苦于以下问题:Golang TaskAuction.Copy方法的具体用法?Golang TaskAuction.Copy怎么用?Golang TaskAuction.Copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/auction/auctiontypes.TaskAuction
的用法示例。
在下文中一共展示了TaskAuction.Copy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: scheduleTaskAuction
func (s *Scheduler) scheduleTaskAuction(taskAuction *auctiontypes.TaskAuction, startingContainerWeight float64) (*auctiontypes.TaskAuction, error) {
var winnerCell *Cell
winnerScore := 1e20
filteredZones := []Zone{}
for _, zone := range s.zones {
cells := zone.FilterCells(taskAuction.RootFs)
if len(cells) > 0 {
filteredZones = append(filteredZones, Zone(cells))
}
}
if len(filteredZones) == 0 {
return nil, auctiontypes.ErrorCellMismatch
}
for _, zone := range filteredZones {
for _, cell := range zone {
score, err := cell.ScoreForTask(&taskAuction.Task, startingContainerWeight)
if err != nil {
continue
}
if score < winnerScore {
winnerScore = score
winnerCell = cell
}
}
}
if winnerCell == nil {
return nil, rep.ErrorInsufficientResources
}
err := winnerCell.ReserveTask(&taskAuction.Task)
if err != nil {
s.logger.Error("task-failed-to-reserve-cell", err, lager.Data{"cell-guid": winnerCell.Guid, "task-guid": taskAuction.Identifier()})
return nil, err
}
winningAuction := taskAuction.Copy()
winningAuction.Winner = winnerCell.Guid
return &winningAuction, nil
}