- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for integer (0.05 sec)
-
FessConfig.java
L3433: * Get the value for the key 'indexer.webfs.update.interval' as {@link Integer}. <br> L3434: * The value is, e.g. 10000 <br> L3435: * @return The value of found property. (NotNull: if not found, exception but basically no way) L3436: * @throws NumberFormatException When the property is not integer. L3437: */ L3438: Integer getIndexerWebfsUpdateIntervalAsInteger(); L3439: L3440: /** L3441: * Get the value for the key 'indexer.webfs.max.document.cache.size'. <br> L3442:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
FessProp.java
return split(getJobSystemJobIds(), ",").get(stream -> stream.anyMatch(s -> s.equals(id))); L834: } L835: L836: String getSmbAvailableSidTypes(); L837: L838: default Integer getAvailableSmbSidType(final int sidType) { L839: @SuppressWarnings("unchecked") L840: Map<Integer, Integer> params = (Map<Integer, Integer>) propMap.get(SMB_AVAILABLE_SID_TYPES); L841: if (params == null) { L842: params = split(getSmbAvailableSidTypes(), ",").get(stream -> stream.map(s -> {...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 87.2K bytes -
SearchApiManager.java
Long.toString(data.getQueryTime()); L313: final String pageSize = Integer.toString(data.getPageSize()); L314: final String currentPageNumber = Integer.toString(data.getCurrentPageNumber()); L315: final String allRecordCount = Long.toString(data.getAllRecordCount()); L316: final String allRecordCountRelation = data.getAllRecordCountRelation(); L317: final String allPageCount = Integer.toString(data.getAllPageCount()); L318: final List<Map<String,...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K bytes -
SystemHelper.java
L176: updateConfigListenerMap.put("Label", () -> 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()));...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
MonitorTarget.java
tempBuf.append('"').append(key).append("\":"); L36: try { L37: final Object value = supplier.get(); L38: if (value == null) { L39: tempBuf.append("null"); L40: } else if (value instanceof Integer || value instanceof Long) { L41: tempBuf.append(value); L42: } else if (value instanceof Short) { L43: tempBuf.append(((Short) value).shortValue()); L44: } else if (value instanceof double[]) { L45:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3K bytes -
CrawlingConfig.java
L35: String getName(); L36: L37: String[] getPermissions(); L38: L39: String[] getVirtualHosts(); L40: L41: String getDocumentBoost(); L42: L43: String getIndexingTarget(String input); L44: L45: String getConfigId(); L46: L47: Integer getTimeToLive(); L48: L49: CrawlerClientFactory initializeClientFactory(Supplier<CrawlerClientFactory> creator); L50: L51: Map<String, String> getConfigParameterMap(ConfigName name); L52: L53: default void initializeDefaultHttpProxy(final...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 5.5K bytes -
DictionaryFile.java
L240: return currentPageNumber != allPageCount; L241: } L242: L243: public void setPageRangeSize(final int pageRangeSize) { L244: this.pageRangeSize = pageRangeSize; L245: } L246: L247: public List<Integer> createPageNumberList() { L248: int startPage = currentPageNumber - pageRangeSize; L249: if (startPage < 1) { L250: startPage = 1; L251: } L252: int endPage = currentPageNumber + pageRangeSize;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 6.8K bytes -
IntervalControlHelper.java
parseTime(to); L101: toHours = tints[0]; L102: toMinutes = tints[1]; L103: final String[] values = days.split(","); L104: final List<Integer> list = new ArrayList<>(); L105: for (final String value : values) { L106: try { L107: list.add(Integer.parseInt(value.trim())); L108: } catch (final NumberFormatException e) {} L109: } L110: this.days = new int[list.size()]; L111: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5.8K bytes -
DocBoostMatcher.java
map.isEmpty()) { L58: return 0.0f; L59: } L60: L61: final Object value = ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(boostExpression, map); L62: if (value instanceof Integer) { L63: return ((Integer) value).floatValue(); L64: } L65: if (value instanceof Long) { L66: return ((Long) value).floatValue(); L67: } L68: if (value instanceof Float) { L69: return (Float) value; L70: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.8K bytes -
ViewHelper.java
SCREEN_WIDTH, width); L300: } L301: } else { L302: final HttpSession session = req.getSession(false); L303: if (session != null) { L304: final Integer width = (Integer) session.getAttribute(SCREEN_WIDTH); L305: if (width != null) { L306: updateHighlightInfo(highlightInfo, width); L307: } L308: } L309: } L310: return highlightInfo;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes