- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 316 for warns (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
scheduledJobService.getScheduledJob(id).ifPresent(entity -> { try { entity.stop(); } catch (final Exception e) { logger.warn("Failed to process a request.", e); throwValidationErrorApi(messages -> { messages.addErrorsFailedToStopJob(GLOBAL, entity.getName()); }); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
try (InputStream inputStream = form.charMappingFile.getInputStream()) { file.update(inputStream); } catch (final IOException e) { logger.warn("Failed to process a request.", e); throwValidationError(messages -> messages.addErrorsFailedToUploadMappingFile(GLOBAL), () -> redirectWith(getClass(), moreUrl("uploadpage/" + form.dictId)));
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
default: logger.warn("Failed to access object with error code {}: bucket={}, path={}", code, bucketName, path, e); break; } } catch (final Exception e) { logger.warn("Failed to get object: bucket={}, path={}", bucketName, path, e); } return null; } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
.orElseGet(() -> redirect(LoginAction.class)); }; validatePasswordForm(form, toIndexPage); if (!getUserBean().isPresent()) { logger.warn("User session not found during password change - potential session timeout or security issue"); return redirect(LoginAction.class); } final String username = getUserBean().get().getUserId();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
} throw e; } catch (final Exception e) { // Log and return null for other exceptions to maintain backward compatibility logger.warn("Failed to evaluate Groovy script: template={}, parameters={}", template, safeParamMap, e); return null; } finally { // Properly clean up GroovyClassLoader resourcesRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K 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) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
if (compatibility < 3) { log.warn("Using insecure NTLMv1 authentication (LM compatibility level {}). " + "Please upgrade to NTLMv2 by setting jcifs.smb.lmCompatibility to 3 or higher.", compatibility); } switch (compatibility) { case 0: case 1: // NTLMv1 - deprecated and insecure
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
if (e.getCause() == null) { logger.debug(e.getMessage()); } else { logger.warn("Failed to process thumbnail: id={}", id, e); } } catch (final Exception e) { logger.warn("Failed to process thumbnail: id={}", id, e); } return false; } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
} final File parentFile = outputFile.getParentFile(); if (!parentFile.exists()) { parentFile.mkdirs(); } if (!parentFile.isDirectory()) { logger.warn("Parent directory not found: {}", parentFile.getAbsolutePath()); return false; } return process(thumbnailId, responseData -> { if (!isImageMimeType(responseData)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
try { downloadObject(getObjectName(pi.getPath(), pi.getName()), out); } catch (final StorageException e) { logger.warn("Failed to download {}", id, e); throwValidationErrorApi(messages -> messages.addErrorsStorageFileDownloadFailure(GLOBAL, pi.getName())); } }); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0)