Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

     * This class represents a single protected word entry in the dictionary.
     */
    public class ProtwordsItem extends DictionaryItem {
        private final String input;
    
        private String newInput;
    
        /**
         * Constructor for ProtwordsItem.
         * @param id the unique identifier for this item
         * @param input the protected word input
         */
        public ProtwordsItem(final long id, final String input) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. src/main/resources/fess_message_de.properties

    errors.failed_to_download_elevate_file = Fehler beim Herunterladen einer Elevate-Word-Datei.
    errors.failed_to_upload_elevate_file = Fehler beim Hochladen einer Elevate-Word-Datei.
    errors.failed_to_download_badword_file = Fehler beim Herunterladen einer Bad-Word-Datei.
    errors.failed_to_upload_badword_file = Fehler beim Hochladen einer Bad-Word-Datei.
    errors.failed_to_download_mapping_file = Fehler beim Herunterladen einer Mapping-Datei.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_fr.properties

    labels.facet_contentLength_5m=5 Mo -  
    labels.facet_filetype_title=Type de fichier
    labels.facet_filetype_html=HTML
    labels.facet_filetype_word=MS Word
    labels.facet_filetype_excel=MS Excel
    labels.facet_filetype_powerpoint=MS PowerPoint
    labels.facet_filetype_odt=ODF Word
    labels.facet_filetype_ods=Feuille de calcul ODF
    labels.facet_filetype_odp=Présentation ODF
    labels.facet_filetype_pdf=PDF
    labels.facet_filetype_fb2=FictionBook
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 10 */
        String SUGGEST_POPULAR_WORD_SIZE = "suggest.popular.word.size";
    
        /** The key of the configuration. e.g. 30 */
        String SUGGEST_POPULAR_WORD_WINDOW_SIZE = "suggest.popular.word.window.size";
    
        /** The key of the configuration. e.g. 10 */
        String SUGGEST_POPULAR_WORD_QUERY_FREQ = "suggest.popular.word.query.freq";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java

            PhraseQuery.Builder builder = new PhraseQuery.Builder();
            String[] words = { "this", "is", "a", "very", "long", "phrase", "query" };
            for (String word : words) {
                builder.add(new Term(Constants.DEFAULT_FIELD, word));
            }
            PhraseQuery phraseQuery = builder.build();
    
            QueryContext context = new QueryContext("test", false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            }
    
            public void deleteElevateWord(String word, boolean apply) {
                // Mock implementation
            }
    
            public void addElevateWord(org.codelibs.fess.suggest.entity.ElevateWord elevateWord, boolean apply) {
                // Mock implementation
            }
    
            public void addBadWord(String word, boolean apply) {
                // Mock implementation
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        }
    
        /** Dictionary identifier */
        @Required
        public String dictId;
    
        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Token (word) to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top