- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 392 for merror (0.07 seconds)
-
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
logger.warn("[LLM] Chat request failed. llmType={}, error={}, elapsedTime={}ms", llmType, e.getMessage(), System.currentTimeMillis() - startTime); throw e; } catch (final Exception e) { logger.warn("[LLM] Chat request failed with unexpected error. llmType={}, error={}, elapsedTime={}ms", llmType, e.getMessage(),
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/LogNotificationAppender.java
@PluginAttribute(value = "minLevel", defaultString = "ERROR") final String minLevel, // @PluginElement("Filter") final Filter filter, // @PluginElement("Layout") final Layout<? extends Serializable> layout) { if (name == null) { LOGGER.error("No name provided for LogNotificationAppender"); return null; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
final Exception outerCause = new IllegalStateException("State error", innerCause); final JobProcessingException exception = new JobProcessingException(outerCause); assertNotNull(exception.getMessage()); assertTrue(exception.getMessage().contains("IllegalStateException")); assertTrue(exception.getMessage().contains("State error")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; /** * Test class for FessIntervalController. * Tests the error handling improvements and delay functionality. */ public class FessIntervalControllerTest extends UnitFessTestCase { @Override protected void setUp(TestInfo testInfo) throws Exception {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/validation/UriType.java
/** * Specifies the protocol type to validate against. * * @return the protocol type */ ProtocolType protocolType(); /** * The validation error message. * * @return the error message */ String message() default "{org.lastaflute.validator.constraints.UriType.message}"; /** * The validation groups. * * @return the validation groupsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
return null; } } // ScriptEngine implementation with error handling private static class ErrorHandlingScriptEngine implements ScriptEngine { @Override public Object evaluate(String template, Map<String, Object> paramMap) { if ("error".equals(template)) { // Simulate error by returning null return null; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
* @param response the servlet response to use for redirection * @param chain the filter chain to continue processing * @throws IOException if an I/O error occurs during processing * @throws ServletException if a servlet error occurs */ @Override public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.5K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
if (contributorSectionBeginIndex == 0) { error("Can't find the contributors section in the release notes $releaseNotes.") } val contributorSectionEndIndex = (contributorSectionBeginIndex until releaseNotesLines.size).firstOrNull { val line = releaseNotesLines[it].trim() line.isNotEmpty() && !line.startsWith("[")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jun 24 07:54:08 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/AggregateLogJob.java
* @return execution result message, empty if successful or error message if failed */ public String execute() { final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper(); final StringBuilder resultBuf = new StringBuilder(); try { searchLogHelper.storeSearchLog(); } catch (final Exception e) { logger.error("Failed to store a search log.", e);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
import org.codelibs.core.lang.StringUtil; import org.codelibs.core.net.URLUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.web.base.FessSearchAction; import org.codelibs.fess.app.web.error.ErrorAction; import org.codelibs.fess.crawler.util.CharUtil; import org.codelibs.fess.helper.PathMappingHelper; import org.codelibs.fess.helper.SearchLogHelper; import org.codelibs.fess.helper.ViewHelper;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 9K bytes - Click Count (0)