- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for kdoc (0.02 sec)
-
IndexingHelper.java
umbnail(); L63: docList.stream().forEach(doc -> { L64: if (!thumbnailManager.offer(doc)) { L65: if (logger.isDebugEnabled()) { L66: logger.debug("Removing {}={} from doc[{}]", thumbnailField, doc.get(thumbnailField), L67: doc.get(fessConfig.getIndexFieldUrl())); L68: } L69: doc.remove(thumbnailField); L70: } L71: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 16.8K bytes -
SearchApiManager.java
final List<String> docIdList = new ArrayList<>(urlList.size()); L725: for (final Map<String, Object> doc : docList) { L726: final String urlObj = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class); L727: if (urlObj != null && urlList.contains(urlObj)) { L728: final String docIdObj = DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class); L729: if (docIdObj != null) { L730: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K bytes -
ViewHelper.java
Locale.ENGLISH; L556: } L557: String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class); L558: if (url == null) { L559: url = ComponentUtil.getMessageManager().getMessage(locale, "labels.search_unknown"); L560: } L561: doc.put(fessConfig.getResponseFieldUrlLink(), getUrlLink(doc)); L562: String createdStr; L563: final Date created = DocumentUtil.getValue(doc, fessConfig.getIndexFieldCreated(), Date.class); L564: if (created...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
ApiResult.java
public ApiResult result() { L134: return new ApiResult(this); L135: } L136: } L137: L138: public static class ApiDocResponse extends ApiResponse { L139: protected Object doc; L140: L141: public ApiDocResponse doc(final Object doc) { L142: this.doc = doc; L143: return this; L144: } L145: L146: @Override L147: public ApiResult result() { L148: return new ApiResult(this); L149: } L150: } L151: L152: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.5K bytes -
AdminBackupAction.java
2; L159: } else if (fileName.endsWith(".bulk")) { L160: fileType = 3; L161: } else if (fileName.startsWith("fess") && fileName.endsWith(".json")) { L162: fileType = 4; L163: } else if (fileName.startsWith("doc") && fileName.endsWith(".json")) { L164: fileType = 5; L165: } else { L166: throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, fileName), this::asListHtml); L167: return; L168: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
RankFusionProcessor.java
logger.debug("[{}] {} docs / {} docs.", i, docList.size(), results[i].getAllRecordCount()); L227: } L228: for (int j = 0; j < docList.size(); j++) { L229: final Map<String, Object> doc = docList.get(j); L230: if (doc.get(idField) instanceof final String id) { L231: final float score = 1.0f / (rankConstant + j); L232: if (scoreDocMap.containsKey(id)) { L233: final Map<String, Object>...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.3K bytes -
IndexUpdater.java
protected void addClickCountField(final Map<String, Object> doc) { L461: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L462: final String url = (String) doc.get(fessConfig.getIndexFieldUrl()); L463: if (StringUtil.isNotBlank(url)) { L464: final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper(); L465: final int count = searchLogHelper.getClickCount(url); L466: doc.put(fessConfig.getIndexFieldClickCount(), count); L467:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24.2K bytes -
README.md
urces/fess_label_en.properties) L147:* [fess_message_en.properties](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_message_en.properties) L148: L149:For search/index analyzer, if [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) contains lang\_[lang] for your language, please modify the analyzer for your language. For more details about Analyzers, see the [OpenSearch documentation](https://opensearch.org/docs/latest/analy...github.com/codelibs/fess/README.mdSat Oct 12 07:19:47 UTC 2024 7.3K bytes -
.gitignore
rties L22:/src/main/webapp/WEB-INF/db/*.lock.db L23:/src/main/webapp/WEB-INF/logs/fess* L24:/.settings/ L25:.project L26:.classpath L27:*.iml L28:.idea L29:.vscode L30:.DS_Store L31:/plugins/ L32:/modules/ L33:/tomcat.8080/ L34:dbflute_fess/output/doc/lastadoc-fess.html L35:dbflute_fess/schema/project-lastadoc-fess.json L36:src/main/resources/fess_indices/fess_config.access_token/access_token.bulk L37:src/main/resources/ga_client_secrets.p12 L38:src/main/webapp/WEB-INF/project.properties L39:/.apt_generated/...github.com/codelibs/fess/.gitignoreThu Oct 24 01:47:10 UTC 2024 1023 bytes -
README.md
/fess_label_en.properties) L147:* [fess_message_en.properties](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_message_en.properties) L148: L149:Für den Such-/Index-Analyser: Wenn [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) lang\_[lang] für Ihre Sprache enthält, passen Sie bitte den Analyser für Ihre Sprache an. Weitere Informationen zu Analysatoren finden Sie in der [OpenSearch-Dokumentation](https://opensearch.org/...github.com/codelibs/fess/docs/de/README.mdSat Oct 12 07:19:47 UTC 2024 7.6K bytes