Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getMaxReadingNum (0.53 seconds)

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

  1. src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java

            converter = testConverter;
        }
    
        @Test
        public void testGetMaxReadingNum() {
            // Test default max reading num
            assertEquals(10, converter.getMaxReadingNum());
        }
    
        @Test
        public void testInitNormal() throws IOException {
            // Test normal initialization
            converter.init();
            assertTrue(testConverter.isInitialized());
        }
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Sep 01 13:33:03 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java

            List<String> currentInputs = new ArrayList<>();
            if (text != null) {
                currentInputs.add(text);
            }
    
            final int maxReadingNum = getMaxReadingNum();
    
            // Apply each converter in sequence
            for (final ReadingConverter converter : converters) {
                final List<String> nextInputs = new ArrayList<>();
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Wed Dec 31 05:38:07 GMT 2025
    - 3.8K bytes
    - Click Count (1)
Back to Top