- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 211 for invalide (0.05 seconds)
-
src/main/java/org/codelibs/fess/job/IndexExportJob.java
return Paths.get(exportPath, "_invalid", hashString(url) + formatter.getFileExtension()); } return resolved; } catch (final Exception e) { logger.debug("Failed to parse URL: {}", url, e); return Paths.get(exportPath, "_invalid", hashString(url) + formatter.getFileExtension()); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java
} assertTrue(caught); } @Test public void test_nestedCause() { final IllegalArgumentException rootCause = new IllegalArgumentException("Invalid argument"); final RuntimeException middleCause = new RuntimeException("Middle error", rootCause); final LlmException exception = new LlmException("Top level error", middleCause);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 04:19:06 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
@Test public void test_init_failure() { ThumbnailManager manager = new ThumbnailManager() { @Override public void init() { baseDir = new File("/invalid/path/that/cannot/be/created"); if (!baseDir.isDirectory()) { throw new FessSystemException("Not found: " + baseDir.getAbsolutePath()); } } };Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
if (!fessConfig.isAcceptedSearchReferer(request.getHeader("referer"))) { writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Referer is invalid.")); return; } if (!fessConfig.isApiSearchScroll()) { writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Scroll Search is not available."));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
assertFalse(exception.aborted()); } @Test public void test_constructorWithThrowableCause_AssertionError() { // Test with AssertionError String url = "http://example.com/invalid-state"; String message = "Assertion failed during data store access"; AssertionError error = new AssertionError("Data integrity check failed");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 16.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
public void test_throwAndCatchWithCause() { // Test throwing and catching the exception with cause String expectedMessage = "System error occurred"; Exception expectedCause = new IllegalStateException("Invalid state"); try { throw new FessSystemException(expectedMessage, expectedCause); } catch (FessSystemException e) { assertEquals(expectedMessage, e.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java
max = Integer.parseInt(fessConfig.get(maxKey)); } message = constraintAnnotation.message(); validateParameters(); } @Override public boolean isValid(final CharSequence value, final ConstraintValidatorContext context) { if (value == null) { return true; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
if (logger.isDebugEnabled()) { logger.debug("Invalid query: {}", form.q, e); } throwValidationError(e.getMessageCode(), this::asListHtml); } catch (final ResultOffsetExceededException e) { if (logger.isDebugEnabled()) { logger.debug("Invalid offset: {}", form.offset, e); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
* @param attributes the attributes attached to the element * @throws SAXException if a SAX error occurs or if the XML format is invalid */ @Override public void startElement(final String uri, final String localName, final String qName, final Attributes attributes) throws SAXException { if (logger.isDebugEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0)