Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for soient (0.85 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. 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)
  3. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            // Create first index with alias
            client.admin().indices().prepareCreate(index1).addAlias(new Alias(aliasName)).execute().actionGet();
    
            // Create second index and add to same alias
            client.admin().indices().prepareCreate(index2).execute().actionGet();
            client.admin().indices().prepareAliases().addAlias(index2, aliasName).execute().actionGet();
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

    import org.apache.logging.log4j.Logger;
    import org.apache.lucene.search.TotalHits;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.opensearch.client.SearchEngineClientException;
    import org.codelibs.fess.thumbnail.ThumbnailManager;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocList;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  5. README.md

    curl4j
    [![Java CI with Maven](https://github.com/codelibs/curl4j/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/curl4j/actions/workflows/maven.yml)
    =====
    
    A simple cURL-like Java HTTP client.
    
    ## Features
    
    - Fluent API for building HTTP requests (GET, POST, PUT, DELETE, HEAD, OPTIONS, CONNECT, TRACE)
    - Support for query parameters, headers, body (String or stream), compression, SSL configuration, proxies, and timeouts
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         *
         * @return the thread pool
         */
        @Override
        public ThreadPool threadPool() {
            return client.threadPool();
        }
    
        /**
         * Gets the admin client for cluster and index administration.
         *
         * @return the admin client
         */
        @Override
        public AdminClient admin() {
            return client.admin();
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

    import org.codelibs.core.timer.TimeoutManager;
    import org.codelibs.core.timer.TimeoutTask;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.crawler.client.FesenClient;
    import org.codelibs.fess.exception.ContainerNotAvailableException;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.timer.SystemMonitorTarget;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.SystemUtil;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        protected static final String ENTRAID_TENANT = "entraid.tenant";
    
        /** Configuration key for Entra ID client secret. */
        protected static final String ENTRAID_CLIENT_SECRET = "entraid.client.secret";
    
        /** Configuration key for Entra ID client ID. */
        protected static final String ENTRAID_CLIENT_ID = "entraid.client.id";
    
        /** Configuration key for Entra ID reply URL. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  9. CLAUDE.md

    # CLAUDE.md
    
    This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
    
    ## Project Overview
    
    curl4j is a simple cURL-like Java HTTP client library providing a fluent API for building HTTP requests. It's designed to be minimal with only Apache Commons IO as a dependency.
    
    ## Development Commands
    
    ### Build and Test
    ```bash
    # Clean build and run tests
    mvn clean test
    
    # Full build with packaging
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top