- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 719 for timer (0.02 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* @param keyObj the crawler object * @param time the timestamp to include * @return a StringBuilder with basic log information */ private StringBuilder createStringBuffer(final Object keyObj, final long time) { final StringBuilder buf = new StringBuilder(1000); buf.append("url:").append(getUrl(keyObj)); buf.append('\t'); buf.append("time:").append(FessFunctions.formatDate(new Date(time)));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
regression that was introduced in OkHttp 3.14.5. ## Version 3.14.5 _2020-01-03_ * Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact the stream only or the entire connection. With this fix OkHttp will now send HTTP/2 pings after a stream timeout to determine whether the connection should remain eligible for pooling.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
}); jobLogBhv.batchUpdate(list); } } /** * Sets the time interval after which jobs are considered expired. * * @param expiredJobInterval the time interval in milliseconds */ public void setExpiredJobInterval(final long expiredJobInterval) { this.expiredJobInterval = expiredJobInterval; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Suppliers.java
} } /** * Returns a supplier that caches the instance supplied by the delegate and removes the cached * value after the specified time has passed. Subsequent calls to {@code get()} return the cached * value if the expiration time has not passed. After the expiration time, a new value is * retrieved, cached, and returned. See: <a * href="http://en.wikipedia.org/wiki/Memoization">memoization</a> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
assertTrue(scheduler.containsKey("running")); isRunning = (Boolean) scheduler.get("running"); } if (300 <= count) { logger.info("Time out: Crawler takes too much time"); //TODO fail(); // Time Out } logger.info("Crawler terminated"); } protected static String createWebConfig(final Map<String, Object> requestBody) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java
// Test toggling ShowReport multiple times assertFalse(valve.isShowReport()); valve.setShowReport(true); assertTrue(valve.isShowReport()); valve.setShowReport(false); assertFalse(valve.isShowReport()); valve.setShowReport(true); assertTrue(valve.isShowReport()); // Test toggling ShowServerInfo multiple times assertFalse(valve.isShowServerInfo());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
public void commit() { // No-op } }; // Initial execution time should be 0 assertEquals(0L, callback.getExecuteTime()); // Store a document callback.store(new DataStoreParams(), new HashMap<>()); // Execution time should be greater than 0 assertTrue(callback.getExecuteTime() >= 10L); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Comparators.java
* // returns {"foo", "quux"} * } * * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log * k)), as opposed to e.g. {@code Stream.sorted(comparator).limit(k)}, which currently takes O(n * log n) time and O(n) space. * * @throws IllegalArgumentException if {@code k < 0} * @since 22.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
if (maxAge > 0) { try { final long time = getCurrentTime() / 1000 - Long.parseLong(values[0]); if (time > maxAge || time < 0) { if (logger.isDebugEnabled()) { logger.debug("role info is expired: {} > {}", time, maxAge); } return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
* * @return the document count */ long getDocumentSize(); /** * Returns the total execution time for index update operations. * * @return the execution time in milliseconds */ long getExecuteTime(); /** * Commits all pending index update operations to ensure data persistence.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)