Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 104 for Reloaded (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java

         * This ID corresponds to a specific Kuromoji dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the Kuromoji user dictionary to be uploaded.
         * This file should be in the Kuromoji user dictionary format containing custom word definitions.
         */
        @Required
        public MultipartFormFile kuromojiFile;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"reload_config"}}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/UploadForm.java

    /**
     * Form class for backup file upload.
     * This form handles file uploads for backup and restore operations.
     */
    public class UploadForm {
    
        /**
         * The backup file to be uploaded.
         */
        @Required
        public MultipartFormFile bulkFile;
    
        /**
         * Default constructor for UploadForm.
         */
        public UploadForm() {
            // Default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. dbflute_fess/playsql/_readme.txt

    replace-schema-*.sql:
    DDL statements for creation of your schema.
    You should write your own DDL statements in this file.
    (A SQL separator is semicolon ";")
    
    take-finally-*.sql:
    SQL statements for check loaded data (or DDL after data loading)
    You should write your own SQL statements in this file.
    (basically same specifications as replace-schema.sql)
    
    The "data" directory is for data loading like this:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 1.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Fingerprint2011.java

        int lengthAligned = length & ~topBit;
        int lengthRemainder = length & topBit;
        long hash = seed ^ (length * mul);
    
        for (int i = 0; i < lengthAligned; i += 8) {
          long loaded = load64(bytes, offset + i);
          long data = shiftMix(loaded * mul) * mul;
          hash ^= data;
          hash *= mul;
        }
    
        if (lengthRemainder != 0) {
          long data = load64Safely(bytes, offset + lengthAligned, lengthRemainder);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Fingerprint2011.java

        int lengthAligned = length & ~topBit;
        int lengthRemainder = length & topBit;
        long hash = seed ^ (length * mul);
    
        for (int i = 0; i < lengthAligned; i += 8) {
          long loaded = load64(bytes, offset + i);
          long data = shiftMix(loaded * mul) * mul;
          hash ^= data;
          hash *= mul;
        }
    
        if (lengthRemainder != 0) {
          long data = load64Safely(bytes, offset + lengthAligned, lengthRemainder);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Response.kt

       * 1 MiB of response data is loaded into memory. (You could use any size here, though large values
       * risk exhausting memory.)
       *
       * This returns an empty value if the trailers are available, but have no data.
       *
       * It is not safe to call this concurrently with code that is processing the response body.
       *
       * @throws IOException if the trailers cannot be loaded, such as if the network connection is
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 14:39:28 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java

         * This ID corresponds to a specific stopwords dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the stopwords to be uploaded.
         * This file should contain a list of words that should be filtered out during indexing.
         */
        @Required
        public MultipartFormFile stopwordsFile;
    
        /**
         * Default constructor for UploadForm.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

            });
        }
    
        /**
         * Loads KeyMatch settings from the database and builds a query map.
         *
         * @return The number of loaded KeyMatch settings.
         */
        @Override
        public int load() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java

         * @param handler the CORS handler to associate with the origin
         */
        public void add(final String origin, final CorsHandler handler) {
            if (logger.isDebugEnabled()) {
                logger.debug("Loaded {}", origin);
            }
            handerMap.put(origin, handler);
        }
    
        /**
         * Gets the CORS handler for the specified origin.
         * If no specific handler is found, returns the wildcard handler.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top