Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 158 of 158 for 0x1e (0.02 sec)

  1. src/test/java/jcifs/internal/TreeConnectResponseTest.java

                // Given - Prepare a valid SMB2 Tree Connect Response buffer
                byte[] buffer = new byte[16];
                // Structure size (16)
                buffer[0] = 0x10;
                buffer[1] = 0x00;
                // Share type (DISK)
                buffer[2] = Smb2TreeConnectResponse.SMB2_SHARE_TYPE_DISK;
                // Reserved
                buffer[3] = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

            // Then
            assertTrue(response.haveCapabilitiy(0x01)); // Has this bit
            assertTrue(response.haveCapabilitiy(0x0F)); // Has all these bits
            assertFalse(response.haveCapabilitiy(0x10)); // Doesn't have this bit
            assertFalse(response.haveCapabilitiy(0x40)); // Doesn't have this bit
        }
    
        @Test
        @DisplayName("Should check DFS support correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            assertEquals(level, enumEx.level);
            assertEquals(prefmaxlen, enumEx.prefmaxlen);
            assertEquals(info, enumEx.info);
            assertEquals(totalentries, enumEx.totalentries);
            assertEquals(0x15, enumEx.getOpnum());
        }
    
        @Test
        void testNetrDfsEnumEx_EncodeInDecodeOut() throws NdrException {
            String dfsName = "test_dfs";
            int level = 1;
            int prefmaxlen = 100;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                try (MockedStatic<Smb3KeyDerivation> mockedKeyDerivation = mockStatic(Smb3KeyDerivation.class)) {
                    byte[] derivedKey = new byte[16];
                    Arrays.fill(derivedKey, (byte) 0xEE);
                    mockedKeyDerivation.when(
                            () -> Smb3KeyDerivation.deriveSigningKey(eq(Smb2Constants.SMB2_DIALECT_0311), any(byte[].class), any(byte[].class)))
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                 * 00SSFSMB
                 * 0 - 0's
                 * S - size of payload
                 * FSMB - 0xFF SMB magic #
                 */
    
                if (this.sbuf[0] == (byte) 0x00 && this.sbuf[4] == (byte) 0xFE && this.sbuf[5] == (byte) 'S' && this.sbuf[6] == (byte) 'M'
                        && this.sbuf[7] == (byte) 'B') {
                    this.smb2 = true;
                    // also read the rest of the header
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    }
                    if (addr.getAddress() instanceof NbtAddress) {
                        final int code = ((NbtAddress) addr.getAddress()).getNameType();
                        if (code == 0x1d || code == 0x1b) {
                            type = TYPE_WORKGROUP;
                            return type;
                        }
                    }
                    type = TYPE_SERVER;
                }
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    011C          ; mapped                 ; 011D          # 1.1  LATIN CAPITAL LETTER G WITH CIRCUMFLEX
    011D          ; valid                                  # 1.1  LATIN SMALL LETTER G WITH CIRCUMFLEX
    011E          ; mapped                 ; 011F          # 1.1  LATIN CAPITAL LETTER G WITH BREVE
    011F          ; valid                                  # 1.1  LATIN SMALL LETTER G WITH BREVE
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    .12345E+5
    1_5.         // == 15.0
    0.15e+0_2    // == 15.0
    
    0x1p-2       // == 0.25
    0x2.p10      // == 2048.0
    0x1.Fp+0     // == 1.9375
    0X.8p-0      // == 0.5
    0X_1FFFP-16  // == 0.1249847412109375
    0x15e-2      // == 0x15e - 2 (integer subtraction)
    
    0x.p1        // invalid: mantissa has no digits
    1p-2         // invalid: p exponent requires hexadecimal mantissa
    0x1.5e-2     // invalid: hexadecimal mantissa requires p exponent
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
Back to top