- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for minVersion (0.05 sec)
-
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
* @return minimum protocol version */ public int getMinVersion() { return minVersion; } /** * Set the minimum SMB Direct protocol version * * @param minVersion minimum protocol version */ public void setMinVersion(int minVersion) { this.minVersion = minVersion; } /** * Get the maximum SMB Direct protocol version *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java
* * @return minimum version */ public int getMinVersion() { return minVersion; } /** * Set minimum protocol version * * @param minVersion minimum version */ public void setMinVersion(int minVersion) { this.minVersion = minVersion; } /** * Get maximum protocol version * * @return maximum version */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java
* @return minimum protocol version */ public int getMinVersion() { return minVersion; } /** * Set the minimum SMB Direct protocol version * * @param minVersion minimum protocol version */ public void setMinVersion(int minVersion) { this.minVersion = minVersion; } /** * Get the maximum SMB Direct protocol version *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.4K bytes - Viewed (0) -
README.md
jcifs.smb.client.responseTimeout=30000 # Authentication jcifs.smb.client.domain=WORKGROUP jcifs.smb.client.username=guest jcifs.smb.client.password= # Protocol versions (SMB1 to SMB 3.1.1) jcifs.smb.client.minVersion=SMB1 jcifs.smb.client.maxVersion=SMB311 # Security jcifs.smb.client.signingPreferred=false jcifs.smb.client.signingEnforced=false jcifs.smb.client.encryptionEnforced=false
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/JvmCategory.kt
* limitations under the License. */ package common enum class JvmCategory( override val vendor: JvmVendor, override val version: JvmVersion, ) : Jvm { MIN_VERSION(JvmVendor.OPENJDK, JvmVersion.JAVA_17), MAX_LTS_VERSION(JvmVendor.OPENJDK, JvmVersion.JAVA_21), MAX_VERSION(JvmVendor.OPENJDK, JvmVersion.JAVA_25),
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Aug 05 16:58:51 UTC 2025 - 992 bytes - Viewed (0) -
src/archive/tar/strconv.go
// complement encoded number in big-endian byte order. if len(b) > 0 && b[0]&0x80 != 0 { // Handling negative numbers relies on the following identity: // -a-1 == ^a // // If the number is negative, we use an inversion mask to invert the // data bytes and treat the value as an unsigned number. var inv byte // 0x00 if positive or zero, 0xff if negative if b[0]&0x40 != 0 { inv = 0xff } var x uint64
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 9.1K bytes - Viewed (0)