Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for existing_id (0.06 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        public void test_updateDocument_existingDocId() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("doc_id", "existing_id");
            doc.put("url", "http://example.com");
    
            indexUpdater.updateDocument(doc);
    
            assertEquals("existing_id", doc.get("doc_id"));
        }
    
        // Test addBoostValue
        public void test_addBoostValue() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            facetQueryView.addQuery("existing_pdf", "filetype:pdf");
            facetQueryView.addQuery("label1", "filetype:html");
    
            facetQueryView.init();
    
            Map<String, String> queryMap = facetQueryView.getQueryMap();
    
            // Should not duplicate existing pdf query
            assertEquals("filetype:pdf", queryMap.get("existing_pdf"));
            // Should add doc since it's not present
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
Back to top