- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 257 for warm (0.02 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
*/ boolean is(String propertyKey); /** * Get the value for the key 'lasta_di.smart.deploy.mode'. <br> * The value is, e.g. warm <br> * comment: The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm) * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getLastaDiSmartDeployMode(); /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java
*/ public boolean isInfoEnabled() { return INFO.equals(logLevel); } /** * Checks if the log level is WARN. * * @return true if WARN, false otherwise */ public boolean isWarnEnabled() { return WARN.equals(logLevel); } /** * Checks if the log level is ERROR. * @return true if ERROR, false otherwise. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
log.warn("Response buffer too small: {} < {}", buffer.length, expectedSize); throw new SmbException("Response buffer too small: " + buffer.length + " < " + expectedSize); } if (buffer.length > maxSize) { failedValidations.incrementAndGet(); bufferOverflowsPrevented.incrementAndGet();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
} if (executeCommand(thumbnailId, cmdList) != 0) { logger.warn("Failed to execute command for thumbnail ID: {}", thumbnailId); if (outputFile.isFile() && !outputFile.delete()) { logger.warn("Failed to delete output file: {}", outputFile.getAbsolutePath()); } return false; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
/** Array of logger name prefixes to apply the ERROR to WARN conversion */ private final String[] loggerNames; /** * Constructs a new ErrorToWarnRewritePolicy with the specified logger names. * * @param loggerNames array of logger name prefixes to convert ERROR to WARN */ public ErrorToWarnRewritePolicy(final String[] loggerNames) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
} catch (final Exception e) { logger.warn("Failed to delete UrlFilter: sessionId={}", sid, e); } try { // clear queue urlQueueService.clearCache(); urlQueueService.delete(sid); } catch (final Exception e) { logger.warn("Failed to delete UrlQueue: sessionId={}", sid, e); } try {
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/thumbnail/ThumbnailManager.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
*/ public static void printThreadDump() { processThreadDump(logger::info); } /** * Prints thread dump information to the logger at WARN level. */ public static void printThreadDumpAsWarn() { processThreadDump(logger::warn); } /** * Prints thread dump information to the logger at ERROR level. */ public static void printThreadDumpAsError() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
}); try { badWordService.store(entity); suggestHelper.addBadWord(entity.getSuggestWord(), false); } catch (final Exception e) { logger.warn("Failed to process a request.", e); throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
.prepareOpen(docIndex) .execute(ActionListener.wrap(res2 -> logger.info("Opened index: {}", docIndex), e -> logger.warn("Failed to open index: {}", docIndex, e))); }, e -> logger.warn("Failed to close index: {}", docIndex, e))); }); saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL)); return redirect(getClass()); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 18.1K bytes - Viewed (0)