Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for id3 (0.01 sec)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            options.webConfigIds = "id1,id2,id3";
    
            List<String> result = options.getWebConfigIdList();
            assertNotNull(result);
            assertEquals(3, result.size());
            assertTrue(result.contains("id1"));
            assertTrue(result.contains("id2"));
            assertTrue(result.contains("id3"));
        }
    
        public void test_Options_getWebConfigIdList_withNull() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java

            // Rule ID should remain constant
            String id1 = rule.getRuleId();
            String id2 = rule.getRuleId();
            String id3 = rule.getRuleId();
    
            assertEquals(id1, id2);
            assertEquals(id2, id3);
    
            // Processor should remain the same instance
            ResponseProcessor proc1 = rule.getResponseProcessor();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0xffff" type="string" offset="0"/> <!-- V1, L1      -->
          <match value="ID3" type="string" offset="0"/>
          <!-- in the wild, 0D0A or quite a few \x00 may precede the magic -->
          <match value="(?:\\x0D\\x0A|\\x00{1,1024})(?:\\xff[\\xe3\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff]|ID3)"
                 type="regex" offset="0"/>
        </magic>
        <glob pattern="*.mpga"/>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
Back to top