mirror of https://github.com/k3s-io/k3s
Make godeps restore/save clean
``` godep restore rm -rf Godeps godep save ./... ``` Will, after this change, have no diff.pull/6/head
parent
40c98735fb
commit
4bb4c73498
|
@ -21,7 +21,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "code.google.com/p/google-api-go-client/compute/v1",
|
||||
"Comment": "release-96",
|
||||
"Comment": "release-105",
|
||||
"Rev": "98c78185197025f935947caac56a7b6d022f89d2"
|
||||
},
|
||||
{
|
||||
|
@ -31,7 +31,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "code.google.com/p/google-api-go-client/googleapi",
|
||||
"Comment": "release-96",
|
||||
"Comment": "release-105",
|
||||
"Rev": "98c78185197025f935947caac56a7b6d022f89d2"
|
||||
},
|
||||
{
|
||||
|
@ -212,7 +212,6 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "github.com/fsouza/go-dockerclient",
|
||||
"Comment": "0.2.1-532-g2f1ad24",
|
||||
"Rev": "2f1ad24900b2777139b5becee93eb63a75b00617"
|
||||
},
|
||||
{
|
||||
|
@ -440,7 +439,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "github.com/onsi/gomega",
|
||||
"Comment": "v1.0-28-g8adf9e1730c5",
|
||||
"Comment": "v1.0-28-g8adf9e1",
|
||||
"Rev": "8adf9e1730c55cdc590de7d49766cb2acc88d8f2"
|
||||
},
|
||||
{
|
||||
|
@ -501,6 +500,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "github.com/spf13/pflag",
|
||||
"Comment": "v0.0.1-44-gb91b2a9",
|
||||
"Rev": "b91b2a94780f4e6b4d3b0c12fd9b5f4b05b1aa45"
|
||||
},
|
||||
{
|
||||
|
@ -509,14 +509,17 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "github.com/stretchr/testify/assert",
|
||||
"Comment": "v1.0-17-g089c718",
|
||||
"Rev": "089c7181b8c728499929ff09b62d3fdd8df8adff"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/stretchr/testify/mock",
|
||||
"Comment": "v1.0-17-g089c718",
|
||||
"Rev": "089c7181b8c728499929ff09b62d3fdd8df8adff"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/stretchr/testify/require",
|
||||
"Comment": "v1.0-17-g089c718",
|
||||
"Rev": "089c7181b8c728499929ff09b62d3fdd8df8adff"
|
||||
},
|
||||
{
|
||||
|
@ -570,6 +573,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "gopkg.in/natefinch/lumberjack.v2",
|
||||
"Comment": "v1.0-16-g20b71e5",
|
||||
"Rev": "20b71e5b60d756d3d2f80def009790325acc2b23"
|
||||
},
|
||||
{
|
||||
|
|
|
@ -72,4 +72,4 @@ func TestHandlers(t *testing.T) {
|
|||
// exactly the same as the one that was registered earlier
|
||||
handlers[0].ServeHTTP(response, (*http.Request)(nil), nil)
|
||||
expect(t, response.Code, http.StatusOK)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// License for the specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
package internal // import "github.com/garyburd/redigo/internal"
|
||||
package internal
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
|
|
@ -166,4 +166,4 @@
|
|||
// if _, err := redis.Scan(reply, &value1, &value2); err != nil {
|
||||
// // handle error
|
||||
// }
|
||||
package redis // import "github.com/garyburd/redigo/redis"
|
||||
package redis
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// At this time, it does not try to ensure that generated anchor names
|
||||
// are unique, that responsibility falls on the caller.
|
||||
package sanitized_anchor_name // import "github.com/shurcooL/sanitized_anchor_name"
|
||||
package sanitized_anchor_name
|
||||
|
||||
import "unicode"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ Example:
|
|||
}
|
||||
|
||||
*/
|
||||
package inotify // import "golang.org/x/exp/inotify"
|
||||
package inotify
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
//
|
||||
// See http://blog.golang.org/context for example code for a server that uses
|
||||
// Contexts.
|
||||
package context // import "golang.org/x/net/context"
|
||||
package context
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to
|
||||
// be dense. The only guarantees are that e.g. looking up "div" will yield
|
||||
// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0.
|
||||
package atom // import "golang.org/x/net/html/atom"
|
||||
package atom
|
||||
|
||||
// Atom is an integer code for a string. The zero value maps to "".
|
||||
type Atom uint32
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
// The mapping from encoding labels to encodings is defined at
|
||||
// http://encoding.spec.whatwg.org.
|
||||
package charset // import "golang.org/x/net/html/charset"
|
||||
package charset
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
|
|
|
@ -93,7 +93,7 @@ The relevant specifications include:
|
|||
http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html and
|
||||
http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html
|
||||
*/
|
||||
package html // import "golang.org/x/net/html"
|
||||
package html
|
||||
|
||||
// The tokenization algorithm implemented by this package is not a line-by-line
|
||||
// transliteration of the relatively verbose state-machine in the WHATWG
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
// Package websocket implements a client and server for the WebSocket protocol
|
||||
// as specified in RFC 6455.
|
||||
package websocket // import "golang.org/x/net/websocket"
|
||||
package websocket
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
|
|
Loading…
Reference in New Issue