- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for invokes (0.25 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java
final java.lang.reflect.Method method = CrawlerThread.class.getDeclaredMethod("isValid", UrlQueue.class); method.setAccessible(true); final boolean result = (boolean) method.invoke(crawlerThread, urlQueue); assertTrue(result); } /** * Test isValid method with a null URL queue. */ public void test_isValid_nullUrlQueue() throws Exception {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
final Method method = Suggester.class.getDeclaredMethod("getIndicesForAlias", String.class); method.setAccessible(true); final List<String> indices = (List<String>) method.invoke(suggester, aliasName); assertNotNull("Indices list should not be null", indices); assertEquals("Should find exactly one index", 1, indices.size());
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
/** * Test: Verify that OnConnectListener is properly invoked */ @Test public void testOnConnectListenerInvoked() { final AtomicBoolean listenerCalled = new AtomicBoolean(false); final OnConnectListener listener = () -> listenerCalled.set(true); fesenClient.addOnConnectListener(listener); // Manually invoke listeners as if connect() succeededRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:44:44 UTC 2025 - 17K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
} /** * Iterates over all access results for the specified session. * * @param sessionId the session ID * @param accessResultCallback the callback to invoke for each access result */ @Override public void iterate(final String sessionId, final AccessResultCallback<AccessResultImpl<Long>> accessResultCallback) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
*/ @FunctionalInterface public interface OnDestroyListener<T> { /** * Called when a pooled object is being destroyed. * This method is invoked before the object is closed (if it implements AutoCloseable). * * @param p The pooled object being destroyed */ void onDestroy(PooledObject<T> p); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* UrlFilter, RuleManager, CrawlerContainer, IntervalController, and CrawlerClientFactory, * to perform its tasks. * * <p>The crawling process involves the following steps: * <ol> * <li>Initialization: Sets up the crawler context and initializes the URL filter.</li> * <li>Thread Creation: Creates a group of crawler threads to perform the actual crawling.</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
* characters to their Alphabet equivalents, handling both single and double Katakana character combinations. * </p> * * <p> * The conversion process involves iterating through the input string, identifying Katakana characters, * and replacing them with their corresponding Alphabet representations based on the internal mapping.
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/resources/fess_label_nl.properties
labels.webApiJson=JSON-antwoord labels.webConfigName=Webcrawlconfiguratienaam labels.allLanguages=Alle talen labels.dictId=Woordenboek-ID labels.docId=Document-ID labels.endTime=Eindtijd labels.hq=hq labels.inputs=Invoer labels.jobLogging=Loggen labels.jobName=Naam labels.jobStatus=Status labels.labelTypeIds=Labels labels.lang=Taal labels.outputs=Uitvoer labels.pos=Woordsoort
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 46.1K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* and components from the Fess Crawler framework, such as {@link CrawlerContainer}, * {@link UrlConvertHelper}, and {@link EncodingHelper}. * </p> * <p> * The transformation process involves: * </p> * <ol> * <li>Determining the character set encoding of the HTML content.</li> * <li>Storing the HTML content as data in the {@link ResultData}.</li>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0)