Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 71 for 51 (0.01 seconds)

  1. src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java

            assertEquals(69, smbComNtTransaction.primarySetupOffset, "primarySetupOffset should be initialized to 69");
            assertEquals(51, smbComNtTransaction.secondaryParameterOffset, "secondaryParameterOffset should be initialized to 51");
        }
    
        @Test
        void testWriteParameterWordsWireFormat_PrimaryTransaction() {
            // Test the writeParameterWordsWireFormat for a primary transaction.
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java

    abstract class SmbComNtTransaction extends SmbComTransaction {
    
        // relative to headerStart
        private static final int NTT_PRIMARY_SETUP_OFFSET = 69;
        private static final int NTT_SECONDARY_PARAMETER_OFFSET = 51;
    
        static final int NT_TRANSACT_QUERY_SECURITY_DESC = 6;
    
        int function;
    
        SmbComNtTransaction() {
            primarySetupOffset = NTT_PRIMARY_SETUP_OFFSET;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 3K bytes
    - Click Count (0)
  3. src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java

            ServerMessageBlock.writeInt2(20, buf, 9); // byteCount for main block
    
            // At offset 50, the implementation writes andx.wordCount (0) to buffer
            // Then reads byteCount at offset 51
            ServerMessageBlock.writeInt2(20, buf, 51);
    
            int n = block.readAndXWireFormat(buf, 0);
            assertTrue(n > 0);
            assertTrue(next.received, "Chained SMB should be marked received");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

     */
    public abstract class SmbComNtTransaction extends SmbComTransaction {
    
        // relative to headerStart
        private static final int NTT_PRIMARY_SETUP_OFFSET = 71;
        private static final int NTT_SECONDARY_PARAMETER_OFFSET = 51;
    
        /**
         * NT transaction function code for querying security descriptors.
         * Used to retrieve security information about a file or directory.
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb1/util/DES.java

                (byte) 49, (byte) 41, (byte) 33, (byte) 25, (byte) 17, (byte) 9, (byte) 1, (byte) 58, (byte) 50, (byte) 42, (byte) 34,
                (byte) 26, (byte) 18, (byte) 10, (byte) 2, (byte) 59, (byte) 51, (byte) 43, (byte) 35, (byte) 62, (byte) 54, (byte) 46,
                (byte) 38, (byte) 30, (byte) 22, (byte) 14, (byte) 6, (byte) 61, (byte) 53, (byte) 45, (byte) 37, (byte) 29, (byte) 21,
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 22.7K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/hash/Fingerprint2011.java

        long part2 = load64(bytes, offset + 8);
        long part3 = load64(bytes, offset + 16);
        long part4 = load64(bytes, offset + 24);
    
        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 51);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 23);
        output[0] = seedA + part4;
        output[1] = seedB + c;
      }
    
      /*
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        // relative to headerStart
        private static final int PRIMARY_SETUP_OFFSET = 61;
        private static final int SECONDARY_PARAMETER_OFFSET = 51;
    
        private static final int DISCONNECT_TID = 0x01;
        private static final int ONE_WAY_TRANSACTION = 0x02;
    
        private static final int PADDING_SIZE = 2;
    
        private final int flags = 0x00;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  8. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            buffer[47] = 0x00;
            buffer[48] = 0x00;
    
            // Data displacement (2 bytes)
            buffer[49] = 0x00;
            buffer[50] = 0x00;
    
            // Setup count (1 byte)
            buffer[51] = 0x00;
    
            // Reserved (1 byte)
            buffer[52] = 0x00;
    
            // Byte count (2 bytes)
            buffer[53] = 0x00;
            buffer[54] = 0x00;
    
            // Test decode
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  9. build-logic/src/main/kotlin/AlpnVersions.kt

    Yuri Schimke <******@****.***> 1769963735 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 01 16:35:35 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  10. docs/en/docs/advanced/openapi-callbacks.md

    This part is pretty normal, most of the code is probably already familiar to you:
    
    {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[7:11,34:51] *}
    
    /// tip
    
    The `callback_url` query parameter uses a Pydantic [Url](https://docs.pydantic.dev/latest/api/networks/) type.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.7K bytes
    - Click Count (0)
Back to Top