Home
last modified time | relevance | path

Searched defs:methodConfig (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DServiceConfigInterceptorTest.java93 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "waitForReady", true); in withWaitForReady() local
119 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "maxRequestMessageBytes", 1d); in withMaxRequestSize() local
133 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "maxRequestMessageBytes", 10d); in withMaxRequestSize_pickSmallerExisting() local
148 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "maxRequestMessageBytes", 5d); in withMaxRequestSize_pickSmallerNew() local
163 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "maxResponseMessageBytes", 1d); in withMaxResponseSize() local
177 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "maxResponseMessageBytes", 5d); in withMaxResponseSize_pickSmallerExisting() local
192 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "maxResponseMessageBytes", 10d); in withMaxResponseSize_pickSmallerNew() local
207 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "waitForReady", false); in withoutWaitForReady() local
240 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "timeout", "100000s"); in nearerDeadlineKept_existing() local
258 JsonObj methodConfig = new JsonObj("name", new JsonList(name), "timeout", "1s"); in nearerDeadlineKept_new() local
[all …]
DManagedChannelImplTest.java2607 Map<String, Object> methodConfig = new HashMap<String, Object>(); in retryBackoffThenChannelShutdown_retryShouldStillHappen_newCallShouldFail() local
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServiceConfigUtil.java196 static Map<String, Object> getRetryPolicyFromMethodConfig(Map<String, Object> methodConfig) { in getRetryPolicyFromMethodConfig()
204 static Map<String, Object> getHedgingPolicyFromMethodConfig(Map<String, Object> methodConfig) { in getHedgingPolicyFromMethodConfig()
212 static List<Map<String, Object>> getNameListFromMethodConfig(Map<String, Object> methodConfig) { in getNameListFromMethodConfig()
225 static Long getTimeoutFromMethodConfig(Map<String, Object> methodConfig) { in getTimeoutFromMethodConfig()
238 static Boolean getWaitForReadyFromMethodConfig(Map<String, Object> methodConfig) { in getWaitForReadyFromMethodConfig()
246 static Integer getMaxRequestMessageBytesFromMethodConfig(Map<String, Object> methodConfig) { in getMaxRequestMessageBytesFromMethodConfig()
254 static Integer getMaxResponseMessageBytesFromMethodConfig(Map<String, Object> methodConfig) { in getMaxResponseMessageBytesFromMethodConfig()
DServiceConfigInterceptor.java144 Map<String, Object> methodConfig, boolean retryEnabled, int maxRetryAttemptsLimit, in MethodInfo()
/external/grpc-grpc-java/core/src/test/resources/io/grpc/internal/
Dtest_hedging_service_config.json3 "methodConfig":[ array
Dtest_retry_service_config.json3 "methodConfig":[ array
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
DConfigMerger.java51 Config methodConfig = method.getAnnotation(Config.class); in getConfig() local