Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for Ford (0.02 sec)

  1. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java

            PopularWordsResponse response = suggester.popularWords().setSize(10).addExcludeWord("クエリ0").execute().getResponse();
    
            assertNotNull(response);
            for (String word : response.getWords()) {
                assertTrue(!word.equals("クエリ0"));
            }
        }
    
        @Test
        public void test_setQueryFreqThreshold() throws Exception {
            indexQueryItems();
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/DownloadForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.elevateword;
    
    /**
     * The download form for Elevate Word.
     * This form is used for downloading elevate word configurations from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 963 bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsWordExtractor.java

    public class MsWordExtractor extends AbstractExtractor {
    
        /**
         * Creates a new MsWordExtractor instance.
         */
        public MsWordExtractor() {
            super();
        }
    
        /**
         * Extracts text from the Word input stream.
         * @param in The input stream.
         * @param params The parameters.
         * @return The extracted data.
         */
        @Override
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. CLAUDE.md

    > AI assistant guidance for the Fess Suggest project - a Java library providing intelligent search suggestions built on OpenSearch.
    
    ## Project Overview
    
    **Fess Suggest** delivers auto-completion, search suggestions, and popular word analytics with multi-language support.
    
    **Technology Stack:**
    - Java 21+, Maven
    - OpenSearch (provided dependency)
    - Apache Lucene (query parsing, text analysis)
    - ICU4J (Unicode text processing)
    - JUnit 4 (testing)
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java

        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The input word that should be stemmed differently */
        @Required
        @Size(max = 1000)
        public String input;
    
        /** The desired stem output for the input word */
        @Required
        @Size(max = 1000)
        public String output;
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/badword/DownloadForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.badword;
    
    /**
     * The download form for Bad Word.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 864 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

        /** Character used to separate cache key components */
        protected static final char CACHE_KEY_SPLITTER = '\n';
    
        /** Cache for storing popular word lists */
        protected Cache<String, List<String>> cache;
    
        /** Fess configuration instance */
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Suggest Word */
        public static final String LABELS_menu_suggest_word = "{labels.menu_suggest_word}";
    
        /** The key of the message: Elevate Word */
        public static final String LABELS_menu_elevate_word = "{labels.menu_elevate_word}";
    
        /** The key of the message: Bad Word */
        public static final String LABELS_menu_bad_word = "{labels.menu_bad_word}";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 156.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/badword/SearchForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.badword;
    
    /**
     * The search form for Bad Word.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching bad words.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 916 bytes
    - Viewed (0)
  10. src/main/resources/fess_message_hi.properties

    errors.failed_to_upload_stopwords_file = stopwords फ़ाइल अपलोड करने में विफल।
    errors.failed_to_download_elevate_file = elevate word फ़ाइल डाउनलोड करने में विफल।
    errors.failed_to_upload_elevate_file = elevate word फ़ाइल अपलोड करने में विफल।
    errors.failed_to_download_badword_file = bad word फ़ाइल डाउनलोड करने में विफल।
    errors.failed_to_upload_badword_file = bad word फ़ाइल अपलोड करने में विफल।
    errors.failed_to_download_mapping_file = mapping फ़ाइल डाउनलोड करने में विफल।
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 07 14:13:53 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top