- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 153 for TXT (0.01 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/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
*/ public class StemmerOverrideCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(StemmerOverrideCreator.class); /** * Constructs a new creator for stemmer override dictionaries. * It sets the file pattern to match files starting with "stemmer_override" * and ending with ".txt". */ public StemmerOverrideCreator() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.6K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts
versionFile = repoRoot().file("version.txt") releasedVersionsFile = releasedVersionsFile() sources.from(sourceSets.main.get().java.sourceDirectories) sources.from(sourceSets.main.get().groovy.sourceDirectories) htmlReportFile = file(layout.buildDirectory.file("reports/incubation/${project.name}.html")) textReportFile = file(layout.buildDirectory.file("reports/incubation/${project.name}.txt")) }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jul 02 12:28:02 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
* from files that match the pattern "synonym.*\\.txt". */ public class SynonymCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(SynonymCreator.class); /** * Constructs a new creator for synonym dictionaries. * It sets the file pattern to match files starting with "synonym" * and ending with ".txt". */ public SynonymCreator() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
* from files that match the pattern "stopwords.*\\.txt". */ public class StopwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(StopwordsCreator.class); /** * Constructs a new creator for stopwords dictionaries. * It sets the file pattern to match files starting with "stopwords" * and ending with ".txt". */ public StopwordsCreator() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.5K 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)