Home | History | Annotate | only in /external/syzkaller/vendor/google.golang.org/grpc
Up to higher level directory
NameDateSize
.travis.yml22-Oct-2020686
AUTHORS22-Oct-202012
backoff.go22-Oct-20201.1K
balancer/22-Oct-2020
balancer.go22-Oct-202011.5K
balancer_conn_wrappers.go22-Oct-20207.2K
balancer_v1_wrapper.go22-Oct-20208.5K
call.go22-Oct-20203K
clientconn.go22-Oct-202047.7K
codec.go22-Oct-20201.6K
codegen.sh22-Oct-2020635
codes/22-Oct-2020
connectivity/22-Oct-2020
CONTRIBUTING.md22-Oct-20202.4K
credentials/22-Oct-2020
doc.go22-Oct-2020720
encoding/22-Oct-2020
envconfig.go22-Oct-2020889
go16.go22-Oct-20201.9K
go17.go22-Oct-20201.9K
grpclog/22-Oct-2020
install_gae.sh22-Oct-2020236
interceptor.go22-Oct-20204K
internal/22-Oct-2020
keepalive/22-Oct-2020
LICENSE22-Oct-202011.1K
Makefile22-Oct-2020988
metadata/22-Oct-2020
naming/22-Oct-2020
peer/22-Oct-2020
picker_wrapper.go22-Oct-20208.3K
pickfirst.go22-Oct-20202.8K
proxy.go22-Oct-20203.4K
README.md22-Oct-20202K
resolver/22-Oct-2020
resolver_conn_wrapper.go22-Oct-20204K
rpc_util.go22-Oct-202021.9K
server.go22-Oct-202042.3K
service_config.go22-Oct-20206.7K
stats/22-Oct-2020
status/22-Oct-2020
stickiness_linkedmap.go22-Oct-20202.3K
stream.go22-Oct-202022.4K
tap/22-Oct-2020
trace.go22-Oct-20202.7K
transport/22-Oct-2020
version.go22-Oct-2020687
vet.sh22-Oct-20203.3K

README.md

      1 # gRPC-Go
      2 
      3 [![Build Status](https://travis-ci.org/grpc/grpc-go.svg)](https://travis-ci.org/grpc/grpc-go) [![GoDoc](https://godoc.org/google.golang.org/grpc?status.svg)](https://godoc.org/google.golang.org/grpc) [![GoReportCard](https://goreportcard.com/badge/grpc/grpc-go)](https://goreportcard.com/report/github.com/grpc/grpc-go)
      4 
      5 The Go implementation of [gRPC](https://grpc.io/): A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the [gRPC Quick Start: Go](https://grpc.io/docs/quickstart/go.html) guide.
      6 
      7 Installation
      8 ------------
      9 
     10 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:
     11 
     12 ```
     13 $ go get -u google.golang.org/grpc
     14 ```
     15 
     16 Prerequisites
     17 -------------
     18 
     19 This requires Go 1.6 or later. Go 1.7 will be required soon.
     20 
     21 Constraints
     22 -----------
     23 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](http://godoc.org/google.golang.org/grpc?imports), you need a discussion with gRPC-Go authors and consultants.
     24 
     25 Documentation
     26 -------------
     27 See [API documentation](https://godoc.org/google.golang.org/grpc) for package and API descriptions and find examples in the [examples directory](examples/).
     28 
     29 Performance
     30 -----------
     31 See the current benchmarks for some of the languages supported in [this dashboard](https://performance-dot-grpc-testing.appspot.com/explore?dashboard=5652536396611584&widget=490377658&container=1286539696).
     32 
     33 Status
     34 ------
     35 General Availability [Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-stages).
     36 
     37 FAQ
     38 ---
     39 
     40 #### Compiling error, undefined: grpc.SupportPackageIsVersion
     41 
     42 Please update proto package, gRPC package and rebuild the proto files:
     43  - `go get -u github.com/golang/protobuf/{proto,protoc-gen-go}`
     44  - `go get -u google.golang.org/grpc`
     45  - `protoc --go_out=plugins=grpc:. *.proto`
     46