Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for updateDocument (0.06 sec)

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

                    return 2.5f;
                }
            };
            indexUpdater.addDocBoostMatcher(matcher);
    
            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<>();
    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/ds/callback/IndexUpdateCallbackImplTest.java

                return matchedLabels;
            }
        }
    
        private static class TestLanguageHelper extends LanguageHelper {
            @Override
            public void updateDocument(Map<String, Object> dataMap) {
                // Do nothing
            }
        }
    
        private static class TestSearchEngineClient extends SearchEngineClient {
            // Empty implementation for testing
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                            }
                            continue;
                        }
                        map.remove(Constants.INDEXING_TARGET);
    
                        updateDocument(map);
    
                        docList.add(ingest(accessResult, map));
                        final long contentSize = indexingHelper.calculateDocumentSize(map);
                        docList.addContentSize(contentSize);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top