Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        /** XPath expression for extracting thumbnail content from meta tags */
        private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content";
    
        /** XPath expression for extracting Open Graph image content from meta tags */
        private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    # Maximum length of file title in documents.
    crawler.document.file.max.title.length=100
    # Maximum length of file digest in documents.
    crawler.document.file.max.digest.length=200
    # Whether to append meta content from files.
    crawler.document.file.append.meta.content=true
    # Whether to append body content from files.
    crawler.document.file.append.body.content=true
    # Default language for file documents.
    crawler.document.file.default.lang=
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

        /* The iterator currently returning elements. */
        private Iterator<? extends T> iterator;
    
        /*
         * We track the "meta iterators," the iterators-of-iterators, below.  Usually, topMetaIterator
         * is the only one in use, but if we encounter nested concatenations, we start a deque of
         * meta-iterators rather than letting the nesting get arbitrarily deep.  This keeps each
         * operation O(1).
         */
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
Back to top