Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 646 for clinit (0.09 sec)

  1. 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)
  2. 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-op
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:59:28 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. README.md

    // Create crawler with custom configuration
    StandardCrawlerContainer container = new StandardCrawlerContainer();
    
    // Configure HTTP client with custom settings
    container.singleton("httpClient", HcHttpClient.class, client -> {
        client.setUserAgent("MyBot/1.0");
        client.setConnectionTimeout(30000);
        client.setMaxConnections(100);
    });
    
    // Configure URL filtering
    container.singleton("urlFilter", UrlFilterImpl.class, filter -> {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Aug 31 05:32:52 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

            try (ResponseData responseData = client.doGet(baseUrl + "file1.txt")) {
                assertEquals(200, responseData.getHttpStatusCode());
            }
        }
    
        public void test_customCharset() throws Exception {
            SmbClient client = new SmbClient();
            client.setCharset("ISO-8859-1");
            client.setResolveSids(false);
            assertEquals("ISO-8859-1", client.getCharset());
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 30K bytes
    - Viewed (0)
Back to top