- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getAttributeCacheTimeout (0.13 sec)
-
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() */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
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; } /*
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
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; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
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
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)