Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for maxVersion (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java

         * @return maximum protocol version
         */
        public int getMaxVersion() {
            return maxVersion;
        }
    
        /**
         * Set the maximum SMB Direct protocol version
         *
         * @param maxVersion maximum protocol version
         */
        public void setMaxVersion(int maxVersion) {
            this.maxVersion = maxVersion;
        }
    
        /**
         * Get the negotiated 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)
  2. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java

         * @return maximum protocol version
         */
        public int getMaxVersion() {
            return maxVersion;
        }
    
        /**
         * Set the maximum SMB Direct protocol version
         *
         * @param maxVersion maximum protocol version
         */
        public void setMaxVersion(int maxVersion) {
            this.maxVersion = maxVersion;
        }
    
        /**
         * Get the number of send credits requested
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java

         *
         * @return maximum version
         */
        public int getMaxVersion() {
            return maxVersion;
        }
    
        /**
         * Set maximum protocol version
         *
         * @param maxVersion maximum version
         */
        public void setMaxVersion(int maxVersion) {
            this.maxVersion = maxVersion;
        }
    
        /**
         * Get number of credits requested
         *
         * @return credits requested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. README.md

    # 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
    jcifs.smb.client.disablePlainTextPasswords=true
    
    # Performance
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/JvmCategory.kt

        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),
        SANTA_TRACKER_SMOKE_TEST_VERSION(JvmVendor.OPENJDK, JvmVersion.JAVA_17),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Aug 05 16:58:51 UTC 2025
    - 992 bytes
    - Viewed (0)
Back to top