Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 495 for Caching (0.28 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/cache/CacheRetention.java

         * - Build-wide configuration
         * - Project model caching
         * - Inter-module metadata
         */
        SESSION_SCOPED,
    
        /**
         * Data should only be retained for the current build request.
         * Suitable for:
         * - Plugin execution results
         * - Temporary build artifacts
         * - Phase-specific data
         */
        REQUEST_SCOPED,
    
        /**
         * Caching should be disabled for this data.
         * Suitable for:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. README.md

    - Support for query parameters, headers, body (String or stream), compression, SSL configuration, proxies, and timeouts
    - Automatic in-memory or on-disk caching of request/response bodies
    - Synchronous and asynchronous (callback) execution
    - Minimal dependencies (only Apache Commons IO)
    
    ## Installation
    
    ### Maven
    
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:11:14 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Helper class for managing popular words and suggestions.
     * Provides functionality to retrieve popular words based on search parameters
     * and manages caching for improved performance.
     */
    public class PopularWordHelper {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(PopularWordHelper.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

            /**
             * Check if lease has read caching
             *
             * @return true if read caching is enabled
             */
            public boolean hasReadCache() {
                return Smb2LeaseState.hasReadCaching(leaseState);
            }
    
            /**
             * Check if lease has write caching
             *
             * @return true if write caching is enabled
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  5. docs/SMB3_IMPLEMENTATION_PLAN.md

    - [ ] Implement directory metadata caching
    - [ ] Add directory change notification integration
    - [ ] Create parent-child lease relationships
    - [ ] Implement directory lease break handling
    - [ ] Add directory enumeration caching
    
    #### 4.3 Integration Points
    - Extend `SmbFile` for directory lease support
    - Modify directory listing operations for caching
    - Update change notification handling
    
    ---
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            // No matching host header
            String key = virtualHostHelper.getVirtualHostKey();
            assertEquals("", key);
    
            // Matching host header
            request.addHeader("Host", "example.com");
            key = virtualHostHelper.getVirtualHostKey();
            assertEquals("", key); // Still empty due to caching
    
            // Test caching by calling again - should return cached value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. docs/smb3-features/01-smb3-lease-design.md

        public static final int SMB2_LEASE_NONE           = 0x00;
        public static final int SMB2_LEASE_READ_CACHING   = 0x01;  // R - Read caching
        public static final int SMB2_LEASE_HANDLE_CACHING = 0x02;  // H - Handle caching  
        public static final int SMB2_LEASE_WRITE_CACHING  = 0x04;  // W - Write caching
        
        // Common combinations
        public static final int SMB2_LEASE_READ_HANDLE    = 0x03;  // RH
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  8. gradle.properties

    org.gradle.caching=true
    org.gradle.parallel=true
    
    android.useAndroidX=true
    kotlin.mpp.applyDefaultHierarchyTemplate=false
    
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 240 bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java

            this.leaseState = leaseState;
        }
    
        /**
         * Gets the cache scope for directory enumeration caching
         * @return the cache scope
         */
        public DirectoryCacheScope getCacheScope() {
            return cacheScope;
        }
    
        /**
         * Sets the cache scope for directory enumeration caching
         * @param cacheScope the cache scope to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilder.java

    /**
     * A builder of {@link LoadingCache} and {@link Cache} instances.
     *
     * <h2>Prefer <a href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a> over Guava's caching
     * API</h2>
     *
     * <p>The successor to Guava's caching API is <a
     * href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a>. Its API is designed to make it a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
Back to top