Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addAttribute (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            nodeMatchingBoth.addAttribute("href", "#");
            nodeMatchingBoth.addAttribute("class", "nav-link");
            assertTrue(tagWithAttrAndCss.matches(nodeMatchingBoth));
    
            MockNode nodeWithWrongAttr = new MockNode("a");
            nodeWithWrongAttr.addAttribute("href", "http://example.com");
            nodeWithWrongAttr.addAttribute("class", "nav-link");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/opensearch/extension/analysis/DisableGraphFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
        }
    
        @Override
        public TokenStream create(final TokenStream tokenStream) {
            tokenStream.addAttribute(DisableGraphAttribute.class);
            return tokenStream;
        }
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sun May 18 02:59:16 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

            return value;
        }
    
        /**
         * Adds an attribute to the factory.
         * @param name The name of the attribute.
         * @param value The value of the attribute.
         */
        public void addAttribute(final String name, final Object value) {
            attributeMap.put(name, value);
        }
    
        /**
         * Adds a feature to the factory.
         * @param key The key of the feature.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            final Attribute attr = new BasicAttribute(name, value);
            final ModificationItem mod = new ModificationItem(DirContext.ADD_ATTRIBUTE, attr);
            modifyList.add(mod);
        }
    
        /**
         * Modifies an entry by replacing an attribute.
         *
         * @param modifyList The list of modification items.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
Back to top