- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 43 for TXT (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
exp = "test.txt"; assertEquals(exp, transformer.getFileName(url, Constants.UTF_8)); url = "http://example.com/test%20+%2B.txt"; exp = "test +.txt"; assertEquals(exp, transformer.getFileName(url, Constants.UTF_8)); url = "file://example.com/test%20+%2B.txt"; exp = "test ++.txt";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
assertEquals("storage://bucket/folder/file.txt", wizardAction.convertCrawlingPath("storage://bucket/folder/file.txt")); } @Test public void test_convertCrawlingPath_s3_protocol() { assertEquals("s3://bucket/path", wizardAction.convertCrawlingPath("s3://bucket/path")); assertEquals("s3://my-bucket/folder/file.txt", wizardAction.convertCrawlingPath("s3://my-bucket/folder/file.txt"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
assertTrue(goAction.isFileSystemPath("file:///path/to/file.txt")); assertTrue(goAction.isFileSystemPath("file://localhost/path/to/file.txt")); assertTrue(goAction.isFileSystemPath("file:/path/to/file.txt")); assertTrue(goAction.isFileSystemPath("file:C:/Users/test/file.txt")); } @Test public void test_isFileSystemPath_smb_protocol() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java
} }); mimeTypeHelper.init(); // .txt is not in the override map, should use normal detection try (InputStream is = new ByteArrayInputStream("Hello, world!".getBytes(StandardCharsets.UTF_8))) { assertEquals("text/plain", mimeTypeHelper.getContentType(is, "test.txt")); } } @TestCreated: 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/it/admin/StorageTests.java
String fileContent = "Test file content for storage upload"; // Upload file Response response = given().header("Authorization", getTestToken()) .multiPart("file", NAME_PREFIX + "test.txt", fileContent.getBytes()) .when() .put(getApiPath() + "/upload/"); // Storage may not be enabled, so accept various responses int statusCode = response.getStatusCode();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java
} @Test public void test_security_nullBytes() { // Null byte injection (the string contains literal null byte) assertEquals("fess.log\0.txt", AdminLogAction.sanitizeFilename("fess.log\0.txt")); } @Test public void test_security_unicodeCharacters() { // Full-width dots and other Unicode charactersCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
} } @Test public void test_writeThreadDump() throws IOException { // Create a temporary file for testing Path tempFile = Files.createTempFile("test-thread-dump", ".txt"); try { ThreadDumpUtil.writeThreadDump(tempFile.toString()); // Verify the file was created and contains contentCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/main/resources/crawler/rule.xml
</component> </property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>"http[s]?:.*sitemap[^/]*\.xml.*|http[s]?:.*sitemap[^/]*\.gz.*|http[s]?:.*sitemap[^/]*\.txt.*"</arg> </postConstruct> </component> <component name="webHtmlRule" class="org.codelibs.fess.crawler.rule.impl.RegexRule" > <property name="ruleId">"webHtmlRule"</property> <property name="responseProcessor">
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 29 08:21:02 GMT 2026 - 4.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 17.9K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} pom { licenses { license { name = "The Apache License, Version 2.0" url = "http://www.apache.org/licenses/LICENSE-2.0.txt" } } } } // publish plugin to local repository for integration testing ----------------- // See AbstractPluginTest val localRepository = layout.buildDirectory.dir("repository")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 11:01:20 GMT 2026 - 6.2K bytes - Click Count (0)