cadvisor/vendor/google.golang.org/grpc
Lantao Liu cdb1f2ac71 Update containerd to v1.0.2.
Signed-off-by: Lantao Liu <lantaol@google.com>
2018-03-29 23:50:34 +00:00
..
balancer Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
codes Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
connectivity Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
credentials Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
grpclb/grpc_lb_v1/messages Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
grpclog Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
internal Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
keepalive Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
metadata Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
naming Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
peer Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
resolver Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
stats Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
status Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
tap Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
transport Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
.please-update Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
.travis.yml Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
AUTHORS Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
backoff.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
balancer_conn_wrappers.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
balancer_v1_wrapper.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
balancer.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
call.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
clientconn.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
codec.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
codegen.sh Updating grpc version to v1.3.0 2017-11-09 17:32:18 -08:00
CONTRIBUTING.md Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
doc.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
grpclb.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
interceptor.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
LICENSE Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
Makefile Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
picker_wrapper.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
pickfirst.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
proxy.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
README.md Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
resolver_conn_wrapper.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
rpc_util.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
server.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
stream.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
trace.go Update containerd to v1.0.2. 2018-03-29 23:50:34 +00:00
vet.sh Update containerd to v1.0.2. 2018-03-29 23:50:34 +00: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: Go 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 -u google.golang.org/grpc

Prerequisites

This requires Go 1.7 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.

Performance

See the current benchmarks for some of the languages supported in this dashboard.

Status

General Availability Google Cloud Platform Launch Stages.

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