- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 184 for getMethod (0.05 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java
Feature<?>[] presentFeatures; Feature<?>[] absentFeatures; try { presentFeatures = (Feature<?>[]) annotationClass.getMethod("value").invoke(testerAnnotation); absentFeatures = (Feature<?>[]) annotationClass.getMethod("absent").invoke(testerAnnotation); } catch (Exception e) { throw new IllegalArgumentException("Error extracting features from tester annotation.", e); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 12.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
/** * Returns the HTTP method used for the access. * * @return the HTTP method */ String getMethod(); /** * Sets the HTTP method used for the access. * * @param method the HTTP method */ void setMethod(String method); /** * Returns the MIME type of the accessed resource. * * @return the MIME type */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java
* * @return the HTTP method as a String. */ String getMethod(); /** * Sets the HTTP method for the URL queue. * * @param method the HTTP method to be set (e.g., GET, POST, etc.) */ void setMethod(String method); /** * Retrieves the URL from the queue. * * @return the URL as a String. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
assertEquals(Constants.GET_METHOD, accessResult.getMethod()); }); dataService.iterate(sessionId2, accessResult -> { assertTrue(accessResult.getUrl().startsWith(url2)); assertEquals(Constants.GET_METHOD, accessResult.getMethod()); }); dataService.delete(sessionId1);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 19.1K bytes - Viewed (0) -
mockwebserver/api/mockwebserver3.api
public final class mockwebserver3/PushPromise { public fun <init> (Ljava/lang/String;Ljava/lang/String;Lokhttp3/Headers;Lmockwebserver3/MockResponse;)V public final fun getHeaders ()Lokhttp3/Headers; public final fun getMethod ()Ljava/lang/String; public final fun getPath ()Ljava/lang/String; public final fun getResponse ()Lmockwebserver3/MockResponse; } public class mockwebserver3/QueueDispatcher : mockwebserver3/Dispatcher {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 11.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
final MethodDesc methodDesc = beanDesc.getMethodDescNoException(methodName); if (methodDesc != null) { final Method method = methodDesc.getMethod(); final PreDestroy postConstruct = method.getAnnotation(PreDestroy.class); if (postConstruct != null) { MethodUtil.invoke(method, instance);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
final UrlQueue<?> uq = crawlerContainer.getComponent("urlQueue"); uq.setCreateTime(SystemUtil.currentTimeMillis()); uq.setDepth(depth); uq.setMethod(d.getMethod().name()); uq.setEncoding(encoding); uq.setParentUrl(url); uq.setSessionId(crawlerContext.getSessionId()); uq.setUrl(d.getUrl());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/internal/Finalizer.java
* much just shut down and make sure we don't keep it alive any longer than necessary. */ return null; } try { return finalizableReferenceClass.getMethod("finalizeReferent"); } catch (NoSuchMethodException e) { throw new AssertionError(e); } } private static @Nullable Field getInheritableThreadLocalsField() { try {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 9.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/EquivalenceTest.java
NullPointerTester tester = new NullPointerTester(); // Necessary until JDK15: // https://bugs.openjdk.org/browse/JDK-8202469 tester.ignore(Equivalence.class.getMethod("wrap", Object.class)); tester.testAllPublicStaticMethods(Equivalence.class); tester.testAllPublicInstanceMethods(Equivalence.equals()); tester.testAllPublicInstanceMethods(Equivalence.identity()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.5K bytes - Viewed (0)