- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 343 for EMPTY (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
/** * Retrieves a specific related query by its unique identifier. * * @param id the unique identifier of the related query to retrieve * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found */ public OptionalEntity<RelatedQuery> getRelatedQuery(final String id) { return relatedQueryBhv.selectByPK(id); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test with empty message String message = ""; UnsupportedSearchException exception = new UnsupportedSearchException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
__createdBySelect = false; } // =================================================================================== // Empty String // ============ protected String convertEmptyToNull(String value) { return (value != null && value.length() == 0) ? null : value;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java
__createdBySelect = false; } // =================================================================================== // Empty String // ============ protected String convertEmptyToNull(String value) { return (value != null && value.length() == 0) ? null : value;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 10.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
assertNull(exception.getCause()); assertNull(exception.getComponentName()); } @Test public void test_constructor_withEmptyComponentName() { // Test constructor with empty component name String componentName = ""; ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName); assertEquals(" is not available.", exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
// Test with null result = crawlJob.webConfigIds(null); assertNull(crawlJob.webConfigIds); assertSame(crawlJob, result); // Test with empty array result = crawlJob.webConfigIds(new String[0]); assertEquals(0, crawlJob.webConfigIds.length); assertSame(crawlJob, result); } // Test fileConfigIds setter @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
dbflute_fess/dfprop/replaceSchemaMap.dfprop
# You can drop additional other schemas. # Elements of this map are as below: # o url: (NotRequired - Default same as main schema) # o schema: (Required: if empty schema means valid schema, not required) # o user: (NotRequired - Default same as main schema) # o password: (NotRequired - Default same as main schema) # o propertiesMap: (NotRequired - Default map:{})Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
assertEquals(wildcardHandler, result); } @Test public void test_add_emptyOrigin() { // Setup String emptyOrigin = ""; TestCorsHandler handler = new TestCorsHandler("empty-origin-handler"); // Execute corsHandlerFactory.add(emptyOrigin, handler); CorsHandler result = corsHandlerFactory.get(emptyOrigin); // Verify assertNotNull(result);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertTrue(exception.getStackTrace().length > 0); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test with empty message String message = ""; ResultOffsetExceededException exception = new ResultOffsetExceededException(message); assertEquals(message, exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
pb.redirectErrorStream(true); }; try { processHelper.startProcess(sessionId, cmdList, pbCall); fail("Expected exception for empty command list"); } catch (Exception e) { // Expected - empty command list should cause exception assertTrue(e instanceof JobProcessingException || e instanceof IndexOutOfBoundsException); } } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16K bytes - Click Count (0)