Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for beginning (0.03 seconds)

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

  1. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertFalse(qrList.isExistPrevPage());
        }
    
        @Test
        public void test_calculatePageInfo_pageNumberList_edgeCases() {
            // Test when current page is at the beginning
            QueryResponseList qrList = new QueryResponseList(null, 0, 10, 0) {
                @Override
                public int size() {
                    return 10;
                }
            };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/chat/ChatClient.java

                return content;
            }
            return content.substring(0, maxChars) + "...";
        }
    
        /**
         * Builds a smart summary of the assistant message for history.
         * Preserves the beginning (direct answer) and end (conclusion) of long responses,
         * omitting the middle section, and appends source titles.
         *
         * @param msg the assistant chat message
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
Back to Top