Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for Updater (0.04 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

                assertTrue(e.getMessage().contains("Protwords file was updated"));
            }
    
            updater.close();
        }
    
        public void test_ProtwordsUpdater_write_stringLine() {
            protwordsFile.reload(null);
    
            ProtwordsFile.ProtwordsUpdater updater = protwordsFile.new ProtwordsUpdater(null);
    
            // Write a comment line
            updater.write("# This is a comment");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            assertNull(result);
    
            updater.close();
        }
    
        public void test_updater_writeLine() {
            StopwordsFile.StopwordsUpdater updater = stopwordsFile.new StopwordsUpdater(null);
    
            // Test writing a comment line
            updater.write("# This is a comment");
    
            updater.close();
        }
    
        // Test edge cases
        public void test_emptyFile() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            super.setUp();
            scoreUpdater = new ScoreUpdater();
        }
    
        // Test constructor
        public void test_constructor() {
            ScoreUpdater updater = new ScoreUpdater();
            assertNotNull(updater);
        }
    
        // Test execute with empty list
        public void test_execute_emptyList() {
            String result = scoreUpdater.execute();
            assertEquals("", result);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
            }
            return target;
        }
    
        /**
         * Updates a document with additional metadata and enhancements.
         * Adds click counts, favorite counts, document boosting, and generates document ID.
         * Also applies language-specific updates through the language helper.
         *
         * @param map the document data map to update with additional metadata
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/score/ScoreBooster.java

        }
    
        /**
         * Updates the score of documents.
         * @param params The parameters for the update.
         * @return The number of updated documents.
         */
        protected long updateScore(final Map<String, Object> params) {
            return requestHandler.apply(params);
        }
    
        /**
         * Creates an update request builder.
         * @return The update request builder.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

            return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(true).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Updates an existing user setting.
         *
         * @param body the user data to update
         * @return JSON response containing the updated user setting ID
         */
        // PUT /api/admin/user/setting
        @Execute
        public JsonResponse<ApiResult> put$setting(final EditBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java

            return asJson(new ApiUpdateResponse().id(relatedQuery.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing related query setting.
         *
         * @param body the related query configuration data to update
         * @return JSON response containing the updated related query ID and status
         */
        // PUT /api/admin/relatedquery/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/AbstractByteHasher.java

      private @Nullable ByteBuffer scratch;
    
      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
      protected void update(byte[] b, int off, int len) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 12:40:17 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        }
    
        /**
         * Updates an existing Kuromoji dictionary item.
         *
         * @param dictId the dictionary ID
         * @param body the request body containing updated Kuromoji item information
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/kuromoji/setting/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java

        }
    
        // PUT /api/admin/duplicatehost/setting
        /**
         * Updates an existing duplicate host setting.
         *
         * @param body duplicate host setting data to update
         * @return JSON response with updated setting ID and status
         */
        @Execute
        public JsonResponse<ApiResult> put$setting(final EditBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top