Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for duplicateHost (0.35 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/DuplicateHostDbm.java

        {
            setupEpg(_epgMap, et -> ((DuplicateHost) et).getCreatedBy(), (et, vl) -> ((DuplicateHost) et).setCreatedBy(DfTypeUtil.toString(vl)),
                    "createdBy");
            setupEpg(_epgMap, et -> ((DuplicateHost) et).getCreatedTime(),
                    (et, vl) -> ((DuplicateHost) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
            setupEpg(_epgMap, et -> ((DuplicateHost) et).getDuplicateHostName(),
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java

         */
        public void setDuplicateHostList(final List<DuplicateHost> duplicateHostList) {
            this.duplicateHostList = duplicateHostList;
        }
    
        /**
         * Adds a new duplicate host rule to the list.
         * Initializes the list if it doesn't exist.
         *
         * @param duplicateHost the duplicate host rule to add
         */
        public void add(final DuplicateHost duplicateHost) {
            if (duplicateHostList == null) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    # Online help key for file authentication.
    online.help.name.fileauth=fileauth
    # Online help key for label type.
    online.help.name.labeltype=labeltype
    # Online help key for duplicate host.
    online.help.name.duplicatehost=duplicatehost
    # Online help key for scheduler.
    online.help.name.scheduler=scheduler
    # Online help key for crawling info.
    online.help.name.crawlinginfo=crawlinginfo
    # Online help key for backup.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. labeltype */
        String ONLINE_HELP_NAME_LABELTYPE = "online.help.name.labeltype";
    
        /** The key of the configuration. e.g. duplicatehost */
        String ONLINE_HELP_NAME_DUPLICATEHOST = "online.help.name.duplicatehost";
    
        /** The key of the configuration. e.g. scheduler */
        String ONLINE_HELP_NAME_SCHEDULER = "online.help.name.scheduler";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top