- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 94 for doc_ (0.04 sec)
-
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/util/QueryResponseListTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Test Document 1"); doc1.put("content", "Test content 1"); documentItems.add(doc1); Map<String, Object> doc2 = new HashMap<>(); doc2.put("title", "Test Document 2"); doc2.put("content", "Test content 2"); documentItems.add(doc2); searchRenderData.setDocumentItems(documentItems);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
Map<String, Object> doc1 = new HashMap<>(); doc1.put("id", "1"); doc1.put("title", "Document 1"); Map<String, Object> doc2 = new HashMap<>(); doc2.put("id", "2"); doc2.put("title", "Document 2"); SearchResult result = SearchResult.create().addDocument(doc1).addDocument(doc2).allRecordCount(2L).queryTime(25L).build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K 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/ds/DataStoreTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
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/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
*/ // POST /api/admin/searchlist/doc @Execute public JsonResponse<ApiResult> post$doc(final CreateBody body) { validateApi(body, messages -> {}); if (body.doc == null) { throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, "doc is required")); } validateFields(body.doc, this::throwValidationErrorApi);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
/** * The HTTP <a * href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Host">{@code * X-Forwarded-Host}</a> header field name. * * @since 20.0 */ public static final String X_FORWARDED_HOST = "X-Forwarded-Host"; /** * The HTTP <a * href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/x-forwarded-headers.html#x-forwarded-port">{@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0)