- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 389 for fess_config (0.06 sec)
-
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) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
*/ public List<String> getExcludedUrlList(final String configId) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final int failureCount = fessConfig.getFailureCountThreshold(); final String ignoreFailureType = fessConfig.getIgnoreFailureType(); if (failureCount < 0) { return Collections.emptyList(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
import org.codelibs.core.lang.StringUtil; import org.codelibs.core.misc.Pair; import org.codelibs.core.misc.Tuple3; import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalThing; import org.lastaflute.web.login.LoginManager;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
final Map<String, Object> doc = searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getResponseFields(), getUserBean()).orElse(null); final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldThumbnail(), String.class); if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { // 404
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
@Resource protected DictionaryManager dictionaryManager; /** The Fess configuration for accessing system settings. */ @Resource protected FessConfig fessConfig; /** * Constructs a new stopwords service. */ public StopwordsService() { // do nothing } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
@Resource protected DictionaryManager dictionaryManager; /** The Fess configuration for accessing system settings. */ @Resource protected FessConfig fessConfig; /** * Constructs a new synonym service. */ public SynonymService() { // do nothing } /** * Retrieves a list of synonyms for a given dictionary and pager.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
/** Behavior handler for LabelType entity operations */ @Resource protected LabelTypeBhv labelTypeBhv; /** Configuration settings for Fess application */ @Resource protected FessConfig fessConfig; /** Client for interacting with the search engine */ @Resource protected SearchEngineClient searchEngineClient; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K 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); ssoManager = new SsoManager();
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/main/java/org/codelibs/fess/entity/GeoInfo.java
* @throws InvalidQueryException if geo point format is invalid or parsing fails */ public GeoInfo(final HttpServletRequest request) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String[] geoFields = fessConfig.getQueryGeoFieldsAsArray(); final Map<String, List<QueryBuilder>> geoMap = new HashMap<>(); StreamUtil.stream(request.getParameterMap())
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/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* Initializes the protocol helper by loading configured protocols from FessConfig * and scanning for available protocol handlers in the classpath. * This method is called automatically after bean construction. */ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); webProtocols = split(fessConfig.getCrawlerWebProtocols(), ",")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0)