Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TEST1 (2.24 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

            value = "ftp://123.123.123.123:21/test1/test.txt";
            ftpInfo = new FtpClient.FtpInfo(value, Constants.UTF_8);
            assertEquals("ftp://123.123.123.123/test1/test.txt", ftpInfo.toUrl());
            assertEquals("123.123.123.123:21", ftpInfo.getCacheKey());
            assertEquals("123.123.123.123", ftpInfo.getHost());
            assertEquals(21, ftpInfo.getPort());
            assertEquals("/test1", ftpInfo.getParent());
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriterTest.java

        }
    
        @Test
        public void test_mergeItemsWithDifferentTexts() throws Exception {
            String[][] readings1 = new String[1][];
            readings1[0] = new String[] { "test1" };
            SuggestItem item1 = new SuggestItem(new String[] { "ใƒ†ใ‚นใƒˆ1" }, readings1, new String[] { "content" }, 1, 0, -1,
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java

            assertEquals(0, elevateWords.length);
        }
    
        @Test
        public void test_restoreElevateWord() throws Exception {
            ElevateWord elevateWord1 =
                    new ElevateWord("test1", 2.0f, Collections.singletonList("test1"), Collections.singletonList("content"), null, null);
            ElevateWord elevateWord2 =
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertTrue(robotsTxt.allows("/also-spaced/", "ExtraSpaceBot"));
    
            // Test MixedCaseBot - mixed case directives should work
            assertFalse(robotsTxt.allows("/test1/", "MixedCaseBot"));
            assertTrue(robotsTxt.allows("/test2/", "MixedCaseBot"));
            assertEquals(2, robotsTxt.getCrawlDelay("MixedCaseBot"));
    
            // Test CommentBot - inline comments should be stripped
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top