Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ItemCount (0.06 seconds)

  1. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerErrorHandlingTest.java

        // ============================================================
    
        @Test
        public void test_sequentialIndexOperations() throws Exception {
            int itemCount = 10;
    
            for (int i = 0; i < itemCount; i++) {
                String[][] readings = new String[1][];
                readings[0] = new String[] { "word" + i };
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  2. src/main/webapp/js/chat.js

                updateFilterBadge();
            });
    
            // Hide search input for groups with 10 or fewer items
            $('.filter-dropdown-menu').each(function() {
                var itemCount = $(this).find('.filter-check-item').length;
                if (itemCount <= 10) {
                    $(this).find('.filter-search-wrapper').hide();
                }
            });
    
            // Suggestion chip click handlers
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top