- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 65 for SimpleImpl (0.15 sec)
-
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
user.setName("modified"); } } } // Test FessConfig implementation private static class TestFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; boolean ldapAdminSyncPassword = false; @Override public boolean isLdapAdminSyncPassword() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
throw new RuntimeException(e); } } }; ComponentUtil.register(systemHelper, "systemHelper"); fessConfig = new FessConfig.SimpleImpl() { @Override public int getDayForCleanup() { return 30; } @Override public boolean hasNotification() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
public Object execute(String scriptType, String script) { return null; } } // Test configuration class extending FessConfig.SimpleImpl private static class TestFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertNull(languageHelper.getSupportedLanguage("ja ")); assertNull(languageHelper.getSupportedLanguage(" ja")); } // Mock classes private static class MockFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; @Override public String[] getIndexerLanguageFieldsAsArray() { return new String[] { "title", "content" }; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
this.testData = testData; } public List<RelatedContent> getTestData() { return testData; } } static class MockFessConfig extends FessConfig.SimpleImpl { @Override public Integer getPageRelatedcontentMaxFetchSizeAsInteger() { return 1000; } }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
} private void setupMockConfig(String fesenUrl, String username, String password, String certificateAuthorities) { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getFesenHttpSslCertificateAuthorities() { return certificateAuthorities;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
} }; ComponentUtil.register(mockSystemHelper, "systemHelper"); // Register mock FessConfig FessConfig mockConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Integer getSuggestSystemMonitorIntervalAsInteger() { return 60;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
} // Test getSsoType() with actual FessConfig public void test_getSsoType_withFessConfig() { final String expectedSsoType = "openid"; FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public String getSsoType() { return expectedSsoType; } }; ComponentUtil.setFessConfig(fessConfig);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
} public void test_convertPrefixQuery_withNegativeImportantContentBoost() throws Exception { final FessConfig fessConfig = ComponentUtil.getFessConfig(); ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { public String get(String propertyKey) { return fessConfig.get(propertyKey); } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
public boolean hasShutdownListener() { return hasShutdownListener; } } // Test configuration class extending FessConfig.SimpleImpl private static class TestFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; public TestFessConfig() { super();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0)