HomeSort by relevance Sort by last modified time
    Searched refs:MethodConfig (Results 1 - 2 of 2) sorted by null

  /external/syzkaller/vendor/google.golang.org/grpc/
service_config.go 33 // MethodConfig defines the configuration recommended by the service providers for a
39 type MethodConfig struct {
72 // If there is an exact match for a method (i.e. /service/method) in the map, use the corresponding MethodConfig.
73 // If there's no exact match, look for the default config for the service (/service/) and use the corresponding MethodConfig if it exists.
74 // Otherwise, the method has no MethodConfig to use.
75 Methods map[string]MethodConfig
153 MethodConfig *[]jsonMC
165 Methods: make(map[string]MethodConfig),
169 if rsc.MethodConfig == nil {
173 for _, m := range *rsc.MethodConfig {
    [all...]
clientconn.go 998 // the corresponding MethodConfig.
1000 // under the service (i.e /service/). If there is a default MethodConfig for
1002 // Otherwise, we return an empty MethodConfig.
1003 func (cc *ClientConn) GetMethodConfig(method string) MethodConfig {
    [all...]

Completed in 8108 milliseconds