- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for avuto (0.57 sec)
-
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
// Get explicit type or auto-detect final String typeStr = fessConfig.getStorageType(); final StorageType type; if (StringUtil.isBlank(typeStr) || "auto".equalsIgnoreCase(typeStr)) { type = detectStorageType(endpoint); if (logger.isDebugEnabled()) { logger.debug("Auto-detected storage type: {} for endpoint: {}", type, endpoint); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
*/ public void setHasHeader(final boolean hasHeader) { this.hasHeader = hasHeader; } /** * Sets whether to auto-detect the delimiter. * * @param autoDetectDelimiter true to auto-detect */ public void setAutoDetectDelimiter(final boolean autoDetectDelimiter) { this.autoDetectDelimiter = autoDetectDelimiter; } /**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/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
Handler handler = new Handler(); Handler.GcsURLConnection conn = (Handler.GcsURLConnection) handler.openConnection(url); // getInputStream should try to auto-connect (and fail due to missing project ID) try { conn.getInputStream(); fail("Should throw IOException"); } catch (IOException e) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
Handler handler = new Handler(); Handler.StorageURLConnection conn = (Handler.StorageURLConnection) handler.openConnection(url); // getInputStream should try to auto-connect (and fail due to missing endpoint) try { conn.getInputStream(); fail("Should throw IOException"); } catch (IOException e) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
CLAUDE.md
# CLAUDE.md - Fess Suggest Project Guide > AI assistant guidance for the Fess Suggest project - a Java library providing intelligent search suggestions built on OpenSearch. ## Project Overview **Fess Suggest** delivers auto-completion, search suggestions, and popular word analytics with multi-language support. **Technology Stack:** - Java 21+, Maven - OpenSearch (provided dependency) - Apache Lucene (query parsing, text analysis)
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
final String osddLinkEnabled = fessConfig.getOsddLinkEnabled(); if (Constants.TRUE.equalsIgnoreCase(osddLinkEnabled)) { return true; } if (!Constants.AUTO.equalsIgnoreCase(osddLinkEnabled)) { return false; } final String ssoType = fessConfig.getSsoType(); return StringUtil.isBlank(ssoType) || Constants.NONE.equalsIgnoreCase(ssoType);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
private static final long serialVersionUID = 1L; /** * The type detector used by this parser to auto-detect the type of a * document. */ private final Detector detector; // always set in the constructor /** * Creates an auto-detecting parser instance using the default Tika * configuration. */ public TikaDetectParser() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 30.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Specifies which bucket to use for storing files in cloud storage. */ @Size(max = 1000) public String storageBucket; /** * Storage type for cloud storage (s3, gcs, auto). * Determines which storage client to use. */ @Size(max = 20) public String storageType; /** * Storage region for S3. * AWS region where the S3 bucket is located.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Status constant representing stopped state. */ public static final String STOP = "stop"; /** Constant representing automatic mode. */ public static final String AUTO = "auto"; /** Constant representing no value or empty state. */ public static final String NONE = "none"; // ============================================================ // Item/Field IdentifiersRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
CLAUDE.md
ds.delete(sessionId); ``` ### Resource Cleanup Pattern ```java // Always use try-with-resources for ResponseData 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
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0)