Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for integer (0.04 sec)

  1. 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
  2. openapi-user.yaml

    query_time: L186: type: integer L187: format: int64 L188: example: 0 L189: page_size: L190: type: integer L191: example: 20 L192: page_number: L193: type: integer L194: example: 1 L195: record_count: L196: type: integer L197: format: int64 L198: ...
    github.com/codelibs/fess/src/main/config/openap...
    Thu May 09 06:31:27 UTC 2024
      21.6K bytes
  3. 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
  4. FailureUrlService.java

    l); L110: } L111: L112: if (StringUtil.isNotBlank(failureUrlPager.errorCountMax)) { L113: cb.query().setErrorCount_LessEqual(Integer.parseInt(failureUrlPager.errorCountMax)); L114: } L115: if (StringUtil.isNotBlank(failureUrlPager.errorCountMin)) { L116: cb.query().setErrorCount_GreaterEqual(Integer.parseInt(failureUrlPager.errorCountMin)); L117: } L118: L119: if (StringUtil.isNotBlank(failureUrlPager.errorName)) { L120: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jun 24 01:20:42 UTC 2024
      6.3K bytes
  5. 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
  6. SambaHelper.java

    { L63: try { L64: logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); L65: } catch (final Exception e) { L66: // ignore L67: } L68: } L69: final Integer id = fessConfig.getAvailableSmbSidType(type); L70: if (id != null) { L71: return createSearchRole(id, sid.getAccountName()); L72: } L73: if (logger.isDebugEnabled()) { L74: logger.debug("Ignored SID: {} {}",...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jun 27 10:58:21 UTC 2024
      3.3K bytes
  7. 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
  8. 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
  9. SearchLogHelper.java

    st.subList(i, end), op -> { L352: op.setRefreshPolicy(Constants.TRUE); L353: }); L354: } L355: } L356: L357: protected void processClickLogQueue(final Queue<ClickLog> queue) { L358: final Map<String, Integer> clickCountMap = new HashMap<>(); L359: final List<ClickLog> clickLogList = new ArrayList<>(); L360: for (final ClickLog clickLog : queue) { L361: try { L362: final SearchLogBhv searchLogBhv = ComponentUtil...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 02:07:37 UTC 2024
      21.7K bytes
  10. 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
Back to top