Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,118 for Dagger (0.04 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

     * <li>{@link #loadIndexSettings()}: Loads the index settings from a JSON file.</li>
     * </ul>
     *
     * <p>Fields:
     * <ul>
     * <li>{@link #logger}: Logger instance for logging debug information.</li>
     * <li>{@link #client}: OpenSearch client instance.</li>
     * <li>{@link #arraySettingsIndexName}: Name of the array settings index.</li>
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. cmd/server-main.go

    		for !result.HealthyRead {
    			if debugNoExit {
    				logger.Info("Not waiting for quorum since we are debugging.. possible cause unhealthy sets")
    				logger.Info(result.String())
    				break
    			}
    			d := time.Duration(r.Float64() * float64(time.Second))
    			logger.Info("Waiting for quorum READ healthcheck to succeed retrying in %s.. possible cause unhealthy sets", d)
    			logger.Info(result.String())
    			time.Sleep(d)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue May 27 15:18:36 UTC 2025
    - 35.9K bytes
    - Viewed (4)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

     *
     * Character mapping files contain mapping rules in the format:
     * input1,input2,... => output
     */
    public class CharMappingFile extends DictionaryFile<CharMappingItem> {
        /** Logger instance for this class. */
        private static final Logger logger = LogManager.getLogger(CharMappingFile.class);
    
        /** Type identifier for character mapping dictionaries. */
        private static final String MAPPING = "mapping";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

     *   crawler.addUrl("http://example.com/");
     *   crawler.execute();
     *   crawler.close();
     * </pre>
     */
    public class Crawler implements Runnable, AutoCloseable {
    
        private static final Logger logger = LogManager.getLogger(Crawler.class);
    
        /**
         * Service for managing URL queues during crawling.
         */
        @Resource
        protected UrlQueueService<UrlQueue<?>> urlQueueService;
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractorTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class HtmlXpathExtractorTest extends PlainTestCase {
        private static final Logger logger = LogManager.getLogger(HtmlXpathExtractorTest.class);
    
        public HtmlXpathExtractor htmlXpathExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. docs/ru/docs/index.md

    Вы увидите автоматическую интерактивную документацию API (предоставленную <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank">Swagger UI</a>):
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### Альтернативная документация по API
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/concurrent/CommonPoolUtil.java

     */
    package org.codelibs.core.concurrent;
    
    import java.util.concurrent.ForkJoinPool;
    
    import org.codelibs.core.log.Logger;
    
    /**
     * Utility for common pool operations.
     */
    public abstract class CommonPoolUtil {
        private static final Logger logger = Logger.getLogger(CommonPoolUtil.class);
    
        protected CommonPoolUtil() {
            // nothing
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/SsoManager.java

     * and delegates authentication operations to the appropriate SSO provider based
     * on the current configuration.
     */
    public class SsoManager {
        /** Logger for this class. */
        private static final Logger logger = LogManager.getLogger(SsoManager.class);
    
        /** List of registered SSO authenticators. */
        protected final List<SsoAuthenticator> authenticatorList = new ArrayList<>();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/InputStreamThread.java

     * of recent lines for retrieval.
     */
    public class InputStreamThread extends Thread {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(InputStreamThread.class);
    
        /** Buffered reader for reading from the input stream */
        private final BufferedReader br;
    
        /** Maximum buffer size constant */
        public static final int MAX_BUFFER_SIZE = 1000;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

     * the stored file path as a File object.
     * </p>
     */
    public class FileTransformer extends HtmlTransformer {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(FileTransformer.class);
    
        /**
         * Constructs a new FileTransformer.
         */
        public FileTransformer() {
            // Default constructor
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 11.7K bytes
    - Viewed (0)
Back to top