Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for WORLD (0.01 seconds)

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

            assertEquals("hello", DocumentUtil.encodeUrl("hello"));
            assertEquals("hello-world", DocumentUtil.encodeUrl("hello-world"));
            assertEquals("hello_world", DocumentUtil.encodeUrl("hello_world"));
            assertEquals("hello.world", DocumentUtil.encodeUrl("hello.world"));
        }
    
        @Test
        public void test_encodeUrl_empty_and_null() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. 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)
  3. 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)
  4. src/test/java/org/codelibs/fess/util/OptionalUtilTest.java

            String testValue = "HELLO WORLD";
            OptionalEntity<String> result = OptionalUtil.ofNullable(testValue);
    
            assertTrue(result.isPresent());
    
            // Test that we can chain operations
            String processed = result.map(s -> s.toLowerCase()).orElse("default");
    
            assertEquals("hello world", processed);
    
            // Test with null value
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            assertEquals("", chatClient.testEscapeQueryValue(""));
        }
    
        @Test
        public void test_escapeQueryValue_noSpecialChars() {
            assertEquals("hello world", chatClient.testEscapeQueryValue("hello world"));
        }
    
        @Test
        public void test_escapeQueryValue_backslash() {
            assertEquals("path\\\\to\\\\file", chatClient.testEscapeQueryValue("path\\to\\file"));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  6. .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)
  7. 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)
  8. .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)
  9. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

            String template = "Hello ${name}";
            Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("name", "World");
    
            Object result = scriptEngine.evaluate(template, paramMap);
            assertEquals("Hello World", result);
        }
    
        // Test evaluate method with empty template
        @Test
        public void test_evaluate_withEmptyTemplate() {
            String template = "";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  10. .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)
Back to Top