Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for elements (0.24 sec)

  1. src/main/java/org/codelibs/fess/util/PrunedTag.java

         * Each tag configuration follows the pattern: tagname[attr=value].classname#id
         *
         * Examples:
         * - "div.content" matches div elements with class "content"
         * - "span#header" matches span elements with ID "header"
         * - "p[data-type=ad]" matches p elements with data-type attribute equal to "ad"
         *
         * @param value the comma-separated string of pruned tag configurations
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 04:23:08 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java

                final JsonNode element = node.get(i);
                final String currentKey = parentKey + "[" + i + "]";
                extractContent(element, currentKey, textBuilder, metadataMap, depth + 1);
            }
    
            if (node.size() > maxArrayElements) {
                if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        public static final String CONTAINS = "contains:";
    
        /** XML element name for collections container. */
        protected static final String COLLECTIONS = "collections";
    
        /** XML element name for individual collection. */
        protected static final String COLLECTION = "collection";
    
        /** XML element name for global parameters container. */
        protected static final String GLOBALPARAMS = "globalparams";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         *
         * <p>The method uses secure XML parsing features to prevent XXE attacks and
         * other XML-based vulnerabilities. Component class names are extracted from
         * the 'class' attribute of 'component' elements in the XML files.</p>
         *
         * @return sorted list of data store class simple names discovered from plugins
         */
        protected List<String> loadDataStoreNameList() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/ArrayMap.java

        protected transient int threshold;
    
        /** Entry as a map */
        protected transient Entry<K, V>[] mapTable;
    
        /** Entry as an array */
        protected transient Entry<K, V>[] listTable;
    
        /** Number of elements */
        protected transient int size = 0;
    
        /** View as a {@link Set} */
        protected transient Set<? extends Map.Entry<K, V>> entrySet = null;
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals("http://www.example.com/page2.html", sitemaps[1].getLoc());
        }
    
        public void test_parseXmlSitemaps_withUnknownElements() {
            // Sitemap with unknown/custom elements should ignore them and parse known elements
            final String xml =
                    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\n"
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

                return parent.get(index);
            }
    
            @Override
            public E set(final int index, final E element) {
                return parent.set(index, element);
            }
    
            @Override
            public void add(final int index, final E element) {
                parent.add(index, element);
            }
    
            @Override
            public E remove(final int index) {
                return parent.remove(index);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            }
            return ComponentUtil.getDocumentHelper().encodeSimilarDocHash(input);
        }
    
        /**
         * Joins array or list elements into a single space-separated string.
         *
         * @param input the input object (String[], List, or String)
         * @return joined string with elements separated by spaces, or empty string if invalid input
         */
        public static String join(final Object input) {
            String[] values = null;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 25.4K bytes
    - Viewed (1)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

         *
         * @param url the base URL for resolving relative URLs
         * @param document the document to extract URLs from
         * @param xpath the XPath expression to select elements
         * @param attr the attribute name to extract URLs from
         * @param encoding the character encoding to use
         * @return a list of extracted URLs
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 29 07:42:33 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

            assertEquals(1, result.size());
            assertEquals("   ", result.get(0));
        }
    
        @Test
        public void testGetAsListWithListContainingNulls() {
            // Test with list containing null elements
            List<String> listWithNulls = new ArrayList<>();
            listWithNulls.add("valid");
            listWithNulls.add(null);
            listWithNulls.add("another");
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 26.7K bytes
    - Viewed (0)
Back to top