- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 111 for DOC (0.01 sec)
-
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) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
.stream() .map(s -> "doc." + s) .forEach(s -> messages.addErrorsPropertyRequired(s, s))); } if (!fessConfig.validateIndexDateFields(doc)) { throwError.accept(messages -> fessConfig.invalidIndexDateFields(doc) .stream() .map(s -> "doc." + s)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/webapp/WEB-INF/fe.tld
<example>${fe:formatCode("L", "prettyprint", doc.mimetype, doc.content_description)}</example> </function> <function> <description>Mask e-mail address.</description> <name>maskEmail</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String maskEmail(java.lang.String)</function-signature> <example>${fe:maskEmail(doc.content_description)}</example> </function>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/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)