- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for etter (0.81 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
assertEquals(content, data.getContent()); assertNotNull(data.getKeySet()); assertTrue(data.getKeySet().isEmpty()); } public void test_contentGetterSetter() { // Test content getter/setter ExtractData data = new ExtractData(); String content = "This is extracted content"; data.setContent(content); assertEquals(content, data.getContent());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
/** * Utility class for handling Base64 encoding and decoding. * <p> * This class now uses the standard {@link java.util.Base64} implementation * instead of a custom implementation, providing better security and performance. * The API remains backward compatible with previous versions. * </p> * * @author higa */ public abstract class Base64Util { /** * Do not instantiate. */Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/assemblies/files/generate-thumbnail
if [[ -z "${im_cmd}" ]] ; then echo "ImageMagick (convert or magick) does not exist." exit 1 fi target_file=$(echo "$url" | sed -e "s#^file:/*#/#g") # Build format hint from MIME type for better ImageMagick compatibility format_hint="" case "${mimetype}" in "image/gif") format_hint="gif:" ;; "image/tiff") format_hint="tiff:" ;; "image/png") format_hint="png:" ;;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractor.java
import org.commonmark.node.Text; import org.commonmark.parser.Parser; import org.commonmark.renderer.text.TextContentRenderer; /** * 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>
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
import org.codelibs.fess.crawler.entity.ExtractData; import org.codelibs.fess.crawler.exception.ExtractException; /** * 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>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 12.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java
import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ObjectNode; /** * Extracts text content and metadata from JSON files. * This extractor provides better structured data extraction compared to Tika's generic text extraction. * * <p>Features: * <ul> * <li>Structured text extraction with key-value pairs</li> * <li>Top-level field extraction as metadata</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 9.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
* <li>isImplicit: Whether to use implicit SSL/TLS encryption.</li> * <li>trustManager: The trust manager to use for SSL/TLS connections ("all", "valid", or "none").</li> * <li>enterLocalPassiveMode: Whether to enter local passive mode.</li> * <li>ftpAuthentications: An array of {@link FtpAuthentication} objects for different FTP URLs.</li> * </ul> * * <p>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* which is commonly used for Kerberos-based authentication in Windows environments. * It handles the negotiation between client and server to establish a secure * authentication context without requiring users to explicitly enter credentials. * * The authenticator supports various configuration options including delegation, * basic authentication fallback, and localhost authentication bypass. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
protected String algorithm = BLOWFISH; /** * The transformation to use for the cipher when using Key objects. * Default is Blowfish to match the algorithm default. * <p> * Note: For better security, consider using "AES/GCM/NoPadding" with proper IV handling. * </p> */ protected String transformation = BLOWFISH; /** * The key to use for encryption/decryption. */Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* @return A SuggesterBuilder instance. */ public static SuggesterBuilder builder() { return new SuggesterBuilder(); } // getter /** * Returns the SuggestSettings instance. * @return The SuggestSettings instance. */ public SuggestSettings settings() { return suggestSettings; } /**Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3)