Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for dictionaries (0.05 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

    /**
     * Represents a single character mapping rule that defines how input characters are mapped to output characters
     * for text analysis and search processing. This class is used in character mapping dictionaries to transform
     * text during indexing and search operations.
     *
     * <p>Each mapping item consists of one or more input character sequences that are mapped to a single output
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

     */
    public class SynonymCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(SynonymCreator.class);
    
        /**
         * Constructs a new creator for synonym dictionaries.
         * It sets the file pattern to match files starting with "synonym"
         * and ending with ".txt".
         */
        public SynonymCreator() {
            super("synonym.*\\.txt");
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for managing stopwords.
     * This class provides methods to interact with stopwords dictionaries,
     * including retrieving, storing, and deleting stopwords.
     */
    public class StopwordsService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/SynonymService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for managing synonyms.
     * This class provides methods to interact with synonym dictionaries,
     * including retrieving, storing, and deleting synonyms.
     */
    public class SynonymService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ResourceUtil.java

    import jakarta.servlet.ServletContext;
    
    /**
     * Utility class for accessing various resource paths and files in the Fess application.
     * This class provides methods to retrieve paths for configuration files, templates, dictionaries,
     * thumbnails, plugins, and other resources required by the Fess search engine.
     * It supports both regular deployment and Docker container environments.
     *
     */
    public class ResourceUtil {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  6. src/main/resources/esclient.xml

    			 "cluster.initial_cluster_manager_nodes":"search_engine",
    			 "node.roles":"cluster_manager,data,ingest,ml",
    			 -->
    			 "indices.breaker.total.limit":"100%",
    			 "action.auto_create_index":"-*"}
    		</property>
    		<!-- Dictionaries -->
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"mapping.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"synonym.txt"</arg>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

        }
    
        /**
         * Starts a reindex operation with the specified parameters.
         *
         * @param replaceAliases whether to replace aliases after reindexing
         * @param resetDictionaries whether to reset dictionaries during reindexing
         * @param numberOfShards the number of shards for the new index
         * @param autoExpandReplicas the auto expand replicas setting for the new index
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.upgrade_title_configuration=Upgrade
    labels.upgrade_data_migration=Data Migration
    labels.upgrade_reindex=Re-indexing
    labels.upgrade_start_button=Start
    labels.replace_aliases=Replace Aliases
    labels.reset_dictionaries=Reset Dictionaries
    labels.reindex_start_button=Start
    labels.targetVersion=Target Version
    labels.target_version=Target Version
    labels.sereq_configuration=Request to OpenSearch
    labels.sereq_request_file=Request File
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.upgrade_title_configuration=Upgrade
    labels.upgrade_data_migration=Data Migration
    labels.upgrade_reindex=Re-indexing
    labels.upgrade_start_button=Start
    labels.replace_aliases=Replace Aliases
    labels.reset_dictionaries=Reset Dictionaries
    labels.reindex_start_button=Start
    labels.targetVersion=Target Version
    labels.target_version=Target Version
    labels.sereq_configuration=Request to OpenSearch
    labels.sereq_request_file=Request File
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Replace Aliases */
        public static final String LABELS_replace_aliases = "{labels.replace_aliases}";
    
        /** The key of the message: Reset Dictionaries */
        public static final String LABELS_reset_dictionaries = "{labels.reset_dictionaries}";
    
        /** The key of the message: Start */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
Back to top