Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 176 for word3 (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/badword/DownloadBody.java

     */
    package org.codelibs.fess.app.web.api.admin.badword;
    
    import org.codelibs.fess.app.web.admin.badword.DownloadForm;
    
    /**
     * Download body for Bad Word API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading bad word dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/badword/EditBody.java

    package org.codelibs.fess.app.web.api.admin.badword;
    
    import org.codelibs.fess.app.web.admin.badword.EditForm;
    
    /**
     * Request body class for bad word edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for bad word management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    errors.failed_to_download_elevate_file = Failed to download an elevate word file.
    errors.failed_to_upload_elevate_file = Failed to upload an elevate word file.
    errors.failed_to_download_badword_file = Failed to download a bad word file.
    errors.failed_to_upload_badword_file = Failed to upload a bad word file.
    errors.failed_to_download_mapping_file = Failed to download a mapping file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    errors.failed_to_download_elevate_file = Failed to download an elevate word file.
    errors.failed_to_upload_elevate_file = Failed to upload an elevate word file.
    errors.failed_to_download_badword_file = Failed to download a bad word file.
    errors.failed_to_upload_badword_file = Failed to upload a bad word file.
    errors.failed_to_download_mapping_file = Failed to download a mapping file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

        static final int INVERSE_COMPUTE_FOR_WORD_OF_ALL_1S = 0xeee3ddcd;
    
        static int computeForWord(int word) {
          return strideTable[3][word & 0xFF]
              ^ strideTable[2][(word >>> 8) & 0xFF]
              ^ strideTable[1][(word >>> 16) & 0xFF]
              ^ strideTable[0][word >>> 24];
        }
    
        static int combine(int csum, int crc) {
          csum ^= crc;
          for (int i = 0; i < 4; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        /** Number of records per page */
        private int pageSize;
    
        /** Current page number */
        private int currentPageNumber;
    
        /** Search parameter: elevate word ID */
        public String id;
    
        /** Search parameter: suggest word */
        public String suggestWord;
    
        /** Search parameter: boost value */
        public String boost;
    
        /** Search parameter: created by user */
        public String createdBy;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/CreateBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.admin.dict.stopwords.CreateForm;
    
    /**
     * Request body for creating stop words dictionary via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  8. src/main/webapp/js/index.js

        return false;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#contentQuery").suggestor({
          ajaxinfo: {
            url: contextPath + "/api/v1/suggest-words",
            fn: ["_default", "content", "title"],
            num: 10,
            lang: $("#langSearchOption").val()
          },
          boxCssInfo: {
            border: "1px solid rgba(82, 168, 236, 0.5)",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java

    /**
     * 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 {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/EditBody.java

    import org.codelibs.fess.app.web.admin.elevateword.EditForm;
    
    /**
     * Request body class for elevate word edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for elevate word management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top