- Sort Score
- Num 10 results
- Language All
Results 581 - 590 of 1,067 for nell (0.02 seconds)
-
src/test/java/org/codelibs/fess/it/admin/GeneralTests.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* * @param name the name to register the data store under, must not be null * @param dataStore the data store instance to register, must not be null * @throws IllegalArgumentException if either name or dataStore is null */ public void add(final String name, final DataStore dataStore) { if (name == null || dataStore == null) { throw new IllegalArgumentException(Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
return null; } }); MockSMailPostingDiscloser discloser = new MockSMailPostingDiscloser(); // Should return early without doing anything try { notificationHelper.sendToSlack(null, discloser); } catch (Exception e) { fail("sendToSlack() should not throw an exception with null URLs: " + e.getMessage()); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 20K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
} @Override protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); } @Test public void test_init() { // Test initialization with null fields queryFieldConfig.init(); // Verify response fields are initializedCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
/** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FessResponseProcessor.class); /** Factory for creating and managing ingesters */ private IngestFactory ingestFactory = null; /** * Initializes the processor after dependency injection. * Sets up the ingest factory if available in the component system. */ @PostConstruct public void init() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapUtilTest.java
import org.junit.jupiter.api.Test; public class LdapUtilTest extends UnitFessTestCase { @Test public void test_escapeValue_null() { assertEquals("", LdapUtil.escapeValue(null)); } @Test public void test_escapeValue_empty() { assertEquals("", LdapUtil.escapeValue("")); } @Test public void test_escapeValue_noSpecialChars() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 4.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/RolePager.java
existPrePage = false; existNextPage = false; pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; name = null; versionNo = null; } /** * Gets the default current page number. * @return The default current page number. */ protected int getDefaultCurrentPageNumber() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java
@Test public void test_setupStoreCondition_nullInput() { try { crawlingInfoService.setupStoreCondition(null); fail("Should throw FessSystemException for null input"); } catch (final FessSystemException e) { assertEquals("Crawling Session is null.", e.getMessage()); } } @Test public void test_crawlingInfoPager_initialization() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
try { final Method method = CustomSize.class.getMethod("message"); final Object defaultValue = method.getDefaultValue(); return defaultValue != null ? defaultValue.toString() : null; } catch (final Exception e) { return "{jakarta.validation.constraints.Size.message}"; } } private Class<?>[] getDefaultGroups() { try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
assertEquals("/site1", basePath); basePath = virtualHostHelper.getVirtualHostBasePath("", new HtmlNext("/test")); assertEquals("", basePath); basePath = virtualHostHelper.getVirtualHostBasePath(null, new HtmlNext("/test")); assertEquals("", basePath); basePath = virtualHostHelper.getVirtualHostBasePath(" ", new HtmlNext("/test"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0)