Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 13 of 13 for duplicate_host_list (0.08 seconds)

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

  1. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            assertNotNull(helper.duplicateHostList);
            assertEquals(1, helper.duplicateHostList.size());
            assertEquals("www.test.com", helper.duplicateHostList.get(0).getRegularName());
        }
    
        @Test
        public void test_add_withNullList() {
            DuplicateHostHelper helper = new DuplicateHostHelper();
            helper.duplicateHostList = null;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java

            }
        }
    
        /**
         * Sets the list of duplicate host rules.
         *
         * @param duplicateHostList the list of duplicate host rules to use
         */
        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.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_elevate_word_list = "{labels.elevate_word_list}";
    
        /** The key of the message: Duplicate Host List */
        public static final String LABELS_duplicate_host_list = "{labels.duplicate_host_list}";
    
        /** The key of the message: Synonym Dictionary List */
        public static final String LABELS_dict_synonym_list = "{labels.dict_synonym_list}";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
Back to Top