Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getAttributeCacheTimeout (0.25 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getListSize();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getAttributeCacheTimeout()
         */
        @Override
        public long getAttributeCacheTimeout() {
            return this.delegate.getAttributeCacheTimeout();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isIgnoreCopyToException()
         */
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 24.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/Configuration.java

        int getListSize();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.attrExpirationPeriod} (int, 5000)
         *
         * @return timeout of file attribute cache
         */
        long getAttributeCacheTimeout();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.ignoreCopyToException} (boolean, false)
         *
         * @return whether to ignore exceptions that occur during file copy
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        public int getListCount() {
            return this.smbListCount;
        }
    
        @Override
        public int getListSize() {
            return this.smbListSize;
        }
    
        @Override
        public long getAttributeCacheTimeout() {
            return this.smbAttributeExpiration;
        }
    
        @Override
        public boolean isIgnoreCopyToException() {
            return this.ignoreCopyToException;
        }
    
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
Back to Top