Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for turn1 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        }
    
        @Test
        public void test_addHistoryWithBudget_turnBasedPacking_contiguousRecency() {
            // 3 turns: turn0(Q1+A1=4), turn1(big=200), turn2(Q3+A3=4)
            // Budget=20: turn2 fits (4, remaining=16), turn1 doesn't fit (200>16), stop
            // Even though turn0 (4 chars) would fit individually, contiguity is maintained
            final List<LlmMessage> history = new ArrayList<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                }
            }
    
            if (firstIncludedTurn < turns.size()) {
                for (int t = firstIncludedTurn; t < turns.size(); t++) {
                    final int[] turn = turns.get(t);
                    for (int i = turn[0]; i < turn[1]; i++) {
                        request.addMessage(history.get(i));
                    }
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        }
    
        private void cleanUpIssueLinks(Document document) {
            String rewritten = document.body().html();
            // Turn Gradle Jira issue numbers into issue links
            rewritten = rewritten.replaceAll("GRADLE-\\d+", "<a href=\"https://issues.gradle.org/browse/$0\">$0</a>");
            // Turn Gradle Github issue numbers into issue links
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 03 01:59:51 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

                project.plugins.withType<JavaLibraryPlugin> {
                    // Kotlin-only projects do not hit this, so they don't have nullaway attributes on the outgoing variants.
                    // Java project can in turn depend on Kotlin projects even if they have nullaway enabled.
                    NullawayAttributes.addToConfiguration(configurations.named(apiElementsConfigurationName), nullawayAttributeValue)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:47:14 GMT 2026
    - 8.7K bytes
    - Click Count (0)
Back to Top