Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 176 for word2 (0.01 sec)

  1. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

                newOutput = output;
            }
        }
    
        /**
         * Gets the new input word.
         *
         * @return The new input word.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new input word.
         *
         * @param newInput The new input word.
         */
        public void setNewInput(final String newInput) {
            this.newInput = newInput;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing protected words dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing protected words entries.
     * Protected words are terms that should not be stemmed or modified during text analysis.
     *
     */
    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)
  3. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

                newOutputs = outputs;
            }
        }
    
        /**
         * Gets the new input words.
         *
         * @return The new input words.
         */
        public String[] getNewInputs() {
            return newInputs;
        }
    
        /**
         * Sets the new input words.
         *
         * @param newInputs The new input words.
         */
        public void setNewInputs(final String[] newInputs) {
            this.newInputs = newInputs;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/DownloadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for stop words dictionary.
     * This form is used for downloading stop words dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the stop words dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/zh-cn/stopwords.txt

    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading stemmer override files to the Fess search engine.
     * Stemmer override allows custom rules to override the default stemming behavior for specific words.
     * This form is used in the admin interface to upload custom stemmer override dictionary files.
     */
    public class UploadForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for elevate word administration.
     * Extends BaseSearchBody with elevate word-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The elevate word ID to search for. */
        public String id;
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/style.css

    	font-size: 120%;
    	font-weight: 600;
    }
    
    section.content table {
    	display: table;
    	table-layout: fixed;
    	width
    }
    
    section.content table td {
    	display: table-cell;
    	word-wrap: break-word;
    	overflow-wrap: break-word;
    }
    
    section.content table .label {
    	color: #fff;
    }
    
    textarea.systemInfoData {
    	height: 22em;
    	line-height: 1.5em;
    }
    
    .login-box {
    	height: 500px;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/zh-tw/stopwords.txt

    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CaseFormat.java

      }
    
      abstract String normalizeWord(String word);
    
      String normalizeFirstWord(String word) {
        return normalizeWord(word);
      }
    
      private static String firstCharOnlyToUpper(String word) {
        return word.isEmpty()
            ? word
            : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 15 22:14:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top