- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 451 for EMPTY (0.01 seconds)
-
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test constructor with empty message String message = ""; SearchEngineClientException exception = new SearchEngineClientException(message); assertNotNull(exception); assertEquals(message, exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.1K 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/entity/PingResponseTest.java
assertTrue(mockConfig.getApiPingEsFieldSet().contains("status")); } @Test public void test_emptyFieldSet() { // Test with empty field set FessConfig mockConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Set<String> getApiPingEsFieldSet() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.7K 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/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
if (id == ProtwordsItem.getId()) { return OptionalEntity.of(ProtwordsItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<ProtwordsItem> selectList(final int offset, final int size) { if (protwordsItemList == null) { reload(null); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java
// The provider's toString might not contain the exact class name // Just verify it's not null and contains some meaningful info assertTrue("toString should not be empty", toString.length() > 0); } @Test public void test_hook_withNullAssistantDirector() { // When & Then - Should not throw exception try { curtainBeforeHook.hook(null);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test constructor with empty message String message = ""; ScriptEngineException exception = new ScriptEngineException(message); assertEquals("", exception.getMessage()); assertNull(exception.getCause()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.7K 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)