cert-manager/vendor/google.golang.org/grpc
James Munnelly aac88430f2 Disable gazelle proto generation
Signed-off-by: James Munnelly <james@munnelly.eu>
2018-11-07 15:48:47 +00:00
..
balancer run //hack:update-deps 2018-09-13 11:24:51 +01:00
codes run //hack:update-deps 2018-09-13 11:24:51 +01:00
connectivity run //hack:update-deps 2018-09-13 11:24:51 +01:00
credentials Prune go tests from vendor directory 2018-10-29 21:42:36 +00:00
grpclb/grpc_lb_v1/messages run //hack:update-deps 2018-09-13 11:24:51 +01:00
grpclog Prune go tests from vendor directory 2018-10-29 21:42:36 +00:00
health/grpc_health_v1 Disable gazelle proto generation 2018-11-07 15:48:47 +00:00
internal run //hack:update-deps 2018-09-13 11:24:51 +01:00
keepalive run //hack:update-deps 2018-09-13 11:24:51 +01:00
metadata Prune go tests from vendor directory 2018-10-29 21:42:36 +00:00
naming Prune go tests from vendor directory 2018-10-29 21:42:36 +00:00
peer run //hack:update-deps 2018-09-13 11:24:51 +01:00
resolver run //hack:update-deps 2018-09-13 11:24:51 +01:00
stats Prune go tests from vendor directory 2018-10-29 21:42:36 +00:00
status Disable gazelle proto generation 2018-11-07 15:48:47 +00:00
tap run //hack:update-deps 2018-09-13 11:24:51 +01:00
transport Disable gazelle proto generation 2018-11-07 15:48:47 +00:00
.please-update Run dep ensure 2018-08-20 12:36:33 +01:00
.travis.yml Run dep ensure 2018-08-20 12:36:33 +01:00
AUTHORS Run dep ensure 2018-08-20 12:36:33 +01:00
backoff.go Run dep ensure 2018-08-20 12:36:33 +01:00
balancer_conn_wrappers.go Run dep ensure 2018-08-20 12:36:33 +01:00
balancer_v1_wrapper.go Run dep ensure 2018-08-20 12:36:33 +01:00
balancer.go Run dep ensure 2018-08-20 12:36:33 +01:00
BUILD.bazel Prune go tests from vendor directory 2018-10-29 21:42:36 +00:00
call.go Run dep ensure 2018-08-20 12:36:33 +01:00
clientconn.go Run dep ensure 2018-08-20 12:36:33 +01:00
codec.go Run dep ensure 2018-08-20 12:36:33 +01:00
codegen.sh Run dep ensure 2018-08-20 12:36:33 +01:00
CONTRIBUTING.md Run dep ensure 2018-08-20 12:36:33 +01:00
doc.go Run dep ensure 2018-08-20 12:36:33 +01:00
grpclb.go Run dep ensure 2018-08-20 12:36:33 +01:00
interceptor.go Run dep ensure 2018-08-20 12:36:33 +01:00
LICENSE Run dep ensure 2018-08-20 12:36:33 +01:00
Makefile Run dep ensure 2018-08-20 12:36:33 +01:00
picker_wrapper.go Run dep ensure 2018-08-20 12:36:33 +01:00
pickfirst.go Run dep ensure 2018-08-20 12:36:33 +01:00
proxy.go Run dep ensure 2018-08-20 12:36:33 +01:00
README.md Run dep ensure 2018-08-20 12:36:33 +01:00
resolver_conn_wrapper.go Run dep ensure 2018-08-20 12:36:33 +01:00
rpc_util.go Run dep ensure 2018-08-20 12:36:33 +01:00
server.go Run dep ensure 2018-08-20 12:36:33 +01:00
stream.go Run dep ensure 2018-08-20 12:36:33 +01:00
trace.go Run dep ensure 2018-08-20 12:36:33 +01:00
vet.sh Run dep ensure 2018-08-20 12:36:33 +01: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