- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for calibrateCpuLoad (0.12 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} catch (final IOException e) { throw new IORuntimeException(e); } if (!systemHelper.calibrateCpuLoad(timeout)) { breakCursor = true; } } }); }; } /** * Get the write call for user info ndjson.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
private static class TestSystemHelper extends SystemHelper { long processingTime = 0; long currentTime = System.currentTimeMillis(); @Override public boolean calibrateCpuLoad() { // Do nothing return true; } @Override public long getCurrentTimeAsLong() { long time = currentTime;
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/main/java/org/codelibs/fess/helper/SystemHelper.java
*/ public boolean calibrateCpuLoad() { return calibrateCpuLoad(0L); } /** * Calibrates the CPU load with a timeout. * * @param timeoutInMillis The timeout in milliseconds. * @return true if the CPU load is within the acceptable range, false otherwise. */ public boolean calibrateCpuLoad(final long timeoutInMillis) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ protected void process(final FessConfig fessConfig, final ThumbnailQueue entity) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); systemHelper.calibrateCpuLoad(); if (logger.isDebugEnabled()) { logger.debug("Processing thumbnail: {}", entity); } final String generatorName = entity.getGenerator(); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} @Override public String generateDocId(Map<String, Object> map) { return "doc_" + System.currentTimeMillis(); } @Override public boolean calibrateCpuLoad() { cpuLoadCallCount.incrementAndGet(); return true; } @Override public void waitForNoWaitingThreads() { // Do nothing in test }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
if (interval > 0) { // sleep ThreadUtil.sleep(interval); // 10 sec (default) } systemHelper.calibrateCpuLoad(); systemHelper.waitForNoWaitingThreads(); intervalControlHelper.delayByRules(); if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0)