- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for errors (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
import io.minio.MakeBucketArgs; import io.minio.MinioClient; import io.minio.PutObjectArgs; import io.minio.RemoveObjectArgs; import io.minio.Result; import io.minio.SetObjectTagsArgs; import io.minio.errors.ErrorResponseException; import io.minio.messages.Item; /** * @author shinsuke */ public class AdminStorageAction extends FessAdminAction { public static final String ROLE = "admin-storage";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
final List<String> errors = auth.getErrors(); if (!errors.isEmpty()) { logger.warn("{}", errors.stream().collect(Collectors.joining(", "))); if (auth.isDebugActive() && StringUtil.isNotBlank(auth.getLastErrorReason())) { logger.warn("Authentication Failure: {} - Reason: {}", errors.stream().collect(Collectors.joining(", ")),
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
crawlingInfoHelper.putToInfoMap(Constants.CRAWLER_STATUS, errors.isEmpty() ? Constants.T.toString() : Constants.F.toString()); if (!errors.isEmpty()) { crawlingInfoHelper.putToInfoMap(Constants.CRAWLER_ERRORS, errors.stream().map(s -> s.replace(" ", StringUtil.EMPTY)).collect(Collectors.joining(" "))); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
CopyUtil.copy(in, out); } catch (final ClientAbortException e) { logger.debug("Client aborts this request.", e); } catch (final IOException e) { logger.error("Failed to read {} from {}", path, filePath); throw new WebApiException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); } } else { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 15 08:29:24 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
if (logger.isDebugEnabled()) { logger.error("IndexUpdater is terminated.", e); } else if (logger.isInfoEnabled()) { logger.info("IndexUpdater is terminated."); } forceStop(); } catch (final Throwable t) { if (ComponentUtil.available()) { logger.error("IndexUpdater is terminated.", t);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
} protected void handleFileUploadException(final FileUploadException e) throws ServletException { // suppress logging because it can be caught by logging filter //log.error("Failed to parse multipart request", e); throw new ServletException("Failed to upload the file.", e); } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Oct 23 13:27:21 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
systemHelper.calibrateCpuLoad(); ThreadUtil.sleep(interval); }).then(response -> { refresh(); success.accept(true); }).error(t -> error.accept(t)); } public void purgeDocumentSuggest(final LocalDateTime time) { final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery(); boolQueryBuilder
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /error/badRequest.jsp */ HtmlNext path_Error_BadRequestJsp = new HtmlNext("/error/badRequest.jsp"); /** The path of the HTML: /error/error.jsp */ HtmlNext path_Error_ErrorJsp = new HtmlNext("/error/error.jsp"); /** The path of the HTML: /error/notFound.jsp */ HtmlNext path_Error_NotFoundJsp = new HtmlNext("/error/notFound.jsp");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
} catch (final Exception e) { final StringBuilder buf = createStringBuffer(keyObj, getCurrentTimeMillis()); buf.append('\t').append("action:begin"); buf.append('\t').append("error:").append(escapeValue(e.getLocalizedMessage()).replaceAll("\\s", " ")); log(buf); } }); } public void record(final Object keyObj, final StatsAction action) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0)