- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for Road (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 -
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 -
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 -
CrawlerStatsHelper.java
CacheBuilder.newBuilder().maximumSize(maxCacheSize).expireAfterWrite(cacheExpireAfterWrite, TimeUnit.MILLISECONDS) L61: .build(new CacheLoader<String, StatsObject>() { L62: @Override L63: public StatsObject load(final String key) { L64: return new StatsObject(); L65: } L66: }); L67: } L68: L69: @PreDestroy L70: public void destroy() { L71: if (logger.isDebugEnabled()) { L72: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 9.9K bytes -
FessFunctions.java
LoadingCache<String, Long> resourceHashCache = L83: CacheBuilder.newBuilder().maximumSize(1000).expireAfterWrite(10, TimeUnit.MINUTES).build(new CacheLoader<String, Long>() { L84: @Override L85: public Long load(final String key) throws Exception { L86: try { L87: final Path path = Paths.get(LaServletContextUtil.getServletContext().getRealPath(key)); L88: if (Files.isRegularFile(path)) { L89:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 16.9K bytes -
SearchLogHelper.java
.maximumSize(userInfoCacheSize)// L96: .expireAfterWrite(userCheckInterval, TimeUnit.MILLISECONDS)// L97: .build(new CacheLoader<String, UserInfo>() { L98: @Override L99: public UserInfo load(final String key) throws Exception { L100: return storeUserInfo(key); L101: } L102: }); L103: searchLogLogger = LogManager.getLogger(loggerName); L104: } L105: L106: public void...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 02:07:37 UTC 2024 21.7K bytes -
SearchEngineApiManager.java
acceptedRoles = { "admin" }; L58: L59: public SearchEngineApiManager() { L60: setPathPrefix(ADMIN_SERVER); L61: } L62: L63: @PostConstruct L64: public void register() { L65: if (logger.isInfoEnabled()) { L66: logger.info("Load {}", this.getClass().getSimpleName()); L67: } L68: ComponentUtil.getWebApiManagerFactory().add(this); L69: } L70: L71: @Override L72: public boolean matches(final HttpServletRequest request) { L73: final String servletPath...github.com/codelibs/fess/src/main/java/org/code...Thu Aug 15 08:29:24 UTC 2024 11.3K bytes -
fess_message_ru.properties
does_not_exist={0} file does not exist. L96:errors.failed_to_delete_file=Failed to delete {0} file. L97:errors.docid_not_found=Not found Doc ID:{0} L98:errors.document_not_found=Not found URL of Doc ID:{0} L99:errors.not_load_from_server=Could not load from this server: {0} L100:errors.failed_to_start_job=Failed to start job {0}. L101:errors.failed_to_stop_job=Failed to stop job {0}. L102:errors.failed_to_download_synonym_file=Failed to download the Synonym file. L103:errors.failed_to_upload_synonym_file=Failed...github.com/codelibs/fess/src/main/resources/fes...Fri May 20 12:12:28 UTC 2022 10.2K bytes -
AdminBackupAction.java
.toList())); L262: } L263: L264: private void importSystemProperties(final String fileName, final File tempFile) { L265: try (final InputStream in = new FileInputStream(tempFile)) { L266: ComponentUtil.getSystemProperties().load(in); L267: } catch (final IOException e) { L268: logger.warn("Failed to process system.properties file: {}", fileName, e); L269: } finally { L270: deleteTempFile(tempFile); L271: } L272: } L273: L274: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes