Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for Storage (0.06 sec)

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

    /**
     * Helper class for managing crawling information and statistics.
     * Provides functionality to track crawling sessions, manage document expiration,
     * and handle crawling information storage and retrieval.
     */
    public class CrawlingInfoHelper {
    
        /**
         * Creates a new instance of CrawlingInfoHelper.
         */
        public CrawlingInfoHelper() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java

            // Verify information level (SMB_FILE_BOTH_DIRECTORY_INFO)
            assertEquals(Trans2FindFirst2.SMB_FILE_BOTH_DIRECTORY_INFO, SMBUtil.readInt2(buffer, 6));
    
            // Verify search storage type (should be 0)
            assertEquals(0, SMBUtil.readInt4(buffer, 8));
    
            // Verify the path is included
            String writtenPath = readStringFromBuffer(buffer, 12, written - 12);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.12.md

        - [SIG-instrumentation](#sig-instrumentation)
        - [SIG-node](#sig-node)
        - [SIG-OpenStack](#sig-openstack)
        - [SIG-scheduling](#sig-scheduling)
        - [SIG-service-catalog](#sig-service-catalog)
        - [SIG-storage](#sig-storage)
        - [SIG-vmware](#sig-vmware)
        - [SIG-windows](#sig-windows)
      - [Action Required](#action-required-1)
      - [Deprecations and removals](#deprecations-and-removals)
      - [New Features](#new-features)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            url = "file://example.com/test%E3%81%82.txt";
            exp = "testあ.txt";
            assertEquals(exp, transformer.getFileName(url, Constants.UTF_8));
    
            url = "storage://example.com/test%E3%81%82.txt";
            exp = "testあ.txt";
            assertEquals(exp, transformer.getFileName(url, Constants.UTF_8));
    
            url = "smb://example.com/test%E3%81%82.txt";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/MoreObjects.java

         * helps to shortcut most calls to isEmpty(), which is important because the check for emptiness
         * is relatively expensive. Use a subtype so this also doesn't need any extra storage.
         */
        private static final class UnconditionalValueHolder extends ValueHolder {}
      }
    
      private MoreObjects() {}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

        /**
         * Function code to retrieve extended DFS referrals
         */
        public static final int FSCTL_DFS_GET_REFERRALS_EX = 0x000601B0;
        /**
         * Function code to trim file level storage
         */
        public static final int FSCTL_FILE_LEVEL_TRIM = 0x00098208;
        /**
         * Function code to validate SMB2 negotiate information
         */
        public static final int FSCTL_VALIDATE_NEGOTIATE_INFO = 0x000140204;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    online.help.name.searchlog=searchlog
    # Online help key for maintenance.
    online.help.name.maintenance=maintenance
    # Online help key for plugin.
    online.help.name.plugin=plugin
    # Online help key for storage.
    online.help.name.storage=storage
    
    # Supported languages for online help.
    online.help.supported.langs=ja
    
    # ----------------------------------------------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.15.md

    ### Continued improvement of CSI
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.14.md

    Durable Local Storage Management is Now GA ([#121](https://github.com/kubernetes/enhancements/issues/121#issuecomment-457396290))
    
    - Makes locally attached (non-network attached) storage available as a persistent volume source.
    - Allows users to take advantage of the typically cheaper and improved performance of persistent local storage
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:")
                    || path.startsWith("ftp:") || path.startsWith("storage:")) {
                return path;
            }
    
            if (path.startsWith("www.")) {
                return "http://" + path;
            }
    
            if (path.startsWith("//")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top