- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 51 for load3 (0.03 sec)
-
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 -
AbstractConfigHelper.java
AbstractConfigHelper { L22: L23: protected long reloadInterval = 1000L; L24: L25: public void update() { L26: CommonPoolUtil.execute(this::load); L27: } L28: L29: protected void waitForNext() { L30: if (reloadInterval > 0) { L31: ThreadUtil.sleep(reloadInterval); L32: } L33: } L34: L35: public abstract int load(); L36: L37: public void setReloadInterval(final long reloadInterval) { L38: this.reloadInterval = reloadInterval; L39: } L40:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.2K 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 -
ProtwordsCreator.java
ProtwordsCreator.class); L30: L31: public ProtwordsCreator() { L32: super("protwords.*\\.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 -
SynonymCreator.java
LogManager.getLogger(SynonymCreator.class); L30: L31: public SynonymCreator() { L32: super("synonym.*\\.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 -
LabelTypeHelper.java
labelTypePatternList; L48: L49: @PostConstruct L50: public void init() { L51: if (logger.isDebugEnabled()) { L52: logger.debug("Initialize {}", this.getClass().getSimpleName()); L53: } L54: load(); L55: } L56: L57: @Override L58: public int load() { L59: final List<LabelType> labelTypeList = ComponentUtil.getComponent(LabelTypeService.class).getLabelTypeList(); L60: buildLabelTypeItems(labelTypeList); L61: buildLabelTypePatternList(labelTypeList);...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 11.7K bytes -
GoAction.java
messages.addErrorsNotFoundOnFileSystem(GLOBAL, targetUrl)); L147: return redirect(ErrorAction.class); L148: } L149: return response; L150: } catch (final Exception e) { L151: logger.warn("Failed to load: {}", doc, e); L152: saveError(messages -> messages.addErrorsNotLoadFromServer(GLOBAL, targetUrl)); L153: return redirect(ErrorAction.class); L154: } L155: } L156: L157: protected boolean isFileSystemPath(final String...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.9K bytes -
PopularWordHelper.java
L84: logger.warn("Failed to generate popular words.", e); L85: } L86: L87: return wordList; L88: }); L89: } catch (final ExecutionException e) { L90: logger.warn("Failed to load popular words.", e); L91: } L92: return Collections.emptyList(); L93: } L94: L95: public void clearCache() { L96: cache.invalidateAll(); L97: } L98: L99: protected String getCacheKey(final String seed, final String[]...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.6K bytes