Skip to content

Commit

Permalink
Merge pull request #1445 from kubernetes/vendor-1.8
Browse files Browse the repository at this point in the history
Updated godeps
  • Loading branch information
nicksardo authored Sep 29, 2017
2 parents c78b2b8 + ebfaf19 commit cbfb619
Show file tree
Hide file tree
Showing 1,115 changed files with 176,685 additions and 278,575 deletions.
1,021 changes: 450 additions & 571 deletions Godeps/Godeps.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions controllers/gce/controller/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -668,10 +668,10 @@ func (o PodsByCreationTimestamp) Len() int { return len(o) }
func (o PodsByCreationTimestamp) Swap(i, j int) { o[i], o[j] = o[j], o[i] }

func (o PodsByCreationTimestamp) Less(i, j int) bool {
if o[i].CreationTimestamp.Equal(o[j].CreationTimestamp) {
if o[i].CreationTimestamp.Equal(&o[j].CreationTimestamp) {
return o[i].Name < o[j].Name
}
return o[i].CreationTimestamp.Before(o[j].CreationTimestamp)
return o[i].CreationTimestamp.Before(&o[j].CreationTimestamp)
}

// setInstanceGroupsAnnotation sets the instance-groups annotation with names of the given instance groups.
Expand Down
54 changes: 54 additions & 0 deletions vendor/github.com/docker/distribution/AUTHORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions vendor/github.com/docker/distribution/reference/helpers.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cbfb619

Please sign in to comment.