- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for Interval (0.65 sec)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
protected int toMinutes; /** Delay in milliseconds to apply during this interval */ protected long delay; /** Array of days when this rule applies (1=Sunday, 7=Saturday) */ protected int[] days; /** Flag indicating if the interval spans across midnight */ protected boolean reverse; /** * Creates a new interval rule.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
} } return readInterval; } /** * Sleep for the specified interval. * @param interval The interval. */ protected void sleep(final long interval) { ThreadUtil.sleepQuietly(interval); } /** * Store the data. * @param dataConfig The data configuration. * @param callback The callback.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; /** * HostIntervalController is an implementation of {@link org.codelibs.fess.crawler.interval.IntervalController} * that controls the interval between requests to the same host. * It uses a Guava Cache to store the last access time for each host. * The delayBeforeProcessing method is overridden to introduce a delay before processing a URL,Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
*/ public void setMaxAccessCount(final long maxAccessCount) { this.maxAccessCount = maxAccessCount; } /** * Sets the interval time between crawling executions. * * @param crawlingExecutionInterval The crawling execution interval in milliseconds */ public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
suggester.refresh(); if (popularWordHelper != null) { popularWordHelper.clearCache(); } } /** * Sets the interval for storing search logs. * * @param searchStoreInterval The search store interval in minutes. */ public void setSearchStoreInterval(final long searchStoreInterval) { this.searchStoreInterval = searchStoreInterval; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
} } } } /** * Sets the crawling execution interval. * This interval controls the delay between starting new crawler threads * and the frequency of status checks during crawling operations. * * @param crawlingExecutionInterval interval in milliseconds */ public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
return TimeoutManager.getInstance().addTimeoutTarget(target, monitorInterval, true); } /** * Sets the monitor interval for job monitoring. * * @param monitorInterval the monitor interval in seconds */ public void setMonitorInterval(final int monitorInterval) { this.monitorInterval = monitorInterval; } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
this.ruleManager = ruleManager; } /** * Returns the interval controller. * @return The IntervalController instance. */ public IntervalController getIntervalController() { return intervalController; } /** * Sets the interval controller. * @param intervalController The IntervalController instance to set. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# HTTP status codes considered as failure URLs. crawler.failure.url.status.codes=404 # Interval (seconds) for system monitor during crawling. crawler.system.monitor.interval=60 # Whether to ignore idle threads in hot thread monitoring. crawler.hotthread.ignore_idle_threads=true # Interval for hot thread monitoring (e.g., 500ms). crawler.hotthread.interval=500ms # Number of snapshots for hot thread monitoring. crawler.hotthread.snapshots=10
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java
* */ public class HostIntervalControllerTest extends PlainTestCase { /** * Test that crawling intervals for the same host work correctly. */ public void test_delayBeforeProcessing() { // Number of concurrent tasks final int numTasks = 100; // Interval in milliseconds final Long waittime = 100L; CrawlingParameterUtil.setUrlQueue(new UrlQueueImpl());Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0)