- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for useBatching (0.1 sec)
-
src/main/java/jcifs/config/PropertyConfiguration.java
* @param p * read from properties * @throws CIFSException * */ public PropertyConfiguration ( Properties p ) throws CIFSException { this.useBatching = Config.getBoolean(p, "jcifs.smb.client.useBatching", false); this.useUnicode = Config.getBoolean(p, "jcifs.smb.client.useUnicode", true); this.useLargeReadWrite = Config.getBoolean(p, "jcifs.smb.client.useLargeReadWrite", true);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} private final Map<String, Integer> batchLimits = new HashMap<>(); protected int localPid = -1; protected TimeZone localTimeZone; protected SecureRandom random; protected boolean useBatching = false; protected boolean useUnicode = true; protected boolean forceUnicode = false; protected boolean signingPreferred = false; protected boolean signingEnforced = false;
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
* * @return whether to use unicode, even if the server does not announce it */ boolean isForceUnicode (); /** * * Property <tt>jcifs.smb.client.useBatching</tt> (boolean, default false) * * @return whether to enable support for SMB1 AndX command batching */ boolean isUseBatching (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)