- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getListCount (0.09 sec)
-
src/main/java/jcifs/smb/SmbTreeImpl.java
Trans2FindFirst2 req = new Trans2FindFirst2( tf.getConfig(), "\\", "*", SmbConstants.ATTR_DIRECTORY, tf.getConfig().getListCount(), tf.getConfig().getListSize()); Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig()); try { send(req, resp); }
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/config/BaseConfiguration.java
return this.maximumBufferSize; } @Override public int getBufferCacheSize () { return this.bufferCacheSize; } @Override public int getListCount () { return this.smbListCount; } @Override public int getListSize () { return this.smbListSize; } @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/Configuration.java
/** * * Property <tt>jcifs.smb.client.listCount</tt> (int, default 200) * * @return maxmimum number of elements to request in a list request */ int getListCount (); /** * * Property <tt>jcifs.smb.client.listSize</tt> (int, default 65435) * * @return maximum data size for list/info requests (known overhead is subtracted) */
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
CIFSContext ctx = getContext(); ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) { @Override public int getListCount () { return pageSize; } }); 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)