- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getListSize (0.06 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
return this.bufferCacheSize; } @Override public int getListCount () { return this.smbListCount; } @Override public int getListSize () { return this.smbListSize; } @Override public long getAttributeCacheTimeout () { return this.smbAttributeExpiration; } @Override
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/smb/SmbTreeImpl.java
tf.getConfig(), "\\", "*", SmbConstants.ATTR_DIRECTORY, tf.getConfig().getListCount(), tf.getConfig().getListSize()); Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig()); try { send(req, resp); } catch ( SmbException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property <tt>jcifs.smb.client.listSize</tt> (int, default 65435) * * @return maximum data size for list/info requests (known overhead is subtracted) */ int getListSize (); /** * * * Property <tt>jcifs.smb.client.attrExpirationPeriod</tt> (int, 5000) * * @return timeout of file attribute cache */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
int numFiles = 100; CIFSContext ctx = getContext(); ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) { @Override public int getListSize () { return 1024; } }); ctx = withTestNTLMCredentials(ctx); try ( SmbResource root = ctx.get(getTestShareURL());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0)