Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 14 for WORLD (0.02 seconds)

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

            assertNull(response.getModel());
        }
    
        @Test
        public void test_constructorWithContent() {
            final LlmChatResponse response = new LlmChatResponse("Hello, World!");
            assertEquals("Hello, World!", response.getContent());
            assertNull(response.getFinishReason());
            assertNull(response.getPromptTokens());
            assertNull(response.getCompletionTokens());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/BooleanFunctionTest.java

            BooleanFunction<String> startsWithHello = s -> s != null && s.startsWith("hello");
    
            assertTrue(startsWithHello.apply("hello world"));
            assertTrue(startsWithHello.apply("hello"));
            assertFalse(startsWithHello.apply("hi world"));
            assertFalse(startsWithHello.apply(""));
            assertFalse(startsWithHello.apply(null));
        }
    
        @Test
        public void test_method_reference() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Self-contained Reproducer Project
          description: |
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Sep 09 14:48:49 GMT 2024
    - 3K bytes
    - Click Count (1)
  4. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

            assertNotNull(message.getSources());
        }
    
        @Test
        public void test_userMessage() {
            final ChatMessage message = ChatMessage.userMessage("Hello, World!");
            assertEquals(ChatMessage.ROLE_USER, message.getRole());
            assertEquals("Hello, World!", message.getContent());
            assertTrue(message.isUser());
            assertFalse(message.isAssistant());
        }
    
        @Test
        public void test_assistantMessage() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  5. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Self-contained Reproducer Project
          description: |
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Sep 09 14:48:49 GMT 2024
    - 2.7K bytes
    - Click Count (0)
  6. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 12 11:52:53 GMT 2023
    - 856 bytes
    - Click Count (0)
  7. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

          description: |
            How has this issue affected you? What are you trying to accomplish? What other alternatives have you considered?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 27 15:48:22 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  8. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: input
        id: page
        attributes:
          label: Page with the problem
          description: Please, provide a link to the relevant documentation page
        validations:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 15 10:01:01 GMT 2024
    - 1.6K bytes
    - Click Count (0)
  9. architecture/standards/0009-use-american-english.md

    # ADR-0009 - Use American English
    
    ## Status
    
    - ACCEPTED on 2025-11-24
    
    ## Context
    
    Gradle is an international open-source project with contributors from around the world. English is the primary language for code, comments, documentation, and communication, but there are variations in English spelling and terminology, specifically American English vs. British English.
    
    Inconsistency in spelling conventions can lead to several issues:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  10. src/main/assemblies/files/fess.in.bat

    set FESS_MAX_MEM=1g
    )
    
    if NOT "%FESS_HEAP_SIZE%" == "" (
    set FESS_MIN_MEM=%FESS_HEAP_SIZE%
    set FESS_MAX_MEM=%FESS_HEAP_SIZE%
    )
    
    REM min and max heap sizes should be set to the same value to avoid
    REM stop-the-world GC pauses during resize, and so that we can lock the
    REM heap in memory on startup to prevent any of it from being swapped
    REM out.
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Xms%FESS_MIN_MEM% -Xmx%FESS_MAX_MEM%
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 03:48:59 GMT 2025
    - 4.8K bytes
    - Click Count (0)
Back to Top