- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 204 for invalidAt (0.13 seconds)
-
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
.orElseThrow(() -> new SsoMessageException( messages -> messages.addErrorsFailedToProcessSsoRequest(UserMessages.GLOBAL_PROPERTY_KEY, "Invalid state."), "Failed to process metadata.", new SsoProcessException("Invalid state."))); } /** * Gets the logout response. * @return The logout response. */ protected ActionResponse getLogoutResponse() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
} @Test public void test_constructor_withNullMessageAndCause() { // Test constructor with null message but valid cause Exception cause = new IllegalArgumentException("Invalid argument"); DictionaryException exception = new DictionaryException(null, cause); assertNotNull(exception); assertNull(exception.getMessage()); assertNotNull(exception.getCause());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
} @Test public void test_multipleNestedExceptions() { // Test with multiple nested exceptions Exception innerCause = new IllegalArgumentException("Invalid image format"); Exception middleCause = new RuntimeException("Processing failed", innerCause); ThumbnailGenerationException exception = new ThumbnailGenerationException("Thumbnail generation error", middleCause);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
if (values.length > 2) { throw new InvalidQueryException(messages -> messages.addErrorsInvalidQuerySortValue(UserMessages.GLOBAL_PROPERTY_KEY, text), "Invalid sort field: " + termQuery); } final String sortField = values[0]; if (!getQueryFieldConfig().isSortField(sortField)) { throw new InvalidQueryException(
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
} @Test public void test_buildFilePath_differentHashForDifferentUrls() { final Path result1 = indexExportJob.buildFilePath("/export", "invalid url 1 %%%", new HtmlIndexExportFormatter()); final Path result2 = indexExportJob.buildFilePath("/export", "invalid url 2 %%%", new HtmlIndexExportFormatter()); assertFalse(result1.equals(result2)); } @Test public void test_buildHtml_emptyMap() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
*/ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the number of records to display per page. * If not set or invalid, returns the default page size. * * @return The page size */ public int getPageSize() { if (pageSize <= 0) { pageSize = getDefaultPageSize(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the number of records to display per page. * If page size is not set or is invalid, returns the default page size. * * @return page size */ public int getPageSize() { if (pageSize <= 0) { pageSize = getDefaultPageSize(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
// Test throwing and catching the exception with cause String expectedMessage = "Storage write error"; Exception expectedCause = new IllegalStateException("Invalid state"); try { throw new StorageException(expectedMessage, expectedCause); } catch (StorageException 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.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
if (!"POST".equalsIgnoreCase(request.getMethod())) { if (logger.isDebugEnabled()) { logger.debug("Invalid method for chat request. method={}", request.getMethod()); } writeJsonResponse(response, HttpServletResponse.SC_METHOD_NOT_ALLOWED, createErrorResponse("Method not allowed")); return;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/exbhv/SearchLogBhv.java
return LocalDateTime.ofInstant(instant, ZoneId.systemDefault()); } catch (final DateTimeParseException e) { logger.debug("Invalid date format: {}", value, e); } } return DfTypeUtil.toLocalDateTime(value); } @SuppressWarnings("unchecked") @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 4.8K bytes - Click Count (0)