Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for Pound (0.02 sec)

  1. DocumentHelper.java

    ; L82: tikaExtractor.setSpaceChars(getSpaceChars()); L83: } L84: } catch (final ComponentNotFoundException e) { L85: if (logger.isDebugEnabled()) { L86: logger.debug("tikaExtractor is not found: {}", e.getMessage().replace('\n', ' ')); L87: } L88: } catch (final Exception e) { L89: logger.warn("Failed to initiaize TikaExtractor.", e); L90: } L91: } L92: L93: public String getTitle(final ResponseData...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12K bytes
  2. FessCrawlerThread.java

    ildDocumentList(searchEngineClient, id, new String[] { fessConfig.getIndexFieldUrl() }); L233: if (docList.isEmpty()) { L234: return null; L235: } L236: if (logger.isDebugEnabled()) { L237: logger.debug("Found documents: {}", docList); L238: } L239: final Set<RequestData> urlSet = new HashSet<>(docList.size()); L240: for (final Map<String, Object> doc : docList) { L241: final String url = DocumentUtil.getValue(doc, fessCo...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.6K bytes
  3. ProcessHelper.java

    sendCommand(final String sessionId, final String command) { L154: final JobProcess jobProcess = runningProcessMap.get(sessionId); L155: if (jobProcess == null) { L156: throw new JobNotFoundException("Job for " + sessionId + " is not found."); L157: } L158: try { L159: final OutputStream out = jobProcess.getProcess().getOutputStream(); L160: IOUtils.write(command + "\n", out, Constants.CHARSET_UTF_8); L161: out.flush(); L162: } catch...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      6.4K bytes
  4. ThumbnailGenerator.java

    final int totalCount = process(options); L143: if (totalCount != 0) { L144: logger.info("Created {} thumbnail files.", totalCount); L145: } else { L146: logger.info("No new thumbnails found."); L147: } L148: exitCode = 0; L149: } catch (final ContainerNotAvailableException e) { L150: if (logger.isDebugEnabled()) { L151: logger.debug("ThumbnailGenerator is stopped.", e); L152: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.2K bytes
  5. ThumbnailManager.java

    } L107: } L108: if (baseDir.mkdirs()) { L109: logger.info("Created: {}", baseDir.getAbsolutePath()); L110: } L111: if (!baseDir.isDirectory()) { L112: throw new FessSystemException("Not found: " + baseDir.getAbsolutePath()); L113: } L114: L115: if (logger.isDebugEnabled()) { L116: logger.debug("Thumbnail Directory: {}", baseDir.getAbsolutePath()); L117: } L118: L119: thumbnailTaskQueue = new Linke...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      21.5K bytes
  6. JobHelper.java

    L76: ComponentUtil.getComponent(ScheduledJobBhv.class).selectByPK(scheduledJob.getId()) L77: .ifPresent(e -> params.put(Constants.SCHEDULED_JOB, e)).orElse(() -> { L78: logger.warn("Job {} is not found.", scheduledJob.getId()); L79: }); L80: return params; L81: }; L82: findJobByUniqueOf(LaJobUnique.of(id)).ifPresent(job -> { L83: if (!job.isUnscheduled()) { L84: if (StringUtil...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.1K bytes
  7. CommandGenerator.java

    } L94: L95: final File parentFile = outputFile.getParentFile(); L96: if (!parentFile.exists()) { L97: parentFile.mkdirs(); L98: } L99: if (!parentFile.isDirectory()) { L100: logger.warn("Not found: {}", parentFile.getAbsolutePath()); L101: return false; L102: } L103: L104: return process(thumbnailId, responseData -> { L105: final File tempFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_",...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      9.6K bytes
  8. SearchLogHelper.java

    } else { L372: countObj = countObj.intValue() + 1; L373: } L374: clickCountMap.put(docId, countObj); L375: }).orElse(() -> { L376: logger.warn("Not Found for SearchLog: {}", clickLog); L377: }); L378: } catch (final Exception e) { L379: logger.warn("Failed to process: {}", clickLog, e); L380: } L381: } L382: processClickLog(clickLogList);...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 02:07:37 UTC 2024
      21.7K bytes
  9. SearchEngineApiManager.java

    WebApiException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); L217: } L218: } else { L219: try { L220: writeHeaders(response); L221: response.sendError(HttpServletResponse.SC_NOT_FOUND, path + " is not found."); L222: } catch (final ClientAbortException e) { L223: logger.debug("Client aborts this request.", e); L224: } catch (final IOException e) { L225: logger.error("Failed to read {} from {}", path,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 15 08:29:24 UTC 2024
      11.3K bytes
  10. FessMessages.java

    to delete {0} file. */ L231: public static final String ERRORS_failed_to_delete_file = "{errors.failed_to_delete_file}"; L232: L233: /** The key of the message: Not found Doc ID:{0} */ L234: public static final String ERRORS_docid_not_found = "{errors.docid_not_found}"; L235: L236: /** The key of the message: Not found URL of Doc ID:{0} */ L237: public static final String ERRORS_document_not_found = "{errors.document_not_found}"; L238: L239: /** The key of the message: Could not load...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      119.9K bytes
Back to top