- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 195 for TXT (0.01 seconds)
-
src/test/java/org/codelibs/fess/storage/StorageItemTest.java
final StorageItem item = new StorageItem("root-file.txt", "", false, 512L, null, "cm9vdC1maWxlLnR4dA=="); assertEquals("root-file.txt", item.getName()); assertEquals("", item.getPath()); } public void test_deeplyNestedPath() { final String deepPath = "/level1/level2/level3/level4/level5/"; final StorageItem item = new StorageItem("nested.txt", deepPath, false, 256L, null, "bmVzdGVkLnR4dA==");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 4.6K 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) -
build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report-aggregation.gradle.kts
description = "Dependencies to aggregate reports from" } val allIncubationReports = tasks.register<IncubatingApiAggregateReportTask>("allIncubationReports") { group = "verification" reports.from(resolver("txt")) htmlReportFile = project.layout.buildDirectory.file("reports/incubation/all-incubating.html") csvReportFile = project.layout.buildDirectory.file("reports/incubation/all-incubating.csv")
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jul 02 12:28:02 GMT 2025 - 1.5K 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/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
/** * Constructs a new CharMappingCreator with the mapping file pattern. */ public CharMappingCreator() { super("mapping.*\\.txt"); } /** * Registers this creator with the dictionary manager after construction. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java
private static final Logger logger = LogManager.getLogger(KuromojiCreator.class); /** * Constructs a new Kuromoji creator. */ public KuromojiCreator() { super("kuromoji.*\\.txt"); } /** * Registers this creator to the dictionary manager. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts
} url = "https://gradle.org" licenses { license { name = "Apache-2.0" url = "http://www.apache.org/licenses/LICENSE-2.0.txt" } } developers { developer { name = "The Gradle team" organization = "Gradle Technologies"Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Feb 06 07:41:19 GMT 2026 - 3.4K 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)