Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 502 for configured (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. docs/multi-user/README.md

    ## Get started
    
    In this document we will explain in detail on how to configure multiple users.
    
    ### 1. Prerequisites
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. docs/debugging/README.md

    ```sh
    mc admin trace --all --verbose myminio
    ```
    
    ## Subnet Health
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

        assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, -1));
      }
    
      /**
       * This test creates a long random sequence of inputs, then a lot of differently configured sinks
       * process it; all should produce the same answer, the only difference should be the number of
       * process()/processRemaining() invocations, due to alignment.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java

            return false;
        }
    
        /**
         * Create a reconnection request for the given handle
         * @param info the handle information
         * @return the create request configured for reconnection
         */
        protected Smb2CreateRequest createReconnectionRequest(HandleInfo info) {
            // This would need access to the Configuration and proper setup
            // For now, we provide the structure
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top