- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 120 for DOC (0.01 sec)
-
src/main/resources/fess_indices/_aws/fess/doc.json
Shinsuke Sugaya <******@****.***> 1692100235 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess/doc.json
Shinsuke Sugaya <******@****.***> 1692100235 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/doc.json
Shinsuke Sugaya <******@****.***> 1692100235 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
indexUpdater.updateDocument(doc); assertEquals(2.5f, doc.get("boost")); assertNotNull(doc.get("doc_id")); } // Test updateDocument without boost public void test_updateDocument_withoutBoost() { final Map<String, Object> doc = new HashMap<>(); doc.put("url", "http://example.com"); indexUpdater.updateDocument(doc); assertNull(doc.get("boost"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
Map<String, Object> doc = new HashMap<>(); doc.put("lang", "ja"); doc.put("title", "タイトル"); doc.put("content", "コンテンツ"); languageHelper.updateDocument(doc); assertEquals("ja", doc.get("lang")); assertEquals("タイトル", doc.get("title_ja")); assertEquals("コンテンツ", doc.get("content_ja")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
} doc.put(indexFieldContentLength, contentLength); } if (!doc.containsKey(indexFieldFavoriteCount)) { doc.put(indexFieldFavoriteCount, 0L); } if (!doc.containsKey(indexFieldClickCount)) { doc.put(indexFieldClickCount, 0L); } if (!doc.containsKey(indexFieldBoost)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchResults.jsp
<ol class="list-unstyled col-md-8"> <c:forEach var="doc" varStatus="s" items="${documentItems}"> <li id="result${s.index}"> <h3 class="title text-truncate"> <a class="link" href="${doc.url_link}" data-uri="${doc.url_link}" data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a> </h3> <div class="body"> <c:if test="${thumbnailSupport && !empty doc.thumbnail}"> <div class="me-3">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:32:37 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
for (Map<String, Object> doc : docs1) { assertTrue(doc.get(field).toString().toLowerCase().contains(query), doc.toString()); } List<Map<String, Object>> docs2 = JsonPath.from(wcResponse2).getList("data"); for (Map<String, Object> doc : docs2) { assertTrue(doc.get(field).toString().toLowerCase().contains(query), doc.toString()); } } @Test
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
final Map<String, Object> requestBody = new HashMap<>(); final Map<String, Object> doc = new HashMap<>(); final String keyProp = NAME_PREFIX + id; doc.put(KEY_PROPERTY, keyProp); doc.put("url", "http://example.com/" + id); doc.put("boost", id); doc.put("role", "Rguest"); requestBody.put("doc", doc); return requestBody; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 02:18:38 UTC 2025 - 4.5K bytes - Viewed (0)