blob: 482be65c97bb6c92c708f93cafbe9d682de7ac48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
GO_LIBRARY()
LICENSE(Apache-2.0)
SRCS(
backoff.go
balancer_conn_wrappers.go
call.go
clientconn.go
codec.go
dialoptions.go
doc.go
idle.go
interceptor.go
picker_wrapper.go
pickfirst.go
preloader.go
resolver_conn_wrapper.go
rpc_util.go
server.go
service_config.go
stream.go
trace.go
version.go
)
GO_TEST_SRCS(
clientconn_authority_test.go
clientconn_parsed_target_test.go
clientconn_test.go
codec_test.go
default_dial_option_server_option_test.go
grpc_test.go
idle_test.go
picker_wrapper_test.go
resolver_test.go
rpc_util_test.go
server_test.go
service_config_test.go
trace_test.go
)
END()
RECURSE(
admin
attributes
authz
backoff
balancer
benchmark
binarylog
channelz
codes
connectivity
credentials
encoding
# gotest
grpclog
health
internal
interop
keepalive
metadata
orca
peer
profiling
reflection
resolver
serviceconfig
stats
status
stress
tap
# test
testdata
xds
)
|