- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for dello (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/resources/fess_message_it.properties
errors.failed_to_upload_stopwords_file = Impossibile caricare il file delle stopwords. errors.failed_to_download_elevate_file = Impossibile scaricare il file delle parole elevate. errors.failed_to_upload_elevate_file = Impossibile caricare il file delle parole elevate. errors.failed_to_download_badword_file = Impossibile scaricare il file delle parole proibite.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
} } @Test public void test_startProcess_basicCommand() { String sessionId = "test_session"; List<String> cmdList = Arrays.asList("echo", "hello"); Consumer<ProcessBuilder> pbCall = pb -> { pb.redirectErrorStream(true); }; try { JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pbCall);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
} @Test public void test_encodeUrl_already_encoded() { 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/crawler/helper/FessMimeTypeHelperTest.java
return null; } }); mimeTypeHelper.init(); // Null config means no override try (InputStream is = new ByteArrayInputStream("Hello world".getBytes(StandardCharsets.UTF_8))) { assertEquals("text/plain", mimeTypeHelper.getContentType(is, "test.txt")); } } @Test public void test_init_singleMapping() throws IOException {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 24 09:06:33 GMT 2026 - 12.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
assertEquals("hello world", chatClient.testEscapeQueryValue("hello world")); } @Test public void test_escapeQueryValue_backslash() { assertEquals("path\\\\to\\\\file", chatClient.testEscapeQueryValue("path\\to\\file")); } @Test public void test_escapeQueryValue_doubleQuote() { assertEquals("say \\\"hello\\\"", chatClient.testEscapeQueryValue("say \"hello\""));
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) -
src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java
assertEquals("", markdownRenderer.render("")); } @Test public void test_render_plainText() { String result = markdownRenderer.render("Hello World"); assertTrue(result.contains("Hello World")); assertTrue(result.contains("<p>")); } @Test public void test_render_bold() { String result = markdownRenderer.render("**bold text**");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
public void test_toLowercaseWildcard_enabled() { queryCommand.setLowercaseWildcard(true); assertEquals("test", queryCommand.toLowercaseWildcard("TEST")); assertEquals("hello", queryCommand.toLowercaseWildcard("Hello")); assertEquals("mixed123", queryCommand.toLowercaseWildcard("MiXeD123")); assertEquals("already_lower", queryCommand.toLowercaseWildcard("already_lower")); } @Test
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) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
// Test quote functionality through the builder behavior assertEquals("test", getQuery("test", new String[0], Collections.emptyMap(), Collections.emptyMap(), false)); assertEquals("hello world", getQuery("hello world", new String[0], Collections.emptyMap(), Collections.emptyMap(), false)); } @Test public void test_escapeQuery() { // Test escaping functionality through escape parameterCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.7K 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 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) -
src/test/java/org/codelibs/fess/entity/ChatSessionTest.java
final LocalDateTime beforeAdd = session.getLastAccessedAt(); final ChatMessage message = ChatMessage.userMessage("Hello"); session.addMessage(message); assertEquals(1, session.getMessages().size()); assertEquals("Hello", session.getMessages().get(0).getContent()); assertTrue(session.getLastAccessedAt().isAfter(beforeAdd) || session.getLastAccessedAt().isEqual(beforeAdd));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 12.6K bytes - Click Count (0)