- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for featureMap (0.83 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java
xpathTransformer = new XpathTransformer(); xpathTransformer.setName("xpathTransformer"); Map<String, String> featureMap = newHashMap(); featureMap.put("http://xml.org/sax/features/namespaces", "false"); xpathTransformer.setFeatureMap(featureMap); Map<String, String> propertyMap = newHashMap(); xpathTransformer.setPropertyMap(propertyMap);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 12.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
return new String(data, Constants.UTF_8_CHARSET); } } public Map<String, String> getFeatureMap() { return featureMap; } public void setFeatureMap(final Map<String, String> featureMap) { this.featureMap = featureMap; } public Map<String, String> getPropertyMap() { return propertyMap; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
} propertyMap.put(key, value); } public Map<String, String> getFeatureMap() { return featureMap; } public void setFeatureMap(final Map<String, String> featureMap) { this.featureMap = featureMap; } public Map<String, String> getPropertyMap() { return propertyMap; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
this.htmlTagPattern = htmlTagPattern; } public Map<String, String> getFeatureMap() { return featureMap; } public void setFeatureMap(final Map<String, String> featureMap) { this.featureMap = featureMap; } public Map<String, String> getPropertyMap() { return propertyMap; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.9K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/transformer_basic.xml
</component> <component name="fileTransformer" class="org.codelibs.fess.crawler.transformer.impl.FileTransformer" instance="singleton"> <property name="name">"fileTransformer"</property> <property name="featureMap">defaultFeatureMap</property> <property name="propertyMap">defaultPropertyMap</property> <property name="childUrlRuleMap">allChildUrlRuleMap</property> </component> <component name="htmlTransformer"
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Sep 30 21:21:24 UTC 2018 - 3.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java
super.setUp(); fileTransformer = new FileTransformer(); fileTransformer.setName("fileTransformer"); Map<String, String> featureMap = newHashMap(); featureMap.put("http://xml.org/sax/features/namespaces", "false"); fileTransformer.setFeatureMap(featureMap); Map<String, String> propertyMap = newHashMap(); fileTransformer.setPropertyMap(propertyMap);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/resources/crawler/transformer.xml
<component name="fessXpathTransformer" class="org.codelibs.fess.crawler.transformer.FessXpathTransformer" instance="singleton"> <property name="name">"fessXpathTransformer"</property> <property name="featureMap">defaultFeatureMap</property> <property name="propertyMap">defaultPropertyMap</property> <property name="childUrlRuleMap">htmlUrlRuleMap</property> <!--
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jan 10 03:35:10 UTC 2019 - 1.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java
super.setUp(); htmlTransformer = new HtmlTransformer(); htmlTransformer.setName("htmlTransformer"); Map<String, String> featureMap = newHashMap(); featureMap.put("http://xml.org/sax/features/namespaces", "false"); htmlTransformer.setFeatureMap(featureMap); Map<String, String> propertyMap = newHashMap(); htmlTransformer.setPropertyMap(propertyMap);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
private StandardCrawlerContainer container; @Override protected void setUp() throws Exception { super.setUp(); final Map<String, String> featureMap = newHashMap(); featureMap.put("http://xml.org/sax/features/namespaces", "false"); final Map<String, String> propertyMap = newHashMap(); final Map<String, String> childUrlRuleMap = newHashMap();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 18K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
protected boolean validating; protected boolean includeAware; protected final Map<String, Object> attributeMap = new HashMap<>(); protected final Map<String, String> featureMap = new HashMap<>(); protected Map<String, String> fieldRuleMap = new LinkedHashMap<>(); /** a flag to trim a space characters. */ protected boolean trimSpaceEnabled = true;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0)