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
bf137c38
Commit
bf137c38
authored
Jul 12, 2014
by
Kouhei Ueno
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove comments on Make.+()
parent
e268e4bb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
3 deletions
+0
-3
firstfit.go
pkg/scheduler/firstfit.go
+0
-1
random.go
pkg/scheduler/random.go
+0
-1
roundrobin.go
pkg/scheduler/roundrobin.go
+0
-1
No files found.
pkg/scheduler/firstfit.go
View file @
bf137c38
...
...
@@ -31,7 +31,6 @@ type FirstFitScheduler struct {
random
*
rand
.
Rand
}
// MakeFirstFitScheduler creates a new instance of FirstFitScheduler.
func
MakeFirstFitScheduler
(
podLister
PodLister
,
random
*
rand
.
Rand
)
Scheduler
{
return
&
FirstFitScheduler
{
podLister
:
podLister
,
...
...
pkg/scheduler/random.go
View file @
bf137c38
...
...
@@ -28,7 +28,6 @@ type RandomScheduler struct {
random
*
rand
.
Rand
}
// MakeRandomScheduler creates a new RandomScheduler instance.
func
MakeRandomScheduler
(
random
*
rand
.
Rand
)
Scheduler
{
return
&
RandomScheduler
{
random
:
random
,
...
...
pkg/scheduler/roundrobin.go
View file @
bf137c38
...
...
@@ -25,7 +25,6 @@ type RoundRobinScheduler struct {
currentIndex
int
}
// MakeRoundRobinScheduler creates a new RoundRobinScheduler instance.
func
MakeRoundRobinScheduler
()
Scheduler
{
return
&
RoundRobinScheduler
{
currentIndex
:
-
1
,
...
...
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