Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
8dac9639
Commit
8dac9639
authored
Jun 29, 2017
by
ymqytw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
split util/slice
parent
5eccc7ae
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
103 additions
and
23 deletions
+103
-23
.linted_packages
hack/.linted_packages
+1
-0
BUILD
pkg/kubectl/BUILD
+1
-1
history.go
pkg/kubectl/history.go
+1
-1
rollback.go
pkg/kubectl/rollback.go
+1
-1
BUILD
pkg/kubectl/util/BUILD
+1
-0
BUILD
pkg/kubectl/util/slice/BUILD
+35
-0
slice.go
pkg/kubectl/util/slice/slice.go
+32
-0
slice_test.go
pkg/kubectl/util/slice/slice_test.go
+31
-0
slice.go
pkg/util/slice/slice.go
+0
-11
slice_test.go
pkg/util/slice/slice_test.go
+0
-9
No files found.
hack/.linted_packages
View file @
8dac9639
...
...
@@ -278,6 +278,7 @@ pkg/util/rand
pkg/util/runtime
pkg/util/sets
pkg/util/sets/types
pkg/util/slice
pkg/util/tail
pkg/util/validation
pkg/util/validation/field
...
...
pkg/kubectl/BUILD
View file @
8dac9639
...
...
@@ -143,9 +143,9 @@ go_library(
"//pkg/credentialprovider:go_default_library",
"//pkg/kubectl/resource:go_default_library",
"//pkg/kubectl/util:go_default_library",
"//pkg/kubectl/util/slice:go_default_library",
"//pkg/printers:go_default_library",
"//pkg/printers/internalversion:go_default_library",
"//pkg/util/slice:go_default_library",
"//vendor/github.com/emicklei/go-restful-swagger12:go_default_library",
"//vendor/github.com/golang/glog:go_default_library",
"//vendor/github.com/spf13/cobra:go_default_library",
...
...
pkg/kubectl/history.go
View file @
8dac9639
...
...
@@ -39,8 +39,8 @@ import (
clientset
"k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
"k8s.io/kubernetes/pkg/controller"
deploymentutil
"k8s.io/kubernetes/pkg/controller/deployment/util"
sliceutil
"k8s.io/kubernetes/pkg/kubectl/util/slice"
printersinternal
"k8s.io/kubernetes/pkg/printers/internalversion"
sliceutil
"k8s.io/kubernetes/pkg/util/slice"
)
const
(
...
...
pkg/kubectl/rollback.go
View file @
8dac9639
...
...
@@ -39,8 +39,8 @@ import (
clientset
"k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
"k8s.io/kubernetes/pkg/controller/daemon"
deploymentutil
"k8s.io/kubernetes/pkg/controller/deployment/util"
sliceutil
"k8s.io/kubernetes/pkg/kubectl/util/slice"
printersinternal
"k8s.io/kubernetes/pkg/printers/internalversion"
sliceutil
"k8s.io/kubernetes/pkg/util/slice"
)
const
(
...
...
pkg/kubectl/util/BUILD
View file @
8dac9639
...
...
@@ -31,6 +31,7 @@ filegroup(
srcs = [
":package-srcs",
"//pkg/kubectl/util/crlf:all-srcs",
"//pkg/kubectl/util/slice:all-srcs",
"//pkg/kubectl/util/term:all-srcs",
],
tags = ["automanaged"],
...
...
pkg/kubectl/util/slice/BUILD
0 → 100644
View file @
8dac9639
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
name = "go_default_library",
srcs = ["slice.go"],
tags = ["automanaged"],
)
go_test(
name = "go_default_test",
srcs = ["slice_test.go"],
library = ":go_default_library",
tags = ["automanaged"],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)
pkg/kubectl/util/slice/slice.go
0 → 100644
View file @
8dac9639
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
slice
import
(
"sort"
)
// Int64Slice attaches the methods of Interface to []int64,
// sorting in increasing order.
type
Int64Slice
[]
int64
func
(
p
Int64Slice
)
Len
()
int
{
return
len
(
p
)
}
func
(
p
Int64Slice
)
Less
(
i
,
j
int
)
bool
{
return
p
[
i
]
<
p
[
j
]
}
func
(
p
Int64Slice
)
Swap
(
i
,
j
int
)
{
p
[
i
],
p
[
j
]
=
p
[
j
],
p
[
i
]
}
// Sorts []int64 in increasing order
func
SortInts64
(
a
[]
int64
)
{
sort
.
Sort
(
Int64Slice
(
a
))
}
pkg/kubectl/util/slice/slice_test.go
0 → 100644
View file @
8dac9639
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
slice
import
(
"reflect"
"testing"
)
func
TestSortInts64
(
t
*
testing
.
T
)
{
src
:=
[]
int64
{
10
,
1
,
2
,
3
,
4
,
5
,
6
}
expected
:=
[]
int64
{
1
,
2
,
3
,
4
,
5
,
6
,
10
}
SortInts64
(
src
)
if
!
reflect
.
DeepEqual
(
src
,
expected
)
{
t
.
Errorf
(
"func Ints64 didnt sort correctly, %v !- %v"
,
src
,
expected
)
}
}
pkg/util/slice/slice.go
View file @
8dac9639
...
...
@@ -68,14 +68,3 @@ func ContainsString(slice []string, s string, modifier func(s string) string) bo
}
return
false
}
// Int64Slice attaches the methods of Interface to []int64,
// sorting in increasing order.
type
Int64Slice
[]
int64
func
(
p
Int64Slice
)
Len
()
int
{
return
len
(
p
)
}
func
(
p
Int64Slice
)
Less
(
i
,
j
int
)
bool
{
return
p
[
i
]
<
p
[
j
]
}
func
(
p
Int64Slice
)
Swap
(
i
,
j
int
)
{
p
[
i
],
p
[
j
]
=
p
[
j
],
p
[
i
]
}
// Sorts []int64 in increasing order
func
SortInts64
(
a
[]
int64
)
{
sort
.
Sort
(
Int64Slice
(
a
))
}
pkg/util/slice/slice_test.go
View file @
8dac9639
...
...
@@ -89,12 +89,3 @@ func TestShuffleStrings(t *testing.T) {
}
}
}
func
TestSortInts64
(
t
*
testing
.
T
)
{
src
:=
[]
int64
{
10
,
1
,
2
,
3
,
4
,
5
,
6
}
expected
:=
[]
int64
{
1
,
2
,
3
,
4
,
5
,
6
,
10
}
SortInts64
(
src
)
if
!
reflect
.
DeepEqual
(
src
,
expected
)
{
t
.
Errorf
(
"func Ints64 didnt sort correctly, %v !- %v"
,
src
,
expected
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment