Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 33 of 33 for CREDITS (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                CommonServerMessageBlockRequest nextRequest = mock(CommonServerMessageBlockRequest.class);
                testBlock.prepare(nextRequest);
            }
    
            @Test
            @DisplayName("Test set request credits")
            void testSetRequestCredits() {
                testBlock.setRequestCredits(10);
            }
    
            @Test
            @DisplayName("Test set session ID")
            void testSetSessionId() {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 36.2K bytes
    - Click Count (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

         */
        protected int rdmaMaxSendSize;
        /**
         * Maximum size in bytes for RDMA receive operations
         */
        protected int rdmaMaxReceiveSize;
        /**
         * Number of RDMA credits to request during negotiation
         */
        protected int rdmaCredits;
        /**
         * Flag indicating whether RDMA is currently enabled and available
         */
        protected boolean rdmaEnabled = false;
        /**
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            return 1;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Request#setRequestCredits(int)
         */
        @Override
        public void setRequestCredits(final int credits) {
    
        }
    
        /**
         * @return the command
         */
        @Override
        public final int getCommand() {
            return this.command;
        }
    
        /**
         * @param command
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 38.9K bytes
    - Click Count (0)
Back to Top