- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 56 for timing (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.util.ComponentUtil; /** * Helper class for controlling crawler execution intervals and timing. * This class manages crawler execution timing based on configurable rules * that can specify different delays for different time periods and days. */ public class IntervalControlHelper {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt
/** * Attaches [tag] to the request using [T] as a key. Tags can be read from a request using * [Request.tag]. Use null to remove any existing tag assigned for [T]. * * Use this API to attach timing, debugging, or other application data to a request so that * you may read it in interceptors, event listeners, or callbacks. */ @JvmName("reifiedTag")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 13.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
/** * FessIntervalController extends DefaultIntervalController to provide * Fess-specific interval control functionality for web crawling operations. * This controller manages delays and timing for various crawling states * including processing delays, queue waiting times, and new URL discovery. */ public class FessIntervalController extends DefaultIntervalController { /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt
activeThreads-- startNextTask() } } } } } /** * This blocking queue hooks into a fake clock rather than using regular JVM timing for functions * like [poll]. It is only usable within task faker tasks. */ private inner class TaskFakerBlockingQueue<T>( val delegate: BlockingQueue<T>, ) : AbstractQueue<T>(), BlockingQueue<T> {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
/** * Data container for search results rendering. * * This class holds all the data needed to render search results in the UI, * including the actual search results, pagination information, facet data, * execution timing, and highlighting parameters. */ public class SearchRenderData { /** List of search result documents. */ protected List<Map<String, Object>> documentItems;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
} }, CrawlingInfoService.class.getCanonicalName()); crawlingInfoHelper.updateParams(sessionId, "Test Crawl", 5); // Verify documentExpires is set (don't check exact timing due to test environment timing issues) assertTrue("documentExpires should be set", crawlingInfoHelper.documentExpires > 0); } public void test_updateParams_defaultName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
public static final String SERVER = "Server"; /** * The HTTP <a href="https://www.w3.org/TR/server-timing/">{@code Server-Timing}</a> header field * name. * * @since 23.6 */ public static final String SERVER_TIMING = "Server-Timing"; /** * The HTTP <a href="https://www.w3.org/TR/service-workers/#update-algorithm">{@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
import jakarta.annotation.PreDestroy; /** * Helper class for managing crawler statistics and performance metrics. * This class provides functionality to track, record, and report statistics * about crawler operations including timing data, performance metrics, and * operational events. It uses an internal cache to maintain statistics * objects and provides methods to begin tracking, record events, and * finalize statistics collection. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* <li>Thread pool management for crawler execution</li> * <li>Session-based crawling with cleanup operations</li> * <li>Old document deletion after successful crawling</li> * <li>Crawling execution monitoring and timing</li> * </ul> */ public class DataIndexHelper { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(DataIndexHelper.class);
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/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
int exitCode = processHelper.destroyProcess(sessionId); assertFalse(processHelper.isProcessRunning(sessionId)); // Exit code should be 0 or -1 depending on timing assertTrue(exitCode == 0 || exitCode == -1); } catch (Exception e) { fail("Unexpected exception: " + e.getMessage()); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0)