- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 334 for fessConfig (0.16 sec)
-
src/main/java/org/codelibs/fess/score/ScoreBooster.java
protected String scriptCode = null; protected Function<Map<String, Object>, String[]> idFinder = params -> { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final SearchEngineClient client = ComponentUtil.getSearchEngineClient(); final String index = fessConfig.getIndexDocumentUpdateIndex(); final Object url = params.get("url"); if (url == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.helper; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import jcifs.SID; import jcifs.smb.SmbException; public class SambaHelperTest extends UnitFessTestCase {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:55:43 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
protected Cache<String, List<String>> cache; protected FessConfig fessConfig; @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } fessConfig = ComponentUtil.getFessConfig(); cache = CacheBuilder.newBuilder().maximumSize(fessConfig.getSuggestPopularWordCacheSizeAsInteger().longValue())
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
if (!searchLogList.isEmpty()) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); storeSearchLogList(searchLogList); if (fessConfig.isSuggestSearchLog()) { final SuggestHelper suggestHelper = ComponentUtil.getSuggestHelper(); suggestHelper.indexFromSearchLog(searchLogList); } if (fessConfig.isLoggingSearchUseLogfile()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
protected String getUserCodeFromRequest(final HttpServletRequest request) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String userCode = request.getParameter(fessConfig.getUserCodeRequestParameter()); if (StringUtil.isBlank(userCode)) { return null; } if (fessConfig.isValidUserCode(userCode)) { request.setAttribute(Constants.USER_CODE, userCode);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
dataMap.put(fessConfig.getIndexFieldId(), crawlingInfoHelper.generateId(dataMap)); final String url = dataMap.get(fessConfig.getIndexFieldUrl()).toString(); if (fessConfig.getIndexerClickCountEnabledAsBoolean()) { addClickCountField(dataMap, url, fessConfig.getIndexFieldClickCount()); } if (fessConfig.getIndexerFavoriteCountEnabledAsBoolean()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java
return true; } public void test_initializeClientFactory() { final Map<String, String> systemPropMap = new HashMap<>(); FessProp.propMap.clear(); FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public String getSystemProperty(final String key, final String defaultValue) { return systemPropMap.getOrDefault(key, defaultValue); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 09:48:04 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String refresh = StringUtil.isNotBlank(fessConfig.getIndexReindexRefresh()) ? fessConfig.getIndexReindexRefresh() : null; final String requestsPerSecond = getReindexRequestsPerSecound(fessConfig); final String scroll = StringUtil.isNotBlank(fessConfig.getIndexReindexScroll()) ? fessConfig.getIndexReindexScroll() : null;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("guest", permissionHelper.encode("guest")); final FessConfig fessConfig = ComponentUtil.getFessConfig(); ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getRoleSearchUserPrefix() { return fessConfig.getRoleSearchUserPrefix(); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
private static final Logger logger = LogManager.getLogger(ScheduledJobService.class); @Resource protected ScheduledJobBhv scheduledJobBhv; @Resource protected FessConfig fessConfig; public List<ScheduledJob> getScheduledJobList(final SchedulerPager scheduledJobPager) { final PagingResultBean<ScheduledJob> scheduledJobList = scheduledJobBhv.selectPage(cb -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0)