- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 29 for WORLD (0.01 seconds)
-
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) -
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) -
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) -
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 valueCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.3K bytes - Click Count (0) -
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) -
.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) -
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) -
.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) -
.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) -
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)