- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for getDocId (0.06 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} }; long result = testManager.purge(1L); assertTrue(result >= 0); } // Test FilePurgeVisitor getDocId public void test_FilePurgeVisitor_getDocId() throws IOException { // Test the getDocId logic without creating actual FilePurgeVisitor // The logic converts path to doc ID by removing path separators String pathStr = "_1/_2/docid123";
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/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java
return createdAt; } public void setCreatedAt(LocalDateTime value) { registerModifiedProperty("createdAt"); this.createdAt = value; } public String getDocId() { checkSpecifiedProperty("docId"); return convertEmptyToNull(docId); } public void setDocId(String value) { registerModifiedProperty("docId"); this.docId = value;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
appendJson("query-id", entity.getQueryId(), buf).append(','); appendJson("user-info-id", entity.getUserInfoId(), buf).append(','); appendJson("doc-id", entity.getDocId(), buf).append(','); appendJson("url", entity.getUrl(), buf); buf.append('}'); buf.append('\n'); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java
{ setupEpg(_epgMap, et -> ((ClickLog) et).getUrlId(), (et, vl) -> ((ClickLog) et).setUrlId(DfTypeUtil.toString(vl)), "urlId"); setupEpg(_epgMap, et -> ((ClickLog) et).getDocId(), (et, vl) -> ((ClickLog) et).setDocId(DfTypeUtil.toString(vl)), "docId"); setupEpg(_epgMap, et -> ((ClickLog) et).getOrder(), (et, vl) -> ((ClickLog) et).setOrder(DfTypeUtil.toInteger(vl)), "order");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsClickLog.java
return convertEmptyToNull(urlId); } public void setUrlId(String value) { registerModifiedProperty("urlId"); this.urlId = value; } public String getDocId() { checkSpecifiedProperty("docId"); return convertEmptyToNull(docId); } public void setDocId(String value) { registerModifiedProperty("docId"); this.docId = value;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/FavoriteLogDbm.java
{ setupEpg(_epgMap, et -> ((FavoriteLog) et).getCreatedAt(), (et, vl) -> ((FavoriteLog) et).setCreatedAt(DfTypeUtil.toLocalDateTime(vl)), "createdAt"); setupEpg(_epgMap, et -> ((FavoriteLog) et).getDocId(), (et, vl) -> ((FavoriteLog) et).setDocId(DfTypeUtil.toString(vl)), "docId"); setupEpg(_epgMap, et -> ((FavoriteLog) et).getQueryId(), (et, vl) -> ((FavoriteLog) et).setQueryId(DfTypeUtil.toString(vl)),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ protected void deleteFiles() { final Map<String, Path> deleteFileMap = new HashMap<>(); for (final Path path : deletedFileList) { final String docId = getDocId(path); if (StringUtil.isBlank(docId) || deleteFileMap.containsKey(docId)) { deleteFile(path); } else { deleteFileMap.put(docId, path);
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/helper/SearchLogHelper.java
cb.query().setQueryId_Equal(clickLog.getQueryId()); }).ifPresent(entity -> { clickLogList.add(clickLog); final String docId = clickLog.getDocId(); Integer countObj = clickCountMap.get(docId); if (countObj == null) { countObj = 1; } else {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0)