Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getCrawlerCrawlingDataEncoding (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformerTest.java

        }
    
        @Test
        public void test_fessConfig_crawlingDataEncoding() {
            final FessConfig config = ComponentUtil.getFessConfig();
            final String encoding = config.getCrawlerCrawlingDataEncoding();
            assertNotNull(encoding);
            // Default should be UTF-8 or similar
        }
    
        @Test
        public void test_fessConfig_ignoreEmptyContent() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. UTF-8 <br>
         * comment: Encoding for crawling data.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerCrawlingDataEncoding();
    
        /**
         * Get the value for the key 'crawler.web.protocols'. <br>
         * The value is, e.g. http,https <br>
         * comment: Supported web protocols for crawling.
    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)
Back to Top