- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 259 for FessConfig (0.04 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java
return false; } @Override public OptionalThing<Locale> findBusinessLocale(final ActionRuntime runtimeMeta, final RequestManager requestManager) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String name = fessConfig.getQueryBrowserLangParameterName(); if (StringUtil.isNotBlank(name)) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
/** System helper for date/time operations. */ @Resource private SystemHelper systemHelper; /** Fess configuration settings. */ @Resource protected FessConfig fessConfig; /** * Default constructor for creating a new SearchLogService instance. */ public SearchLogService() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
*/ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final int maxPageSize = fessConfig.getPagingSearchPageMaxSizeAsInteger(); final int windowSize = fessConfig.getRankFusionWindowSizeAsInteger(); if (maxPageSize * 2 < windowSize) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
public class LabelTypeService extends FessAppService { /** The LabelType behavior. */ @Resource protected LabelTypeBhv labelTypeBhv; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */ public LabelTypeService() { super(); } /** * Get a list of label types. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
} public void setForceStop(boolean value) { forceStop.set(value); } }, "systemHelper"); // Minimal FessConfig ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public int getCrawlingThreadCount() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* @throws SsoLoginException if SPNEGO initialization fails */ protected synchronized org.codelibs.spnego.SpnegoAuthenticator getAuthenticator() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (authenticator != null && fessConfig.getSystemPropertyAsBoolean(SPNEGO_INITIALIZED, false)) { return authenticator; } try { // set some System properties
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
*/ @Resource protected FileAuthenticationBhv fileAuthenticationBhv; /** * Configuration settings for the Fess application. */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of file authentication configurations. * * @param fileAuthenticationPager the pager containing pagination settings and search criteria
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
} catch (Exception e) { assertTrue(true); } } public void test_getAvailableBoostDocumentRuleList() { // Mock FessConfig ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Integer getPageDocboostMaxFetchSizeAsInteger() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java
} fessConfig = ComponentUtil.getFessConfig(); dataSerializer = ComponentUtil.getComponent("dataSerializer"); } /** * Gets the Fess configuration instance. * * @return the Fess configuration */ @Override public FessConfig getFessConfig() { return fessConfig; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
// Mock implementation } }; ComponentUtil.register(mockSystemHelper, "systemHelper"); // Register mock FessConfig FessConfig mockConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Integer getSuggestSystemMonitorIntervalAsInteger() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0)