- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for load3 (0.04 sec)
-
AuthenticationManager.java
password))); L35: } L36: L37: public void delete(final User user) { L38: chains().of(stream -> stream.forEach(c -> c.delete(user))); L39: } L40: L41: public User load(final User user) { L42: User u = user; L43: for (final AuthenticationChain chain : chains) { L44: u = chain.load(u); L45: } L46: return u; L47: } L48: L49: public void addChain(final AuthenticationChain chain) { L50: chains = ArrayUtils.addAll(chains, chain); L51:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.8K bytes -
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 -
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 -
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 -
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 -
adminlte.min.js
e.cardrefresh"))},t._init=function(){var e=this;n.default(this).find(this._settings.trigger).on("click",(function(){e.load()})),this._settings.loadOnInit&&this.load()},e._jQueryInterface=function(t){var a=n.default(this).data(o),i=n.default.extend({},d,n.default(this).data());a||(a=new e(n.default(this),i),n.default(this).data(o,"string"==typeof t?a:t)),"string"==typeof t&&/load/.test(t)?a[t]():a._init(n.default(this))},e}();n.default(document).on("click",r,(function(e){e&&e.preventDefault(),f._...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 45.3K bytes -
CurlHelper.java
{ L60: final Certificate certificate = CertificateFactory.getInstance("X.509").generateCertificate(in); L61: L62: final KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType()); L63: keyStore.load(null, null); L64: keyStore.setCertificateEntry("server", certificate); L65: L66: final TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); L67: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 4.8K 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 -
ProtocolHelper.java
} L102: } L103: } L104: } L105: } L106: } L107: } catch (final IOException e) { L108: logger.warn("Cannot load subpackages from {}", basePackage, e); L109: } L110: L111: subPackages.stream().forEach(protocol -> { L112: try { L113: final Class<Object> handlerClazz = ClassUtil.forName(basePackage + "." + protocol + ".Handler");...github.com/codelibs/fess/src/main/java/org/code...Wed Jun 19 01:34:15 UTC 2024 7.4K bytes