Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Debugf (0.04 sec)

  1. SuggestCreator.java

    ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); L99: System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); L100: System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue())); L101: logger.debug("Option: {}", options); L102: } catch (final Exception e) { L103: //...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10K bytes
  2. HtmlTagBasedGenerator.java

    task = new Tuple3<>(getName(), thumbnailId, path); L53: if (logger.isDebugEnabled()) { L54: logger.debug("Create thumbnail task: {}", task); L55: } L56: return task; L57: } L58: L59: @Override L60: public boolean generate(final String thumbnailId, final File outputFile) { L61: if (logger.isDebugEnabled()) { L62: logger.debug("Generate Thumbnail: {}", thumbnailId); L63: } L64: L65: if (outputFile.exists()) { L66: if...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.5K bytes
  3. RankFusionProcessor.java

    StreamUtil.split(value, ",") L100: .get(stream -> stream.map(String::trim).filter(StringUtil::isNotBlank).collect(Collectors.toUnmodifiableSet())); L101: } L102: if (logger.isDebugEnabled()) { L103: logger.debug("availableSearcherNameSet={}", availableSearcherNameSet); L104: } L105: } L106: L107: @Override L108: @PreDestroy L109: public void close() throws Exception { L110: if (executorService != null) { L111: try { L112:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
  4. IndexUpdateCallbackImpl.java

    maxDocumentRequestSize; L53: L54: protected int maxDocumentCacheSize; L55: L56: private IngestFactory ingestFactory = null; L57: L58: @PostConstruct L59: public void init() { L60: if (logger.isDebugEnabled()) { L61: logger.debug("Initialize {}", this.getClass().getSimpleName()); L62: } L63: maxDocumentRequestSize = Long.parseLong(ComponentUtil.getFessConfig().getIndexerDataMaxDocumentRequestSize()); L64: maxDocumentCacheSize = ComponentUtil.getFessCon...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.9K bytes
  5. FessCrawlerThread.java

    (logger.isDebugEnabled()) { L149: logger.debug("Accessing document: {}, status: {}", url, httpStatusCode); L150: } L151: if (httpStatusCode == 404) { L152: storeChildUrlsToQueue(urlQueue, getAnchorSet(document.get(fessConfig.getIndexFieldAnchor()))); L153: if (!indexingHelper.deleteDocument(searchEngineClient, id)) { L154: logger.debug("Failed to delete 404 document: {}", url); L155: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.6K bytes
  6. FileListIndexUpdateCallbackImpl.java

    try { L317: if (logger.isDebugEnabled()) { L318: logger.debug("Shutting down thread executor."); L319: } L320: executor.shutdown(); L321: executor.awaitTermination(executorTerminationTimeout, TimeUnit.SECONDS); L322: } catch (final InterruptedException e) { L323: if (logger.isDebugEnabled()) { L324: logger.debug("Failed to interrupt executor.", e); L325: } L326: } finally { L327: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      16.8K bytes
  7. SearchApiManager.java

    OptionalThing.empty()); L257: response.flushBuffer(); L258: if (logger.isDebugEnabled()) { L259: logger.debug("Loaded {} docs", count); L260: } L261: } catch (final InvalidQueryException | ResultOffsetExceededException e) { L262: if (logger.isDebugEnabled()) { L263: logger.debug("Failed to process a scroll request.", e); L264: } L265: writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e); L266:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  8. FessEnv.java

    L101: /** L102: * Get the value for the key 'framework.debug'. <br> L103: * The value is, e.g. false <br> L104: * comment: Does it enable the Framework internal debug? (true only when emergency) L105: * @return The value of found property. (NotNull: if not found, exception but basically no way) L106: */ L107: String getFrameworkDebug(); L108: L109: /** L110: * Is the property for the key 'framework.debug' true? <br> L111: * The value is, e.g. false <br> L112: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  9. SystemHelper.java

    new HashMap<>(); L129: L130: protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>()); L131: L132: @PostConstruct L133: public void init() { L134: if (logger.isDebugEnabled()) { L135: logger.debug("Initialize {}", this.getClass().getSimpleName()); L136: } L137: final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC")); L138: cal.set(2026, 3 - 1, 1); // EOL Date L139: eolTime = cal.getTimeInMillis(); L140:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  10. PathMappingHelper.java

    ) { L71: cachedPathMappingList.forEach(e -> { L72: logger.debug("path mapping: {}: {} -> {}", e.getId(), e.getRegex(), e.getReplacement()); L73: }); L74: } L75: return cachedPathMappingList.size(); L76: } catch (final ComponentNotFoundException e) { L77: if (logger.isDebugEnabled()) { L78: logger.debug("Failed to load path mappings.", e); L79: } L80: cachedPathMappingList...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.6K bytes
Back to top