- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 54 for featureset (1.66 sec)
-
README.md
curl4j [](https://github.com/codelibs/curl4j/actions/workflows/maven.yml) ===== A simple cURL-like Java HTTP client. ## Features - Fluent API for building HTTP requests (GET, POST, PUT, DELETE, HEAD, OPTIONS, CONNECT, TRACE) - Support for query parameters, headers, body (String or stream), compression, SSL configuration, proxies, and timeouts
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserFactoryUtil.java
try { factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); factory.setFeature("http://xml.org/sax/features/external-general-entities", false); factory.setFeature("http://xml.org/sax/features/external-parameter-entities", false); } catch (SAXNotRecognizedException | SAXNotSupportedException e) { throw new SAXRuntimeException(e);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* </ol> * <p> * The class also provides methods for configuring features and properties of the * underlying DOM parser, as well as defining rules for extracting child URLs * from specific HTML tags and attributes. * </p> * * <p> * <b>Configuration:</b> * </p> * <ul> * <li><b>featureMap:</b> A map of features to be set on the DOM parser.</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/transformer_basic.xml
instance="singleton"> <property name="name">"binaryTransformer"</property> </component> <component name="defaultFeatureMap" class="java.util.LinkedHashMap"> <postConstruct name="put"> <arg>"http://xml.org/sax/features/namespaces"</arg> <arg>"false"</arg> </postConstruct> </component> <component name="defaultPropertyMap" class="java.util.LinkedHashMap"> </component>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Sep 30 21:21:24 UTC 2018 - 3.3K bytes - Viewed (0) -
CLAUDE.md
try (ResponseData responseData = client.execute(requestData)) { // Process } // Temp files auto-deleted ``` --- ## Best Practices for AI Assistants ### When Adding Features 1. Read existing code first (use symbol overview tools) 2. Follow existing patterns 3. Add tests 4. Handle resources properly (try-with-resources) 5. Consider thread safety 6. Update JavaDoc
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
this.htmlTagPattern = htmlTagPattern; } /** * Gets the map of parser features. * * @return the feature map */ public Map<String, String> getFeatureMap() { return featureMap; } /** * Sets the map of parser features. * * @param featureMap the feature map to set */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Oct 04 08:47:19 UTC 2025 - 9.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
* * <p>This factory is typically initialized through dependency injection and can be * configured with initialization parameters that are passed to all registered clients.</p> * * <p>Features:</p> * <ul> * <li>Pattern-based client mapping</li> * <li>Ordered client registration</li> * <li>Bulk client registration</li> * <li>Automatic client initialization</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 7.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
* retry counts and intervals between attempts. * * <p>The client supports a RequestListener interface to monitor the request lifecycle and handle * exceptions during retries.</p> * * <p>Key features:</p> * <ul> * <li>Configurable maximum retry attempts</li> * <li>Adjustable interval between retries</li> * <li>Exception tracking and aggregation</li> * <li>Request lifecycle monitoring through listener</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractor.java
/** * Extracts text content and metadata from Markdown files. * This extractor provides better structured data extraction compared to Tika's generic text extraction. * * <p>Features: * <ul> * <li>YAML front matter metadata extraction</li> * <li>Heading structure extraction</li> * <li>Link URL extraction</li> * <li>Code block content extraction</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 8.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
/** * Extracts text content and metadata from CSV files. * This extractor provides better structured data extraction compared to Tika's generic text extraction. * * <p>Features: * <ul> * <li>Automatic delimiter detection (comma, tab, semicolon, pipe)</li> * <li>Header row detection and extraction</li> * <li>Column name to data value association</li> * <li>Quoted field handling</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 12.8K bytes - Viewed (0)