You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

singleAssignment.go 239 B

1234567891011
  1. package strategy
  2. type SingleAssignment struct {
  3. Cluster *AssignedCluster
  4. }
  5. func (s *SingleAssignment) Schedule() ([]*AssignedCluster, error) {
  6. var results []*AssignedCluster
  7. results = append(results, s.Cluster)
  8. return results, nil
  9. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.