Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 294 for configured (0.1 sec)

  1. src/main/java/org/codelibs/fess/entity/GeoInfo.java

        /**
         * Constructs a GeoInfo instance by parsing geographic parameters from the HTTP request.
         * Extracts geo.{field}.point and geo.{field}.distance parameters to create
         * geo-distance queries for each configured geographic field.
         *
         * @param request the HTTP servlet request containing geographic parameters
         * @throws InvalidQueryException if geo point format is invalid or parsing fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. src/test/java/jcifs/smb/SSPContextTest.java

                return this.established && this.integrity;
            }
        }
    
        @Nested
        @DisplayName("Happy path behavior")
        class HappyPath {
            @Test
            @DisplayName("All getters return configured values and MIC roundtrips")
            void testAllMethodsHappyPath() throws Exception {
                // Arrange
                ASN1ObjectIdentifier mech1 = new ASN1ObjectIdentifier("1.2.840.113554.1.2.2"); // Kerberos V5
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java

            // Package check to ensure we are validating the correct type
            assertEquals("jcifs.smb", clazz.getPackage().getName());
        }
    
        // Happy path: shouldForceSigning returns the configured value
        @ParameterizedTest
        @ValueSource(booleans = { true, false })
        @DisplayName("shouldForceSigning returns stubbed boolean value")
        void shouldForceSigningReturns(boolean expected) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/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)
  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