Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getCrawlerDocumentMaxSiteLengthAsInteger (0.62 seconds)

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

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         *
         * @return the maximum site length as configured
         */
        default int getMaxSiteLength() {
            return getFessConfig().getCrawlerDocumentMaxSiteLengthAsInteger();
        }
    
        /**
         * Abbreviates a site string to the maximum allowed length if configured.
         *
         * @param value the site string to abbreviate
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

                @Override
                public String getCrawlerDocumentUnknownHostname() {
                    return "unknown";
                }
    
                @Override
                public Integer getCrawlerDocumentMaxSiteLengthAsInteger() {
                    return -1;
                }
            });
            final ProtocolHelper protocolHelper = new ProtocolHelper();
            protocolHelper.init();
    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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         * @throws NumberFormatException When the property is not integer.
         */
        Integer getCrawlerDocumentMaxSiteLengthAsInteger();
    
        /**
         * Get the value for the key 'crawler.document.site.encoding'. <br>
         * The value is, e.g. UTF-8 <br>
         * comment: Encoding for site names in documents.
    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