Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for updating (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

    import org.dbflute.optional.OptionalEntity;
    
    /**
     * Manages a dictionary file for stopwords.
     * This class handles reading, parsing, and updating files that contain
     * a list of stopwords. Each line in the file represents a single stopword.
     *
     * The class provides methods for retrieving, adding, updating, and
     * deleting stopword items, as well as reloading the dictionary
     * from its source file.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

    /**
     * Manages a dictionary file for stemmer overrides.
     * This class handles reading, parsing, and updating files that contain
     * stemmer override rules, where each rule maps an input word to an
     * output stem. The file format is expected to be `input => output`.
     *
     * The class provides methods for retrieving, adding, updating, and
     * deleting stemmer override items, as well as reloading the dictionary
     * from its source file.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing stopwords dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing stopwords entries.
     * Stopwords are common words that are typically ignored during text indexing and search operations.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing users in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing user entries,
     * including tracking information for optimistic locking.
     * Users represent individual accounts that can access and search within the system.
     *
     */
    public class EditForm extends CreateForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing duplicate host configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing duplicate host entries,
     * including tracking information for optimistic locking and audit trails.
     * Duplicate hosts are used to define which domains should be treated as the same site for crawling purposes.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing scheduled job configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing scheduler entries,
     * including tracking information for optimistic locking.
     * Schedulers define automated jobs such as crawling and system maintenance tasks.
     *
     */
    public class EditForm extends CreateForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt

     * implementations may store cookies in memory; sophisticated ones may use the file system or
     * database to hold accepted cookies. The [cookie storage model][rfc_6265_53] specifies policies for
     * updating and expiring cookies.
     *
     * [rfc_6265_53]: https://tools.ietf.org/html/rfc6265#section-5.3
     */
    interface CookieJar {
      /**
       * Saves [cookies] from an HTTP response to this store according to this jar's policy.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Updating scheduled jobs. time:{}", schedulerTime);
                }
                final long now = systemHelper.getCurrentTimeAsLong();
                scheduledJobService.getScheduledJobListAfter(schedulerTime).forEach(scheduledJob -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Updating job schedule:{}", scheduledJob.getName());
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing label types in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing label type entries,
     * including tracking information for optimistic locking and audit trails.
     * Label types are used to categorize and filter documents in search results.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing user roles in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing role entries,
     * including tracking information for optimistic locking and audit trails.
     * Roles define permissions and access levels for users within the system.
     *
     */
    public class EditForm extends CreateForm {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top