- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for docId (0.03 sec)
-
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
final String docid = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldDocId(), String.class); return getImageFilename(docid); } protected String getImageFilename(final String docid) { final StringBuilder buf = new StringBuilder(50); for (int i = 0; i < docid.length(); i += splitSize) { int hash = docid.substring(i).hashCode() % splitHashSize;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final Object docIdObj = request.getAttribute(DOC_ID_FIELD); if (docIdObj == null) { throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "docId is empty."); } final String docId = docIdObj.toString(); final String queryId = request.getParameter("queryId");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} } } return StringUtil.EMPTY_STRINGS; } public OptionalEntity<Map<String, Object>> getDocumentByDocId(final String docId, final String[] fields, final OptionalThing<FessUserBean> userBean) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0)