mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 14:07:14 +00:00
fix Godeps.json; upgrade context, html, and websocket packages
This commit is contained in:
parent
8ba169f6a4
commit
f27bfc52ce
9
Godeps/Godeps.json
generated
9
Godeps/Godeps.json
generated
@ -145,18 +145,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "golang.org/x/net/context",
|
"ImportPath": "golang.org/x/net/context",
|
||||||
"Comment": "null-214",
|
"Rev": "cbcac7bb8415db9b6cb4d1ebab1dc9afbd688b97"
|
||||||
"Rev": "c043f0dc72e4cdd23ae039470ea9d63e6680a1b2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "golang.org/x/net/html",
|
"ImportPath": "golang.org/x/net/html",
|
||||||
"Comment": "null-214",
|
"Rev": "cbcac7bb8415db9b6cb4d1ebab1dc9afbd688b97"
|
||||||
"Rev": "c043f0dc72e4cdd23ae039470ea9d63e6680a1b2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "golang.org/x/net/websocket",
|
"ImportPath": "golang.org/x/net/websocket",
|
||||||
"Comment": "null-214",
|
"Rev": "cbcac7bb8415db9b6cb4d1ebab1dc9afbd688b97"
|
||||||
"Rev": "c043f0dc72e4cdd23ae039470ea9d63e6680a1b2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "gopkg.in/v2/yaml",
|
"ImportPath": "gopkg.in/v2/yaml",
|
||||||
|
2
Godeps/_workspace/src/golang.org/x/net/context/context.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/net/context/context.go
generated
vendored
@ -34,7 +34,7 @@
|
|||||||
//
|
//
|
||||||
// See http://blog.golang.org/context for example code for a server that uses
|
// See http://blog.golang.org/context for example code for a server that uses
|
||||||
// Contexts.
|
// Contexts.
|
||||||
package context
|
package context // import "golang.org/x/net/context"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
2
Godeps/_workspace/src/golang.org/x/net/html/atom/atom.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/net/html/atom/atom.go
generated
vendored
@ -15,7 +15,7 @@
|
|||||||
// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to
|
// 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
|
// 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.
|
// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0.
|
||||||
package atom
|
package atom // import "golang.org/x/net/html/atom"
|
||||||
|
|
||||||
// Atom is an integer code for a string. The zero value maps to "".
|
// Atom is an integer code for a string. The zero value maps to "".
|
||||||
type Atom uint32
|
type Atom uint32
|
||||||
|
2
Godeps/_workspace/src/golang.org/x/net/html/charset/charset.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/net/html/charset/charset.go
generated
vendored
@ -6,7 +6,7 @@
|
|||||||
//
|
//
|
||||||
// The mapping from encoding labels to encodings is defined at
|
// The mapping from encoding labels to encodings is defined at
|
||||||
// http://encoding.spec.whatwg.org.
|
// http://encoding.spec.whatwg.org.
|
||||||
package charset
|
package charset // import "golang.org/x/net/html/charset"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
2
Godeps/_workspace/src/golang.org/x/net/html/doc.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/net/html/doc.go
generated
vendored
@ -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/syntax.html and
|
||||||
http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html
|
http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html
|
||||||
*/
|
*/
|
||||||
package html
|
package html // import "golang.org/x/net/html"
|
||||||
|
|
||||||
// The tokenization algorithm implemented by this package is not a line-by-line
|
// The tokenization algorithm implemented by this package is not a line-by-line
|
||||||
// transliteration of the relatively verbose state-machine in the WHATWG
|
// transliteration of the relatively verbose state-machine in the WHATWG
|
||||||
|
2
Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go
generated
vendored
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
// Package websocket implements a client and server for the WebSocket protocol
|
// Package websocket implements a client and server for the WebSocket protocol
|
||||||
// as specified in RFC 6455.
|
// as specified in RFC 6455.
|
||||||
package websocket
|
package websocket // import "golang.org/x/net/websocket"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
Loading…
Reference in New Issue
Block a user