- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for load3 (0.02 sec)
-
SystemHelper.java
-> Integer.toString(ComponentUtil.getLabelTypeHelper().load())); L177: updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load())); L178: updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load())); L179: updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load())); L180: updateConfigListenerMap.put("KeyMatch",...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
PathMappingHelper.java
cachedPathMappingList = null; L50: L51: @PostConstruct L52: public void init() { L53: if (logger.isDebugEnabled()) { L54: logger.debug("Initialize {}", this.getClass().getSimpleName()); L55: } L56: load(); L57: } L58: L59: @Override L60: public int load() { L61: final List<String> ptList = getProcessTypeList(); L62: L63: try { L64: final PathMappingBhv pathMappingBhv = ComponentUtil.getComponent(PathMappingBhv.class); L65: cachedPathMappingList...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.6K bytes -
RankFusionProcessor.java
<= {})", maxPageSize, windowSize); L83: this.windowSize = 2 * maxPageSize; L84: } else { L85: this.windowSize = windowSize; L86: } L87: load(); L88: } L89: L90: public void update() { L91: CommonPoolUtil.execute(this::load); L92: } L93: L94: protected void load() { L95: final String value = System.getProperty("rank.fusion.searchers"); L96: if (StringUtil.isBlank(value)) { L97: availableSearcherNameSet = Collections.emptySet();...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.3K bytes -
RelatedQueryHelper.java
relatedQueryMap = Collections.emptyMap(); L37: L38: @PostConstruct L39: public void init() { L40: if (logger.isDebugEnabled()) { L41: logger.debug("Initialize {}", this.getClass().getSimpleName()); L42: } L43: load(); L44: } L45: L46: public List<RelatedQuery> getAvailableRelatedQueryList() { L47: L48: return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> { L49: cb.query().matchAll(); L50: cb.query().addOrderBy_Term_Asc();...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.2K bytes -
AuthenticationChain.java
org.codelibs.fess.es.user.exentity.User; L19: L20:public interface AuthenticationChain { L21: L22: void update(User user); L23: L24: void delete(User user); L25: L26: boolean changePassword(String username, String password); L27: L28: User load(User user); L29: L30:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 899 bytes -
KeyMatchHelper.java
{}", this.getClass().getSimpleName()); L57: } L58: load(); L59: } L60: L61: public List<KeyMatch> getAvailableKeyMatchList() { L62: return ComponentUtil.getComponent(KeyMatchBhv.class).selectList(cb -> { L63: cb.query().matchAll(); L64: cb.fetchFirst(ComponentUtil.getFessConfig().getPageKeymatchMaxFetchSizeAsInteger()); L65: }); L66: } L67: L68: @Override L69: public int load() { L70: final FessConfig fessConfig = ComponentUtil.getFessConfig();...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes -
LdapChain.java
password) { L35: final boolean changed = ComponentUtil.getLdapManager().changePassword(username, password); L36: return !changed || ComponentUtil.getFessConfig().isLdapAdminSyncPassword(); L37: } L38: L39: @Override L40: public User load(final User user) { L41: ComponentUtil.getLdapManager().apply(user); L42: return user; L43: } L44: L45:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.4K bytes -
KuromojiCreator.java
LogManager.getLogger(KuromojiCreator.class); L30: L31: public KuromojiCreator() { L32: super("kuromoji.*\\.txt"); L33: } L34: L35: @PostConstruct L36: public void register() { L37: if (logger.isInfoEnabled()) { L38: logger.info("Load {}", this.getClass().getSimpleName()); L39: } L40: dictionaryManager.addCreator(this); L41: } L42: L43: @Override L44: protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.6K bytes -
CharMappingCreator.java
arMappingCreator.class); L30: L31: public CharMappingCreator() { L32: super("mapping.*\\.txt"); L33: } L34: L35: @PostConstruct L36: public void register() { L37: if (logger.isInfoEnabled()) { L38: logger.info("Load {}", this.getClass().getSimpleName()); L39: } L40: dictionaryManager.addCreator(this); L41: } L42: L43: @Override L44: protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.6K bytes -
StemmerOverrideCreator.java
tor.class); L30: L31: public StemmerOverrideCreator() { L32: super("stemmer_override.*\\.txt"); L33: } L34: L35: @PostConstruct L36: public void register() { L37: if (logger.isInfoEnabled()) { L38: logger.info("Load {}", this.getClass().getSimpleName()); L39: } L40: dictionaryManager.addCreator(this); L41: } L42: L43: @Override L44: protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.6K bytes