Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for Storage (0.21 sec)

  1. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected String[] webProtocols = { "http:", "https:" };
    
        /** Array of supported file protocols for URL classification. */
        protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" };
    
        /** Queue to track the current XML element hierarchy during parsing. */
        protected LinkedList<String> tagQueue;
    
        /** List to store parsed label types for access control. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    import org.codelibs.fess.app.web.admin.searchlog.AdminSearchlogAction;
    import org.codelibs.fess.app.web.admin.sereq.AdminSereqAction;
    import org.codelibs.fess.app.web.admin.storage.AdminStorageAction;
    import org.codelibs.fess.app.web.admin.suggest.AdminSuggestAction;
    import org.codelibs.fess.app.web.admin.systeminfo.AdminSysteminfoAction;
    import org.codelibs.fess.app.web.admin.user.AdminUserAction;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                         styleClass="form-control"/>
                                        </div>
                                    </div>
                                        <%-- Storage --%>
                                    <h4><la:message key="labels.general_storage"/></h4>
                                    <div class="form-group row">
                                        <label for="storageEndpoint"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashMap.java

        this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask));
        this.setKey(entryIndex, key);
        this.setValue(entryIndex, value);
      }
    
      /** Resizes the entries storage if necessary. */
      private void resizeMeMaybe(int newSize) {
        int entriesSize = requireEntries().length;
        if (newSize > entriesSize) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         * Validates that the entity is not null and sets the creation time if not already present.
         *
         * @param crawlingInfo the crawling information entity to prepare for storage
         * @throws FessSystemException if the crawling information is null
         */
        protected void setupStoreCondition(final CrawlingInfo crawlingInfo) {
            if (crawlingInfo == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

        try {
          editor?.abort()
        } catch (_: IOException) {
        }
      }
    
      /**
       * Initialize the cache. This will include reading the journal files from the storage and building
       * up the necessary in-memory cache information.
       *
       * The initialization time may vary depending on the journal file size and the current actual
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        if (encoded.length() > fessConfig.getCookieSearchParameterMaxLengthAsInteger()) {
                            logger.warn("Encoded search parameters exceed the maximum cookie length: {} > {}. Skipping cookie storage.",
                                    encoded.length(), fessConfig.getCookieSearchParameterMaxLengthAsInteger());
                            return;
                        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterables.java

       * method. The returned lists implement {@link RandomAccess}, whether or not the input list does.
       *
       * <p><b>Note:</b> The current implementation eagerly allocates storage for {@code size} elements.
       * As a consequence, passing values like {@code Integer.MAX_VALUE} can lead to {@link
       * OutOfMemoryError}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: The target file does not exist in the storage. */
        public static final String ERRORS_storage_file_not_found = "{errors.storage_file_not_found}";
    
        /** The key of the message: Failed to download {0}. */
        public static final String ERRORS_storage_file_download_failure = "{errors.storage_file_download_failure}";
    
        /** The key of the message: Storage Access Error: {0} */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    stcgroup
    
    // stockholm : Stockholms kommun
    // https://www.iana.org/domains/root/db/stockholm.html
    stockholm
    
    // storage : XYZ.COM LLC
    // https://www.iana.org/domains/root/db/storage.html
    storage
    
    // store : Radix Technologies Inc.
    // https://www.iana.org/domains/root/db/store.html
    store
    
    // stream : dot Stream Limited
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
Back to top