Gofmt all files.

This commit is contained in:
Victor Marmol 2015-01-05 11:26:23 -08:00
parent 9016655e9a
commit 643d647761
6 changed files with 5 additions and 6 deletions

View File

@ -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,

View File

@ -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,
})

View File

@ -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)
}
}

View File

@ -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,
}},

View File

@ -14,7 +14,7 @@
package static
const googleJsapiJs= `
const googleJsapiJs = `
if(!window['googleLT_']){window['googleLT_']=(new Date()).getTime();}if (!window['google']) {
window['google'] = {};
}

View File

@ -4,7 +4,6 @@ import (
"testing"
"github.com/google/cadvisor/info"
)
func createStats(id int32) *info.ContainerStats {