- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for indexUpdateCallback (0.09 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
indexUpdateCallback.store(paramMap, dataMap); assertEquals(100L, indexUpdateCallback.getExecuteTime()); dataMap.put("url", "http://example.com/test2"); indexUpdateCallback.store(paramMap, dataMap); assertEquals(200L, indexUpdateCallback.getExecuteTime()); } public void test_store_withClickCountDisabled() { // Create new config with click/favorite count disabled
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
final AtomicReference<IndexUpdateCallback> capturedCallback = new AtomicReference<>(); final AtomicReference<DataStoreParams> capturedParams = new AtomicReference<>(); dataStore = new DataStore() { @Override public void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap) { storeCalled.set(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
public class IndexUpdateCallbackTest extends UnitFessTestCase { public void test_interface_methods() { // Test with anonymous implementation IndexUpdateCallback callback = new IndexUpdateCallback() { private final AtomicLong docSize = new AtomicLong(0); private final AtomicLong execTime = new AtomicLong(0); @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final long startTime = systemHelper.getCurrentTimeAsLong(); final IndexUpdateCallback indexUpdateCallback = ComponentUtil.getComponent(IndexUpdateCallback.class); final List<String> sessionIdList = new ArrayList<>(); dataCrawlingThreadList.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* * @param indexUpdateCallback the underlying index update callback to delegate to * @param crawlerClientFactory the factory for creating crawler clients * @param nThreads the number of threads for the executor service (minimum 1) */ public FileListIndexUpdateCallbackImpl(final IndexUpdateCallback indexUpdateCallback, final CrawlerClientFactory crawlerClientFactory,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
import java.io.FileOutputStream; import java.nio.file.Files; import java.util.List; import java.util.Map; import java.util.jar.JarEntry; import java.util.jar.JarOutputStream; import org.codelibs.fess.ds.callback.IndexUpdateCallback; import org.codelibs.fess.entity.DataStoreParams; import org.codelibs.fess.helper.PluginHelper; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.opensearch.config.exentity.DataConfig;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0)