- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for getMethod (0.07 seconds)
-
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
Method getMethod = List.class.getMethod("get", int.class); Method setMethod = List.class.getMethod("set", int.class, Object.class); new EqualsTester() .addEqualityGroup(Invokable.from(getMethod), Invokable.from(getMethod)) .addEqualityGroup(Invokable.from(setMethod)) .addEqualityGroup(new TypeToken<List<Integer>>() {}.method(getMethod))Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 89.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
Method getMethod = List.class.getMethod("get", int.class); Method setMethod = List.class.getMethod("set", int.class, Object.class); new EqualsTester() .addEqualityGroup(Invokable.from(getMethod), Invokable.from(getMethod)) .addEqualityGroup(Invokable.from(setMethod)) .addEqualityGroup(new TypeToken<List<Integer>>() {}.method(getMethod))Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 89.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
*/ protected boolean containsAuthenticationData(final HttpServletRequest request) { if (logger.isDebugEnabled()) { logger.debug("HTTP Method: {}", request.getMethod()); } if (!"POST".equalsIgnoreCase(request.getMethod())) { return false; } final Map<String, String[]> params = request.getParameterMap(); if (logger.isDebugEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
* @return true if the method is accepted, false otherwise. */ protected boolean acceptHttpMethod(final HttpServletRequest request, final String... methods) { final String method = request.getMethod(); for (final String m : methods) { if (m.equals(method)) { return true; } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
android/guava/src/com/google/common/reflect/TypeToken.java
} /** * Resolves the given {@code type} against the type context represented by this type. For example: * * {@snippet : * new TypeToken<List<String>>() {}.resolveType( * List.class.getMethod("get", int.class).getGenericReturnType()) * => String.class * } */ public final TypeToken<?> resolveType(Type type) { checkNotNull(type);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 53.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java
responseData.setUrl(url); responseData.setCharSet(contentEncoding); if (httpRequest instanceof HttpHead) { responseData.setMethod(Constants.HEAD_METHOD); } else { responseData.setMethod(Constants.GET_METHOD); } responseData.setHttpStatusCode(httpStatusCode); for (final Header header : response.getAllHeaders()) {
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Fri Jan 09 23:46:52 GMT 2026 - 54.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
responseData.setCharSet(contentEncoding); if (httpRequest instanceof HttpHead) { responseData.setMethod(Constants.HEAD_METHOD); } else { responseData.setMethod(Constants.GET_METHOD); } responseData.setHttpStatusCode(httpStatusCode); for (final Header header : response.getHeaders()) {
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
responseData.setExecutionTime(1000L); responseData.setHttpStatusCode(200); responseData.setLastModified(new Date()); responseData.setMethod("GET"); responseData.setMimeType("text/html"); responseData.setParentUrl("http://fess.codelibs.org/"); responseData.setResponseBody(data.getBytes());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 62.9K bytes - Click Count (0)