- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 322 for fessConfig (0.09 sec)
-
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (logger.isDebugEnabled()) { logger.debug("Deleting document: url={}", dataMap.get(fessConfig.getIndexFieldUrl())); } // required check if (!dataMap.containsKey(fessConfig.getIndexFieldUrl()) || dataMap.get(fessConfig.getIndexFieldUrl()) == null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
* @return The search role. */ protected String createSearchRole(final int type, final String name) { if (fessConfig.isLdapLowercasePermissionName()) { return type + fessConfig.getCanonicalLdapName(name).toLowerCase(Locale.ROOT); } return type + fessConfig.getCanonicalLdapName(name); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} final FessConfig fessConfig = ComponentUtil.getFessConfig(); escapedHighlightPre = LaFunctions.h(originalHighlightTagPre); escapedHighlightPost = LaFunctions.h(originalHighlightTagPost); highlightTagPre = fessConfig.getQueryHighlightTagPre(); highlightTagPost = fessConfig.getQueryHighlightTagPost(); highlightedFields = fessConfig.getQueryHighlightContentDescriptionFieldsAsArray();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.lastaflute.core.security.InvertibleCryptographer; import org.lastaflute.web.servlet.cookie.CookieResourceProvider; /** * The provider of cookie resource. * * @author jflute */ public class FessCookieResourceProvider implements CookieResourceProvider { protected final FessConfig harborConfig;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
* @return The converted OpenSearch QueryBuilder */ protected QueryBuilder convertWildcardQuery(final QueryContext context, final WildcardQuery wildcardQuery, final float boost) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String field = getSearchField(context.getDefaultField(), wildcardQuery.getField()); if (Constants.DEFAULT_FIELD.equals(field)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* then falls back to the URL configured in FessConfig. * * @return the HTTP URL for the OpenSearch server */ public static String getFesenHttpUrl() { final String url = SystemUtil.getSearchEngineHttpAddress(); if (url != null) { return url; } final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getFesenHttpUrl(); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); return searchEngineClient.getDocumentList(fessConfig.getIndexDocumentSearchIndex(), searchRequestBuilder -> SearchConditionBuilder
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
* @return the configured request */ protected CurlRequest request(final CurlRequest request) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String username = fessConfig.getFesenUsername(); final String password = fessConfig.getFesenPassword(); if (StringUtil.isNotBlank(username) && StringUtil.isNotBlank(password)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
protected KeyMatchBhv keyMatchBhv; /** * Default constructor. */ public KeyMatchService() { super(); } /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Get a list of key matches. * * @param keyMatchPager Pager for key matches. * @return A list of key matches. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger(); } /** * Gets the maximum size for symbol terms from configuration. * * @return the maximum symbol term size */ protected int getMaxSymbolTermSize() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0)