Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for 0x0000000c (0.62 sec)

  1. guava/src/com/google/common/hash/Crc32cHashFunction.java

            processRemaining(EMPTY);
          }
          return HashCode.fromInt(~crc0);
        }
    
        static final int[] BYTE_TABLE = {
          0x00000000, 0xf26b8303, 0xe13b70f7, 0x1350f3f4, 0xc79a971f, 0x35f1141c,
          0x26a1e7e8, 0xd4ca64eb, 0x8ad958cf, 0x78b2dbcc, 0x6be22838, 0x9989ab3b,
          0x4d43cfd0, 0xbf284cd3, 0xac78bf27, 0x5e133c24, 0x105ec76f, 0xe235446c,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(countFrames(logs, "FINE: >> 0x00000000     8 PING          "))
          .isEqualTo(1)
        assertThat(countFrames(logs, "FINE: << 0x00000000     8 PING          "))
          .isEqualTo(1)
        assertThat(countFrames(logs, "FINE: >> 0x00000000     8 PING          ACK"))
          .isEqualTo(1)
        assertThat(countFrames(logs, "FINE: << 0x00000000     8 PING          ACK"))
          .isEqualTo(1)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmUtil.java

            byte[] temp = new byte[28 + avPairsLength + 4];
    
            Encdec.enc_uint32le(0x00000101, temp, 0); // Header
            Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved
            Encdec.enc_uint64le(nanos1601, temp, 8);
            System.arraycopy(clientChallenge, 0, temp, 16, 8);
            Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown
            if ( avPairs != null )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacSignature.java

    
    @SuppressWarnings ( "javadoc" )
    public class PacSignature {
    
        public static final int KERB_CHECKSUM_HMAC_MD5 = 0xFFFFFF76;
        public static final int HMAC_SHA1_96_AES128 = 0x0000000F;
        public static final int HMAC_SHA1_96_AES256 = 0x00000010;
    
        public static final int ETYPE_ARCFOUR_HMAC = 23;
        public static final int ETYPE_AES128_CTS_HMAC_SHA1_96 = 17;
        public static final int ETYPE_AES256_CTS_HMAC_SHA1_96 = 18;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/security_windows.go

    )
    
    //sys	ImpersonateSelf(impersonationlevel uint32) (err error) = advapi32.ImpersonateSelf
    //sys	RevertToSelf() (err error) = advapi32.RevertToSelf
    
    const (
    	TOKEN_ADJUST_PRIVILEGES = 0x0020
    	SE_PRIVILEGE_ENABLED    = 0x00000002
    )
    
    type LUID struct {
    	LowPart  uint32
    	HighPart int32
    }
    
    type LUID_AND_ATTRIBUTES struct {
    	Luid       LUID
    	Attributes uint32
    }
    
    type TOKEN_PRIVILEGES struct {
    	PrivilegeCount uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/math/big/float_test.go

    		{"0x1.9p-149", math.Float32frombits(0x000000002), Above},
    
    		{"0x2.0p-149", math.Float32frombits(0x000000002), Exact},
    		{"0x2.8p-149", math.Float32frombits(0x000000002), Below}, // rounded down to even
    		{"0x2.9p-149", math.Float32frombits(0x000000003), Above},
    
    		{"0x3.0p-149", math.Float32frombits(0x000000003), Exact},
    		{"0x3.7p-149", math.Float32frombits(0x000000003), Below},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    #define TEST_OR			0x00008000
    
    #define TEST_DELIMIT		0x00010000
    #define TEST_OK			0x00020000
    #define TEST_SAME		0x00040000
    
    #define TEST_ACTUAL		0x00100000
    #define TEST_BASELINE		0x00200000
    #define TEST_FAIL		0x00400000
    #define TEST_PASS		0x00800000
    #define TEST_SUMMARY		0x01000000
    
    #define TEST_IGNORE_ERROR	0x02000000
    #define TEST_IGNORE_OVER	0x04000000
    #define TEST_IGNORE_POSITION	0x08000000
    
    #define TEST_CATCH		0x10000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

       * ```
       *
       * Where direction is `<<` for inbound and `>>` for outbound.
       *
       * For example, the following would indicate a HEAD request sent from the client.
       * ```
       * `<< 0x0000000f    12 HEADERS       END_HEADERS|END_STREAM
       * ```
       */
      fun frameLog(
        inbound: Boolean,
        streamId: Int,
        length: Int,
        type: Int,
        flags: Int,
      ): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            byte[] temp = new byte[28 + targetInfoLength + 4];
    
            Encdec.enc_uint32le(0x00000101, temp, 0); // Header
            Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved
            Encdec.enc_uint64le(nanos1601, temp, 8);
            System.arraycopy(clientChallenge, 0, temp, 16, 8);
            Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown
            if (targetInfo != null)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	{0x00000020, "DF_1_INITFIRST"},
    	{0x00000040, "DF_1_NOOPEN"},
    	{0x00000080, "DF_1_ORIGIN"},
    	{0x00000100, "DF_1_DIRECT"},
    	{0x00000200, "DF_1_TRANS"},
    	{0x00000400, "DF_1_INTERPOSE"},
    	{0x00000800, "DF_1_NODEFLIB"},
    	{0x00001000, "DF_1_NODUMP"},
    	{0x00002000, "DF_1_CONFALT"},
    	{0x00004000, "DF_1_ENDFILTEE"},
    	{0x00008000, "DF_1_DISPRELDNE"},
    	{0x00010000, "DF_1_DISPRELPND"},
    	{0x00020000, "DF_1_NODIRECT"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top