- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 727 for clinit (3.37 sec)
-
fess-crawler-lasta/src/main/resources/crawler/client.xml
<property name="charset">"UTF-8"</property> </component> <component name="s3Client" class="org.codelibs.fess.crawler.client.s3.S3Client" instance="prototype"> <property name="charset">"UTF-8"</property> </component> <component name="gcsClient" class="org.codelibs.fess.crawler.client.gcs.GcsClient" instance="prototype"> <property name="charset">"UTF-8"</property> </component>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 3.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java
public void test_initialization_idempotency() { // Test that multiple init calls are safe FileSystemClient client = new FileSystemClient(); // First initialization if (client.isInit.compareAndSet(false, true)) { client.init(); } assertTrue("Client should be initialized", client.isInit.get()); // Second initialization attempt should be no-opRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:59:28 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
import software.amazon.awssdk.services.s3.model.Tag; /** * A crawler client implementation for accessing and retrieving content from S3-compatible storage systems * using AWS SDK v2. This client supports operations on Amazon S3 and S3-compatible storage systems. * * <p>This client requires the following initialization parameters: * <ul> * <li>endpoint - The URL of the S3-compatible server</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
import com.google.cloud.storage.StorageOptions; import jakarta.annotation.Resource; /** * A crawler client implementation for accessing and retrieving content from Google Cloud Storage. * This client supports operations on GCS buckets and objects. * * <p>This client requires the following initialization parameters: * <ul> * <li>projectId - The Google Cloud project ID</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
/** * Constructor for ESSourceReader. * @param client The OpenSearch client. * @param settings The SuggestSettings instance. * @param indexName The name of the index to read from. */ public ESSourceReader(final Client client, final SuggestSettings settings, final String indexName) { this.client = client; this.settings = settings; this.indexName = indexName;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 11.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
import io.minio.messages.Item; import io.minio.messages.Tags; import jakarta.annotation.Resource; /** * A crawler client implementation for accessing and retrieving content from storage systems using MinIO. * This client supports operations on object storage systems compatible with S3 protocol. * * <p>This client requires the following initialization parameters: * <ul> * <li>endpoint - The URL of the MinIO server</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20K bytes - Viewed (2) -
CLAUDE.md
All public classes and methods require JavaDoc with `@param`, `@return`, and `@throws` tags. ### Best Practices **Null Safety:** ```java public Suggester(final Client client, final SuggestSettings settings) { this.client = Objects.requireNonNull(client, "client must not be null"); this.settings = Objects.requireNonNull(settings, "settings must not be null"); } ``` **Logging with Context:** ```java
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/jcifs/internal/smb2/Smb2EncryptionContext.java
} /** * Set the key rotation bytes limit * * @param limit number of bytes to encrypt before rotating keys */ public void setKeyRotationBytesLimit(long limit) { this.keyRotationBytesLimit = limit; } /** * Set the key rotation time limit * * @param limit time in milliseconds before rotating keys */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
import org.codelibs.core.timer.TimeoutTask; import org.codelibs.fess.crawler.Constants; import org.codelibs.fess.crawler.builder.RequestDataBuilder; import org.codelibs.fess.crawler.client.AbstractCrawlerClient; import org.codelibs.fess.crawler.client.AccessTimeoutTarget; import org.codelibs.fess.crawler.entity.RequestData; import org.codelibs.fess.crawler.entity.ResponseData; import org.codelibs.fess.crawler.exception.ChildUrlsException;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/SmbConnectionTest.java
int treeConnectCreate = config.getBatchLimit("TreeConnectAndX.CreateDirectory"); assertTrue(treeConnectCreate >= 0, "TreeConnectAndX.CreateDirectory batch limit should be non-negative"); } /** * Test that batch limit respects Unicode settings */ @Test @DisplayName("Batch limit configuration with Unicode enabled")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0)