- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for using (0.01 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
* The {@code IdnDnsResolver} class implements the {@code DnsResolver} interface * to provide DNS resolution with support for Internationalized Domain Names (IDN). * It converts Unicode domain names to ASCII Compatible Encoding (ACE) using the * {@link java.net.IDN} class. * * <p>This class allows setting a custom flag for the IDN conversion and a custom * encoding for URL decoding.</p> * * <p>Example usage:</p> * <pre> * {@codeRegistered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
* <li>{@link #convert(String, String, String...)}: Converts the given text using the specified field and languages.</li> * </ul> * * <p>Inner Class: * <ul> * <li>LangAnayzerConverter: A protected inner class that implements the ReadingConverter interface. * It is responsible for converting text using a specific language analyzer. * <ul>
Registered: 2025-09-19 09:08 - Last Modified: 2025-08-07 02:41 - 6.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
* Parses a robots.txt file from the given input stream using UTF-8 encoding. * @param stream the input stream to parse * @return the parsed RobotsTxt object, or null if disabled */ public RobotsTxt parse(final InputStream stream) { return parse(stream, Constants.UTF_8); } /** * Parses a robots.txt file from the given input stream using the specified character encoding.Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 7.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
* * <p>The extractor supports two types of password management: * <ul> * <li>Static passwords configured via {@link #addPassword(String, String)}</li> * <li>Dynamic passwords provided through extraction parameters</li> * </ul> * * <p>Passwords are matched against URLs or resource names using regular expression patterns.
Registered: 2025-09-21 03:50 - Last Modified: 2025-08-07 02:55 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
import org.codelibs.fess.crawler.Constants; import org.codelibs.fess.crawler.entity.RequestData; import org.codelibs.fess.crawler.entity.RequestData.Method; /** * Builder class for creating RequestData objects using a fluent interface. * This class provides a simple way to construct RequestData objects with method chaining. * * <p>Usage example:</p> * <pre> * RequestData request = RequestDataBuilder.newRequestData()
Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MimeTypeHelper.java
* @return the detected content type */ String getContentType(InputStream is, String filename); /** * Determines the content type of the given input stream using the provided parameters. * @param is the input stream to analyze * @param params the parameters containing additional information like filename * @return the detected content type */Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/ICUNormalizer.java
*/ package org.codelibs.fess.suggest.normalizer; import com.ibm.icu.text.Transliterator; /** * ICUNormalizer is a class that implements the Normalizer interface and provides * functionality to normalize text using ICU4J's Transliterator. * * <p>This class uses a specified Transliterator to perform text normalization. * The Transliterator is initialized with a given ID during the construction of * the ICUNormalizer instance.</p> *
Registered: 2025-09-19 09:08 - Last Modified: 2025-07-04 14:00 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java
* @param method the HTTP method */ public void setMethod(final Method method) { this.method = method; } /** * Sets the HTTP method for this request using a string value. * Defaults to GET if the method is not recognized. * @param method the HTTP method as a string */ public void setMethod(final String method) {Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractor.java
import jp.gr.java_conf.dangan.util.lha.LhaHeader; /** * Extractor implementation for LHA (LZH) archive files. * This extractor can extract text content from files within LHA archives * by using appropriate extractors for each contained file type. * * @author shinsuke */ public class LhaExtractor extends AbstractExtractor { /** Logger for this class. */
Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 5.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java
/** * Creates a new XPathAPI instance. */ public XPathAPI() { xPath = createXPath(f -> {}); } /** * Creates an instance of {@link XPath} using the provided {@link Consumer} to configure the {@link XPathFactory}. * * @param builder a {@link Consumer} that accepts an {@link XPathFactory} and configures it. * @return a configured instance of {@link XPath}.Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 4.6K bytes - Viewed (0)