Lines Matching full:go
4 … running on Mac. This script does not work on Mac. See https://github.com/grpc/grpc-go/issues/2047"
24 go get -d \
26 go get -u \
29 honnef.co/go/tools/cmd/staticcheck \
31 github.com/golang/protobuf/protoc-gen-go
56 git ls-files "*.go" | xargs grep -L "\(Copyright [0-9]\{4,\} gRPC authors\)\|DO NOT EDIT" 2>&1 | te…
57 git ls-files "*.go" | xargs grep -l '"unsafe"' 2>&1 | (! grep -v '_test.go') | tee /dev/stderr | (!…
58 git ls-files "*.go" | xargs grep -l '"math/rand"' 2>&1 | (! grep -v '^examples\|^stress\|grpcrand')…
61 golint ./... 2>&1 | (grep -vE "(_mock|\.pb)\.go:" || true) | tee /dev/stderr | (! read)
69 # Rewrite golang.org/x/net/context -> context imports (see grpc/grpc-go#1484).
70 # TODO: Remove this mangling once "context" is imported directly (grpc/grpc-go#711).
71 git ls-files "*.go" | xargs sed -i 's:"golang.org/x/net/context":"context":'
73 # TODO: Stop filtering pb.go files once golang/protobuf#214 is fixed.
74 go tool vet -all . 2>&1 | grep -vE '(clientconn|transport\/transport_test).go:.*cancel (function|va…
86 google.golang.org/grpc/transport/transport_test.go:SA2002
87 google.golang.org/grpc/benchmark/benchmain/main.go:SA1019
88 google.golang.org/grpc/stats/stats_test.go:SA1019
89 google.golang.org/grpc/test/end2end_test.go:SA1019
90 google.golang.org/grpc/balancer_test.go:SA1019
91 google.golang.org/grpc/balancer.go:SA1019
92 google.golang.org/grpc/clientconn_test.go:SA1019