- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for addAttribute (0.04 sec)
-
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) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
private MyToken prevToken; private final List<MyToken> synonyms; private final CharTermAttribute termAttr = addAttribute(CharTermAttribute.class); private final OffsetAttribute offsetAttr = addAttribute(OffsetAttribute.class); private final PositionIncrementAttribute posIncAttr = addAttribute(PositionIncrementAttribute.class);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/PosConcatenationFilterFactory.java
posTags.addAll(tagList); } } @Override public TokenStream create(final TokenStream tokenStream) { final PartOfSpeechAttribute posAtt = tokenStream.addAttribute(PartOfSpeechAttribute.class); return new PosConcatenationFilter(tokenStream, posTags, () -> posAtt.getPartOfSpeech()); }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/DisableGraphFilterFactory.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 1.4K bytes - Viewed (0) -
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) -
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)