Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 511 for updates (0.12 sec)

  1. 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)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            // Test toLineString method
            StopwordsItem item = new StopwordsItem(1, "original");
            assertEquals("original", item.toLineString());
    
            // When updated, should return newInput
            item.setNewInput("updated");
            assertEquals("updated", item.toLineString());
    
            // When marked for deletion
            item.setNewInput("");
            assertEquals("", item.toLineString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        }
    
        /**
         * Update an existing stemmer override item.
         * Validates the form data and updates the item in the dictionary.
         *
         * @param form The edit form containing updated item data
         * @return HTML response redirecting to the list page on success
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse update(final EditForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            ComponentUtil.getPopularWordHelper().init();
    
            ComponentUtil.getLabelTypeHelper().update();
            ComponentUtil.getPathMappingHelper().update();
            ComponentUtil.getRelatedContentHelper().update();
            ComponentUtil.getRelatedQueryHelper().update();
            ComponentUtil.getKeyMatchHelper().update();
    
            ComponentUtil.getLdapManager().updateConfig();
            if (resetJobs) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

            });
            return redirect(getClass());
        }
    
        /**
         * Updates an existing duplicate host configuration.
         *
         * @param form the edit form containing updated duplicate host data
         * @return HTML response redirecting to the duplicate host list
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse update(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.EDIT);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

         */
        public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) {
            return boostDocumentRuleBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a boost document rule.
         * @param boostDocumentRule The boost document rule to store.
         */
        public void store(final BoostDocumentRule boostDocumentRule) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java

        }
    
        // PUT /api/admin/general
        /**
         * Updates the general system settings.
         * Merges the provided settings with existing configuration and applies changes.
         *
         * @param body the general settings data to update
         * @return JSON response with update status
         */
        @Execute
        public JsonResponse<ApiResult> put$index(final EditBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

            return duplicateHostBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a duplicate host configuration.
         *
         * <p>This method immediately refreshes the index to ensure the change is visible.
         * If the configuration already exists (based on ID), it will be updated;
         * otherwise, a new configuration will be created.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

            kuromojiItem.setNewToken(StringUtil.EMPTY);
            try (KuromojiUpdater updater = new KuromojiUpdater(item)) {
                reload(updater);
            }
        }
    
        /**
         * Reloads the dictionary file.
         *
         * @param updater The updater.
         */
        protected void reload(final KuromojiUpdater updater) {
            try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K 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