Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getAttributeCacheTimeout (0.21 sec)

  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()
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb/SmbFile.java

                    this.attrExpiration = System.currentTimeMillis() + th.getConfig().getAttributeCacheTimeout();
                }
                else if ( info instanceof FileStandardInfo ) {
                    this.size = info.getSize();
                    this.sizeExpiration = System.currentTimeMillis() + th.getConfig().getAttributeCacheTimeout();
                }
                return info;
            }
    
            /*
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.smbListCount;
        }
    
    
        @Override
        public int getListSize () {
            return this.smbListSize;
        }
    
    
        @Override
        public long getAttributeCacheTimeout () {
            return this.smbAttributeExpiration;
        }
    
    
        @Override
        public boolean isIgnoreCopyToException () {
            return this.ignoreCopyToException;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.attrExpirationPeriod</tt> (int, 5000)
         * 
         * @return timeout of file attribute cache
         */
        long getAttributeCacheTimeout ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.ignoreCopyToException</tt> (boolean, false)
         * 
         * @return whether to ignore exceptions that occur during file copy
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top