Gofmt all files.
This commit is contained in:
parent
9016655e9a
commit
643d647761
@ -79,7 +79,7 @@ func TestGetMachineinfo(t *testing.T) {
|
||||
NumCores: 8,
|
||||
MemoryCapacity: 31625871360,
|
||||
DiskMap: map[string]info.DiskInfo{
|
||||
"8:0": info.DiskInfo{
|
||||
"8:0": {
|
||||
Name: "sda",
|
||||
Major: 8,
|
||||
Minor: 0,
|
||||
|
@ -159,7 +159,7 @@ func (self *dockerContainerHandler) readLibcontainerConfig() (*libcontainer.Conf
|
||||
|
||||
// Translate the old config into the new config.
|
||||
config = oldConfig.Config
|
||||
for ns, _ := range oldConfig.OldNamespaces {
|
||||
for ns := range oldConfig.OldNamespaces {
|
||||
config.Namespaces = append(config.Namespaces, libcontainer.Namespace{
|
||||
Name: ns,
|
||||
})
|
||||
|
@ -76,7 +76,7 @@ func (self *Node) AddNodeCache(c Cache) {
|
||||
}
|
||||
|
||||
func (self *Node) AddPerCoreCache(c Cache) {
|
||||
for idx, _ := range self.Cores {
|
||||
for idx := range self.Cores {
|
||||
self.Cores[idx].Caches = append(self.Cores[idx].Caches, c)
|
||||
}
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ func serveDockerPage(m manager.Manager, w http.ResponseWriter, u *url.URL) error
|
||||
data = &pageData{
|
||||
DisplayName: dockerContainersText,
|
||||
ParentContainers: []link{
|
||||
link{
|
||||
{
|
||||
Text: dockerContainersText,
|
||||
Link: DockerPage,
|
||||
}},
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
package static
|
||||
|
||||
const googleJsapiJs= `
|
||||
const googleJsapiJs = `
|
||||
if(!window['googleLT_']){window['googleLT_']=(new Date()).getTime();}if (!window['google']) {
|
||||
window['google'] = {};
|
||||
}
|
||||
|
@ -4,7 +4,6 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/google/cadvisor/info"
|
||||
|
||||
)
|
||||
|
||||
func createStats(id int32) *info.ContainerStats {
|
||||
|
Loading…
Reference in New Issue
Block a user