States
Languages
5,482 issues
Change all checks for empty strings
Change checks fro empty strings from: someString := "" if len(someString) == 0 { ... } to someString := "" if someString == "" { ... } to have a more idiomatic ...
-
AndreaM16/aws-sdk-go-bindings
Opened by AndreaM16
Oct 14, 2018 - 1 comment
CreateWorkers should handle mutex lock/unlock
-
kilgaloon/leprechaun
Opened by kilgaloon
Oct 14, 2018
Introduce extentions.incubator.k8s.io group
DESCRIPTION: -- symptom of the problem a customer would see Currently, every CRDs are under scheduling.incubator.k8s.io; some of them were discussed in upstream, e.g. PodGroup, some are not, e.g. Queue. ...
-
kubernetes-sigs/kube-batch
Opened by k82cn
Oct 14, 2018
Added benchmark of kube-batch
DESCRIPTION: -- symptom of the problem a customer would see After enabled pod affinity/anti-affinity at https://github.com/kubernetes-sigs/kube-batch/pull/418 , we need to know the impact to the kube-batch ...
-
kubernetes-sigs/kube-batch
Opened by k82cn
Oct 14, 2018
Standardize params.Config in Beacon-Chain and Validator Projects
Hi all, We currently have two different ways of getting configuration params in both projects, the beacon chain uses params.GetConfig() while the validator uses params.DemoConfig() or params.DefaultConfig(). ...
-
prysmaticlabs/prysm
Opened by rauljordan
Oct 14, 2018
support-scheduler needs get info on all schedules
Scheduler has a /info/:name API endpoint, but lacks a general "GET" call. It needs a /info API to get all schedules (and therefore know what schedules exist).
-
edgexfoundry/edgex-go
Opened by jpwhitemn
Oct 14, 2018
Added jobSpec to create test job in e2e
DESCRIPTION: -- symptom of the problem a customer would see Currently, we use createJob with several parameters to create test jobs. There're two major issues: 1. if added one more field for Job ...
-
kubernetes-sigs/kube-batch
Opened by k82cn
Oct 14, 2018
Updating vendored dependencies for Kubernetes 1.13
What we need to do? The task here is to pick one or a few of related dependencies for the main kubernetes repository and update them in time for 1.13 release. - Review the documentation for managing ...
-
kubernetes/kubernetes
Opened by dims
Oct 13, 2018 - 2 comments
Stop using new(T); Start using &T{}
In order to have more idiomatic go, replace all new(T); T.SetFirstname("Bob") with &T{Firstname: "Bob"}. Then, remove unused Set methods.
-
AndreaM16/aws-sdk-go-bindings
Opened by AndreaM16
Oct 13, 2018 - 1 comment
Rename all custom error names to simple err
Rename all someCoolErr := someCoolFuncReturningError() to simple err := someCoolFuncReturningError() to be more idiomatic.
-
AndreaM16/aws-sdk-go-bindings
Opened by AndreaM16
Oct 13, 2018 - 3 comments