- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 51 for quines (0.04 seconds)
-
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
final Map<String, Object> source = new LinkedHashMap<>(); source.put("title", "Title with \"quotes\" and \\backslash"); source.put("content", "Line1\nLine2\tTabbed"); final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet()); assertTrue(json.contains("\\\"quotes\\\"")); assertTrue(json.contains("\\\\backslash")); assertTrue(json.contains("\\n"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Expected for missing file assertTrue(true); } } @Test public void test_reload_withEmptyLines() throws Exception { // Create content with empty lines and comments String content = "# Comment line\n" + "\n" + // empty line "word1\n" + " \n" + // whitespace line (may be treated as content) "# Another comment\n" + "word2\n";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
public void test_command_string_edge_cases() throws Exception { // Test with commands containing special characters final List<String> specialCommands = Arrays.asList("echo \"test with quotes\"", "echo 'test with single quotes'", "echo test with spaces", "echo test&with&ersand", "echo test|with|pipe"); generator.setCommandList(specialCommands);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
docs/pt-BR/README.md
### Traduzir para o Seu Idioma Fess é um software internacionalizado. Se você quiser adicionar rótulos/mensagens para o seu idioma, por favor, traduza o arquivo de propriedades e renomeie-o para fess\_\*\_[lang].properties.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Nov 11 22:42:32 GMT 2025 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
*/ @Test public void test_evaluate_specialCharacters() { final Map<String, Object> params = new HashMap<>(); params.put("text", "Hello \"World\" with 'quotes'"); assertEquals("Hello \"World\" with 'quotes'", groovyEngine.evaluate("return text", params)); } /** * Test script with unicode characters */ @Test public void test_evaluate_unicodeCharacters() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
} @Test public void test_sourceTitles_emptyTitles() { final ChatMessage msg = ChatMessage.assistantMessage("Some content here that is quite long enough to be truncated."); final Map<String, Object> doc = new HashMap<>(); doc.put("title", ""); doc.put("url", "http://example.com/1"); msg.addSource(new ChatSource(1, doc));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/dict/stopwords/StopwordsFileTest.java
stopwordsFile.reload(null, is); assertEquals(2, stopwordsFile.stopwordsItemList.size()); // The content creates two lines: "word\n1" and "word\" assertTrue(stopwordsFile.stopwordsItemList.stream().anyMatch(item -> item.getInput().contains("word"))); } // Test StopwordsUpdater inner class @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* @param pbCall callback to configure the ProcessBuilder * @param bufferSize size of the buffer for process output * @param outputCallback callback to handle process output lines * @return JobProcess representing the started process * @throws JobProcessingException if the process cannot be started */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 06:54:47 GMT 2025 - 10.9K bytes - Click Count (0)