Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for Storage (0.05 sec)

  1. android/guava/src/com/google/common/io/Files.java

       *     not support creating temporary directories securely
       * @deprecated For Android users, see the <a
       *     href="https://developer.android.com/training/data-storage" target="_blank">Data and File
       *     Storage overview</a> to select an appropriate temporary directory (perhaps {@code
       *     context.getCacheDir()}), and create your own directory under that. (For example, you might
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  2. 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.6K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getOnlineHelpNamePlugin();
    
        /**
         * Get the value for the key 'online.help.name.storage'. <br>
         * The value is, e.g. storage <br>
         * comment: Online help key for storage.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getOnlineHelpNameStorage();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. 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)
  6. docs/smb3-features/01-smb3-lease-design.md

    ### 9.1 Memory Management
    - Lease entries should be evicted based on LRU when max leases reached
    - Implement periodic cleanup of expired leases
    
    ### 9.2 Thread Safety
    - Use concurrent data structures for lease storage
    - Minimize lock contention in hot paths
    - Async handling of lease breaks
    
    ### 9.3 Network Efficiency
    - Batch lease requests when possible
    - Implement lease key reuse for related files
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * File being created or opened must be a directory
         */
        public static final int FILE_DIRECTORY_FILE = 0x1;
        /**
         * Write operations go directly to persistent storage
         */
        public static final int FILE_WRITE_THROUGH = 0x2;
        /**
         * Access to the file is sequential only
         */
        public static final int FILE_SEQUENTIAL_ONLY = 0x4;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

                this.decryptionKey = null;
    
                log.debug("Keys stored in SecureKeyManager for session: {}", sessionId);
            } else {
                // Fall back to traditional in-memory storage
                this.encryptionKey = encryptionKey.clone();
                this.decryptionKey = decryptionKey.clone();
            }
        }
    
        /**
         * Get the negotiated cipher identifier
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  9. 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)
  10. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

    import org.junit.jupiter.api.Test;
    
    /**
     * Test secure password handling in NtlmPasswordAuthenticator
     */
    public class NtlmPasswordAuthenticatorTest {
    
        /**
         * Test password storage using char arrays
         */
        @Test
        public void testPasswordAsCharArray() {
            String testPassword = "TestPassword123!";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
Back to top