Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for fess_basic_config (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                        index = fessConfig.getIndexConfigIndex();
                    } else if ("fess_user".equals(index)) {
                        index = fessConfig.getIndexUserIndex();
                    } else if ("fess_basic_config".equals(index) && !"fess_config".equals(fessConfig.getIndexConfigIndex())) {
                        index = "basic_" + fessConfig.getIndexConfigIndex();
                    }
                    final String alias = index;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                            final String name = fessConfig.getIndexConfigIndex();
                            if ("fess_basic_config".equals(aliasName) && !CONFIG_INDEX_PREFIX.equals(name)) {
                                aliasName = aliasName.replaceFirst("fess_basic_config", "basic_" + name);
                            } else {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    rank.fusion.threads=-1
    rank.fusion.score_field=rf_score
    
    # acl
    smb.role.from.file=true
    smb.available.sid.types=1,2,4:2,5:1
    file.role.from.file=true
    ftp.role.from.file=true
    
    # backup
    index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json
    index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson
    index.backup.log.load.timeout=60000
    
    # logging
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String FILE_ROLE_FROM_FILE = "file.role.from.file";
    
        /** The key of the configuration. e.g. true */
        String FTP_ROLE_FROM_FILE = "ftp.role.from.file";
    
        /** The key of the configuration. e.g. fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json */
        String INDEX_BACKUP_TARGETS = "index.backup.targets";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top