Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for scoreUpdater (0.05 sec)

  1. src/main/java/org/codelibs/fess/score/ScoreBooster.java

         */
        public abstract long process();
    
        /**
         * Enables this score booster.
         */
        protected void enable() {
            final ScoreUpdater scoreUpdater = ComponentUtil.getComponent("scoreUpdater");
            scoreUpdater.addScoreBooster(this);
        }
    
        /**
         * Updates the score of documents.
         * @param params The parameters for the update.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

    public class ScoreUpdaterTest extends UnitFessTestCase {
    
        private ScoreUpdater scoreUpdater;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            scoreUpdater = new ScoreUpdater();
        }
    
        // Test constructor
        public void test_constructor() {
            ScoreUpdater updater = new ScoreUpdater();
            assertNotNull(updater);
        }
    
        // Test execute with empty list
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top