Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 231 for configured (0.04 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

            this.pageNumberList = pageNumberList;
        }
    
        /**
         * Gets the default page size from the Fess configuration.
         *
         * @return the default page size configured in the system
         */
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

            }
            return buildDefaultQueryBuilder(fessConfig, context, (f, b) -> QueryBuilders.wildcardQuery(f, origQuery).boost(b * boost));
        }
    
        /**
         * Converts a wildcard value to lowercase if configured to do so.
         *
         * @param value The wildcard value to potentially convert
         * @return The value in lowercase if lowercaseWildcard is true, otherwise the original value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

            boostExpression = rule.getBoostExpr();
            scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript();
        }
    
        /**
         * Determines if the given document data matches the configured match expression.
         *
         * @param map the document data as a map of field names to values
         * @return true if the document matches the expression, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/UserService.java

            // setup condition
            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        /**
         * Retrieves a list of all available users in the system.
         * Returns up to the maximum configured number of users.
         *
         * @return a list of all available users
         */
        public List<User> getAvailableUserList() {
            return userBhv.selectList(cb -> {
                cb.query().matchAll();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

            this.pageNumberList = pageNumberList;
        }
    
        /**
         * Gets the default page size from the Fess configuration.
         *
         * @return the default page size configured in the system
         */
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

            this.pageNumberList = pageNumberList;
        }
    
        /**
         * Returns the default page size from the system configuration.
         *
         * @return the default page size configured in the system
         */
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/main/assemblies/files/fess

        fi
    
        # Make sure we don't use any predefined locale, as we check some exception message strings and rely on english language
        # As those strings are created by the OS, they are dependent on the configured locale
        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
        if [ "x$daemonized" = "x" ]; then
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Connection.kt

     * Each connection can carry a varying number of streams, depending on the underlying protocol being
     * used. HTTP/1.x connections can carry either zero or one streams. HTTP/2 connections can carry any
     * number of streams, dynamically configured with `SETTINGS_MAX_CONCURRENT_STREAMS`. A connection
     * currently carrying zero streams is an idle stream. We keep it alive because reusing an existing
     * connection is typically faster than establishing a new one.
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top