Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,997 for For (0.02 sec)

  1. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

     * and provides various query-based operations for document management.
     * It also integrates with the thumbnail generation system and handles
     * the cleanup of old documents during updates.</p>
     */
    public class IndexingHelper {
        /** Logger for this class */
        private static final Logger logger = LogManager.getLogger(IndexingHelper.class);
    
        /** Maximum number of retry attempts for failed operations */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/curl/CurlRequest.java

         */
        protected static final String GZIP = "gzip";
    
        /**
         * Logger for logging request details.
         */
        protected static final Logger logger = Logger.getLogger(CurlRequest.class.getName());
    
        /**
         * The URL for the HTTP request.
         */
        protected String url;
    
        /**
         * The proxy to be used for the HTTP request.
         */
        protected Proxy proxy;
    
        /**
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

            return this;
        }
    
        /**
         * Sets the delimiter for JavaBeans.
         * <p>
         * When copying between JavaBeans and {@link Map}, you can change the delimiter used in property names.
         * For example, if you specify an underscore as the delimiter for JavaBeans and a period as the delimiter for {@link Map},
         * the property names for the source and destination will be as follows:
         * </p>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        /** Character encoding for command output. */
        protected String commandOutputEncoding = Charset.defaultCharset().displayName();
    
        /** Command array for user update operations. */
        protected String[] updateCommand;
    
        /** Command array for user deletion operations. */
        protected String[] deleteCommand;
    
        /** Array of target usernames for command execution. */
        protected String[] targetUsers;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         */
        public String versionNo;
    
        /**
         * Default constructor for RelatedQueryPager.
         * Initializes a new instance with default values for pagination
         * and related query fields.
         */
        public RelatedQueryPager() {
            // Default constructor - fields will be initialized to default values
        }
    
        /**
         * Clears all pager data and resets to default values.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

        public String name;
    
        /** Search/filter parameter for data configuration handler name. */
        public String handlerName;
    
        /** Search/filter parameter for data configuration boost value. */
        public String boost;
    
        /** Search/filter parameter for data configuration availability status. */
        public String available;
    
        /** Search/filter parameter for data configuration sort order. */
        public String sortOrder;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for File Authentication management.
     *
     */
    public class AdminFileauthAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminFileauthAction() {
            super();
        }
    
        /** The role name for file authentication administration. */
        public static final String ROLE = "admin-fileauth";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  8. README.md

    - **Switch Expressions** - Optimized implementations using switch expressions for better performance
    - **Sequenced Collections** - Full support for Java 21 sequenced collections API with dedicated utility methods
    - **Performance Focused** - Optimized implementations for better runtime performance with reduced memory allocation
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java

        for (int rep = 0; rep < reps; rep++) {
          List<Object> builder = new ArrayList<>();
          for (int i = 0; i < size; i++) {
            builder.add(OBJECT);
          }
          dummy += ImmutableList.copyOf(builder).size();
        }
        return dummy;
      }
    
      @Benchmark
      int copyPreSizedArrayList(int reps) {
        int size = this.size;
        int tmp = 0;
        for (int rep = 0; rep < reps; rep++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing file authentication configurations.
     * This service provides operations for retrieving, storing, and deleting
     * file authentication settings used by the Fess search engine.
     */
    public class FileAuthenticationService {
    
        /**
         * Default constructor for file authentication service.
         * Creates a new instance with default values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top