Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createInformation (0.68 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

            final Decodable i = createInformation(this.expectInfoType, this.expectInfoClass);
            if (i != null) {
                i.decode(buffer, bufferOffset, bufferLength);
            }
            bufferIndex = Math.max(bufferIndex, bufferOffset + bufferLength);
            this.info = i;
            return bufferIndex - start;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

        })
        @DisplayName("Test createInformation with various valid info type and class combinations")
        void testCreateInformationValidCombinations(byte infoType, byte infoClass) throws Exception {
            // Use reflection to test private method
            Method createInfoMethod = Smb2QueryInfoResponse.class.getDeclaredMethod("createInformation", byte.class, byte.class);
            createInfoMethod.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top