0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2024-12-16 21:56:43 -05:00
imageproxy/vendor/google.golang.org/grpc
Will Norris 0fe3656939 vendor: add github.com/diegomarangoni/gcscache
also include all transitive dependencies of gcscache, which seems to
bring in the entire world of Google Cloud Platform.
2017-09-01 20:46:05 +00:00
..
balancer vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
codes vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
connectivity vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
credentials vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
grpclb/grpc_lb_v1/messages vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
grpclog vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
internal vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
keepalive vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
metadata vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
naming vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
peer vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
resolver vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
stats vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
status vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
tap vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
transport vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
AUTHORS vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
backoff.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
balancer.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
balancer_conn_wrappers.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
balancer_v1_wrapper.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
call.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
clientconn.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
codec.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
codegen.sh vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
CONTRIBUTING.md vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
doc.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
go16.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
go17.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
grpclb.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
interceptor.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
LICENSE vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
Makefile vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
proxy.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
README.md vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
rpc_util.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
server.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
stream.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
trace.go vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +00:00
vet.sh vendor: add github.com/diegomarangoni/gcscache 2017-09-01 20:46:05 +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.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.

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