cadvisor/vendor/google.golang.org/grpc
abhi e5d8730f4a Updating grpc version to v1.3.0
This commit includes godep change to update the grpc version
and also updates rkt version to v1.25.0.
A minor change has been made in the client based on how rkt
client is used in kubernetes/kubernetes.

Signed-off-by: abhi <abhi@docker.com>
2017-11-09 17:32:18 -08:00
..
codes moving deps to vendor subdirectory 2016-07-11 12:19:43 -07:00
credentials Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
grpclb/grpc_lb_v1 Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
grpclog moving deps to vendor subdirectory 2016-07-11 12:19:43 -07:00
internal Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
keepalive Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
metadata Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
naming Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
peer moving deps to vendor subdirectory 2016-07-11 12:19:43 -07:00
stats Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
status Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
tap Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
transport Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
.travis.yml Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
backoff.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
balancer.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
call.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
clientconn.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
codec.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
codegen.sh Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
CONTRIBUTING.md Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
coverage.sh Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
doc.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
go16.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
go17.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
grpclb.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
interceptor.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
LICENSE moving deps to vendor subdirectory 2016-07-11 12:19:43 -07:00
Makefile Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
PATENTS Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
proxy.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
README.md Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
rpc_util.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
server.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
stream.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
trace.go Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00

gRPC-Go

Build Status GoDoc

The Go implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the gRPC Quick Start guide.

Installation

To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:

$ go get google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later.

Constraints

The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the list, you need a discussion with gRPC-Go authors and consultants.

Documentation

See API documentation for package and API descriptions and find examples in the examples directory.

Status

GA

FAQ

Compiling error, undefined: grpc.SupportPackageIsVersion

Please update proto package, gRPC package and rebuild the proto files:

  • go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  • go get -u google.golang.org/grpc
  • protoc --go_out=plugins=grpc:. *.proto