Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Configurable (0.17 sec)

  1. android/guava-tests/test/com/google/common/io/TestByteSink.java

    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * A byte sink for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public class TestByteSink extends ByteSink implements TestStreamSupplier {
    
      private final ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java

         */
        public FessUrlQueueService(final OpenSearchCrawlerConfig crawlerConfig) {
            super(crawlerConfig);
        }
    
        /**
         * Fetches URL queue list for the specified session with configurable ordering strategy.
         * Supports sequential (default) and random ordering based on crawling configuration.
         *
         * @param sessionId the crawling session identifier
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

    import jakarta.validation.constraints.Pattern;
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating access tokens in the admin interface.
     * This form handles the creation of API access tokens with configurable permissions and expiration dates.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/TestByteSource.java

    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * A byte source for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public final class TestByteSource extends ByteSource implements TestStreamSupplier {
    
      private final byte[] bytes;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/TestByteSource.java

    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * A byte source for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public final class TestByteSource extends ByteSource implements TestStreamSupplier {
    
      private final byte[] bytes;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Query command implementation for handling fuzzy search queries.
     * This class converts Lucene FuzzyQuery objects into OpenSearch fuzzy query builders,
     * supporting configurable fuzzy matching parameters like edit distance and expansions.
     *
     */
    public class FuzzyQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(FuzzyQueryCommand.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Query command for handling wildcard queries.
     * Converts Lucene WildcardQuery objects to OpenSearch QueryBuilder objects,
     * supporting wildcard pattern matching with configurable case sensitivity.
     */
    public class WildcardQueryCommand extends QueryCommand {
    
        /**
         * Default constructor.
         */
        public WildcardQueryCommand() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.opensearch.config.exentity.BoostDocumentRule;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * A matcher class for applying document boost values based on configurable expressions.
     * This class evaluates match and boost expressions against document data to determine
     * if a document should receive a boost and what boost value to apply. It supports
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Helper class for controlling crawler execution intervals and timing.
     * This class manages crawler execution timing based on configurable rules
     * that can specify different delays for different time periods and days.
     */
    public class IntervalControlHelper {
    
        /** Flag indicating whether the crawler is currently running */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                return teminated;
            }
        }
    
        /**
         * Thread that reads input stream data and buffers it for later retrieval.
         * Captures output from command execution with configurable line buffering.
         */
        protected static class InputStreamThread extends Thread {
    
            /** Buffered reader for input stream. */
            private BufferedReader br;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top