- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for docid1 (2.19 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/webapp/js/search.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "docId is empty."); } final String docId = docIdObj.toString(); final String queryId = request.getParameter("queryId"); final String[] docIds = userInfoHelper.getResultDocIds(URLDecoder.decode(queryId, Constants.UTF_8)); if (docIds == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java
MockletHttpServletRequest request = getMockRequest(); List<Map<String, Object>> documentItems = new ArrayList<>(); Map<String, Object> doc1 = new HashMap<>(); doc1.put("docId", "doc1"); doc1.put("title", "Test Document 1"); documentItems.add(doc1); try { userInfoHelper.storeQueryId("query1", documentItems); assertTrue(true); } catch (Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
jsonPath = JsonPath.from(response.asString()); } for (String docId : docIds) { given().contentType("application/json").delete(getEsUrl() + "/" + DOC_INDEX_NAME + "/" + docId); } } protected static List<Map<String, Object>> readCrawlingInfo(final String configId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
builder.setFetchSource(fields, null); queryHelper.processSearchPreference(builder, userBean, docId); return true; }); } /** * Retrieves multiple documents by their document IDs. * * @param docIds Array of document IDs to retrieve * @param fields Array of field names to include in the results
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
"file://home/taro/%E3%81%82.txt"); assertUrlLink(null, "#not-found-docId"); assertUrlLink("", "#not-found-docId"); assertUrlLink(" ", "#not-found-docId"); } private void assertUrlLink(String url, String expected) { Map<String, Object> doc = new HashMap<>(); doc.put("doc_id", "docId"); doc.put("url", url); assertEquals(expected, viewHelper.getUrlLink(doc));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
final StringBuilder buf = new StringBuilder(50); for (int i = 0; i < docid.length(); i += splitSize) { int hash = docid.substring(i).hashCode() % splitHashSize; if (hash < 0) { hash *= -1; } buf.append('_').append(Integer.toString(hash)).append('/'); } buf.append(docid).append('.').append(imageExtention);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
try { doc = searchHelper .getDocumentByDocId(form.docId, new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldConfigId() }, getUserBean()) .orElse(null); } catch (final Exception e) { logger.warn("Failed to request: {}", form.docId, e); } if (doc == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getResponseFields(), getUserBean()).orElse(null); final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldThumbnail(), String.class); if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { // 404 throw responseManager.new404("Thumbnail for " + form.docId + " is not found."); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0)