Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for configured (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

        /**
         * Handles document redirection requests.
         * Validates the document ID, logs click events if enabled, and redirects
         * to the target URL or serves file content directly if configured.
         *
         * @param form the go form containing document ID and tracking parameters
         * @return action response for redirection or content streaming
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryCommand.java

                            .getQueryLanguages(request.getLocales(), (String[]) request.getAttribute(Constants.REQUEST_LANGUAGES)));
        }
    
        /**
         * Builds a default query builder with configured fields and boost values.
         * @param fessConfig The Fess configuration.
         * @param context The query context.
         * @param builder The function to build individual field queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Assert deleteByQuery was called with the configured empty index
            assertTrue(deleteByQueryCalled);
            assertEquals("", deleteIndex);
    
            // Assert result is empty when successful
            assertEquals("", result);
        }
    
        public void test_execute_withEmptyFieldName() {
            // Configure empty field name
            expiresFieldName = "";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/ExecJob.java

            }
        }
    
        /**
         * Creates a timeout task for this job execution.
         * If timeout is not set or is <= 0, returns null.
         *
         * @return the timeout task, or null if no timeout is configured
         */
        protected TimeoutTask createTimeoutTask() {
            if (timeout <= 0) {
                return null;
            }
            return TimeoutManager.getInstance().addTimeoutTarget(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

         *
         * @param context the query context containing field mappings
         * @param fuzzyQuery the Lucene FuzzyQuery to convert
         * @param boost the boost factor to apply
         * @return OpenSearch QueryBuilder configured for fuzzy matching
         */
        protected QueryBuilder convertFuzzyQuery(final QueryContext context, final FuzzyQuery fuzzyQuery, final float boost) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         */
        public DataIndexHelper() {
            // Default constructor with explicit documentation
        }
    
        /**
         * Initiates crawling for all configured data stores.
         * This method retrieves all available data configurations and
         * starts the crawling process for each one.
         *
         * @param sessionId unique identifier for this crawling session
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         * Initializes the plugin helper with default settings.
         */
        public PluginHelper() {
            // Default constructor
        }
    
        /**
         * Retrieves available artifacts of the specified type from configured repositories.
         *
         * @param artifactType the type of artifacts to retrieve
         * @return an array of available artifacts
         * @throws PluginException if failed to access the artifact repository
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

         */
        public PopularWordHelper() {
            // Default constructor
        }
    
        /**
         * Initializes the PopularWordHelper after dependency injection.
         * Sets up the cache with configured size and expiration settings.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            // Test the specific field naming configuration
            JsonMappingOption option = provider.provideMappingOption();
    
            // The option should be configured with CAMEL_TO_LOWER_SNAKE
            // Field naming is now provided as OptionalThing
            OptionalThing<JsonFieldNaming> fieldNamingOpt = option.getFieldNaming();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        /**
         * Gets the array of available searchers based on configuration.
         * Filters the searchers array to include only those specified in the available searcher name set.
         * If no specific searchers are configured, returns all searchers.
         *
         * @return array of available RankFusionSearcher instances
         */
        protected RankFusionSearcher[] getAvailableSearchers() {
            if (availableSearcherNameSet.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top