rewrite go imports

This commit is contained in:
Mike Danese
2015-08-05 15:03:47 -07:00
parent 9a3fb3cb1f
commit 8e33cbfa28
844 changed files with 3659 additions and 3659 deletions

View File

@@ -19,7 +19,7 @@ package config
import (
"sync"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
)
type Merger interface {

View File

@@ -20,7 +20,7 @@ import (
"fmt"
"strings"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/errors"
"k8s.io/kubernetes/pkg/util/errors"
"github.com/davecgh/go-spew/spew"
"github.com/golang/glog"

View File

@@ -22,7 +22,7 @@ import (
"sync"
"time"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/httpstream"
"k8s.io/kubernetes/pkg/util/httpstream"
"github.com/docker/spdystream"
"github.com/golang/glog"
)

View File

@@ -25,10 +25,10 @@ import (
"net/http"
"strings"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
apierrors "github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/httpstream"
"github.com/GoogleCloudPlatform/kubernetes/third_party/golang/netutil"
"k8s.io/kubernetes/pkg/api"
apierrors "k8s.io/kubernetes/pkg/api/errors"
"k8s.io/kubernetes/pkg/util/httpstream"
"k8s.io/kubernetes/third_party/golang/netutil"
)
// SpdyRoundTripper knows how to upgrade an HTTP request to one that supports

View File

@@ -32,7 +32,7 @@ import (
"testing"
"time"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/httpstream"
"k8s.io/kubernetes/pkg/util/httpstream"
)
func TestRoundTripAndNewConnection(t *testing.T) {

View File

@@ -21,7 +21,7 @@ import (
"net/http"
"strings"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/httpstream"
"k8s.io/kubernetes/pkg/util/httpstream"
"github.com/golang/glog"
)

View File

@@ -23,8 +23,8 @@ import (
"strings"
"sync"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
utilexec "github.com/GoogleCloudPlatform/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util"
utilexec "k8s.io/kubernetes/pkg/util/exec"
"github.com/golang/glog"
)

View File

@@ -19,8 +19,8 @@ package iptables
import (
"testing"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util/exec"
)
func getIptablesCommand(protocol Protocol) string {

View File

@@ -23,7 +23,7 @@ import (
"reflect"
"strconv"
"github.com/GoogleCloudPlatform/kubernetes/third_party/golang/template"
"k8s.io/kubernetes/third_party/golang/template"
)
type JSONPath struct {

View File

@@ -23,7 +23,7 @@ import (
"path/filepath"
"strings"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util/exec"
"github.com/golang/glog"
)

View File

@@ -22,7 +22,7 @@ import (
"os/exec"
"strings"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api"
"github.com/golang/glog"
)

View File

@@ -31,7 +31,7 @@ import (
"golang.org/x/net/html"
"golang.org/x/net/html/atom"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
)
// atomsToAttrs states which attributes of which tags require URL substitution.

View File

@@ -22,7 +22,7 @@ import (
"reflect"
"sort"
forkedjson "github.com/GoogleCloudPlatform/kubernetes/third_party/forked/json"
forkedjson "k8s.io/kubernetes/third_party/forked/json"
)
// An alternate implementation of JSON Merge Patch

View File

@@ -20,7 +20,7 @@ import (
"sync"
"time"
"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/types"
"github.com/pborman/uuid"
)

View File

@@ -21,7 +21,7 @@ import (
"testing"
"time"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/workqueue"
"k8s.io/kubernetes/pkg/util/workqueue"
)
func TestBasic(t *testing.T) {