Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for data_config (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.crawling_info_param/crawling_info_param"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.data_config/data_config"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.duplicate_host/duplicate_host"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 16.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

         * @return An optional entity of a data config.
         */
        public static OptionalEntity<DataConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new DataConfig()).map(entity -> {
                    entity.setCreatedBy(username);
                    entity.setCreatedTime(currentTime);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. boostdoc */
        String ONLINE_HELP_NAME_BOOSTDOC = "online.help.name.boostdoc";
    
        /** The key of the configuration. e.g. dataconfig */
        String ONLINE_HELP_NAME_DATACONFIG = "online.help.name.dataconfig";
    
        /** The key of the configuration. e.g. systeminfo */
        String ONLINE_HELP_NAME_SYSTEMINFO = "online.help.name.systeminfo";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top