Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 195 of 195 for TXT (0.02 seconds)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            assertEquals(128, result.length());
        }
    
        @Test
        public void test_generateId_fileUrlWithPercent() {
            String result = crawlingInfoHelper.generateId("file:///data/100%25_done/report.txt");
            assertNotNull(result);
            assertEquals(128, result.length());
        }
    
        @Test
        public void test_generateId_urlWithUnicode() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            final File nonExistentParent = new File(tempDir, "non_existent_" + System.currentTimeMillis());
            final File outputFile = new File(nonExistentParent, "output.txt");
    
            try {
                assertFalse(nonExistentParent.exists());
                assertFalse(outputFile.exists());
    
                generator.setCommandList(Collections.singletonList("echo test"));
    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)
  3. CONTRIBUTING.md

    * [Write good commit messages.](https://cbea.ms/git-commit/#seven-rules)
    * [Sign off your commits](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to indicate that you agree to the terms of [Developer Certificate of Origin](https://developercertificate.org/). We can only accept PRs that have all commits signed off.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'crawler.ignore.robots.txt'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to ignore robots.txt during crawling.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerIgnoreRobotsTxt();
    
        /**
         * Is the property for the key 'crawler.ignore.robots.txt' true? <br>
         * The value is, e.g. false <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  5. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

        }
    
        @Test
        public void test_buildFilePath_withPercent() {
            final Path result =
                    indexExportJob.buildFilePath(tempDir.toString(), "file:///data/100%/report.txt", new HtmlIndexExportFormatter());
            assertNotNull(result);
            // Bare percent is invalid in URI syntax, so this should fall back to _invalid/hash path
    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)
Back to Top