Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 0x0000000c (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	ERROR_LINE_NOT_FOUND                         Errno = 0x20000000 | 0xC0000000 | 0x102
    	ERROR_NO_BACKUP                              Errno = 0x20000000 | 0xC0000000 | 0x103
    	ERROR_NO_ASSOCIATED_CLASS                    Errno = 0x20000000 | 0xC0000000 | 0x200
    	ERROR_CLASS_MISMATCH                         Errno = 0x20000000 | 0xC0000000 | 0x201
    	ERROR_DUPLICATE_FOUND                        Errno = 0x20000000 | 0xC0000000 | 0x202
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_GROUP_MANDATORY          = 0x00000001
    	SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002
    	SE_GROUP_ENABLED            = 0x00000004
    	SE_GROUP_OWNER              = 0x00000008
    	SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010
    	SE_GROUP_INTEGRITY          = 0x00000020
    	SE_GROUP_INTEGRITY_ENABLED  = 0x00000040
    	SE_GROUP_LOGON_ID           = 0xC0000000
    	SE_GROUP_RESOURCE           = 0x20000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	FILE_SUPPORTS_HARD_LINKS          = 0x00400000
    	FILE_SUPPORTS_OBJECT_IDS          = 0x00010000
    	FILE_SUPPORTS_OPEN_BY_FILE_ID     = 0x01000000
    	FILE_SUPPORTS_REPARSE_POINTS      = 0x00000080
    	FILE_SUPPORTS_SPARSE_FILES        = 0x00000040
    	FILE_SUPPORTS_TRANSACTIONS        = 0x00200000
    	FILE_SUPPORTS_USN_JOURNAL         = 0x02000000
    	FILE_UNICODE_ON_DISK              = 0x00000004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/math/all_test.go

    	{float32(NaN()), float32(NaN())},
    }
    var nextafter32SC = []float32{
    	0,
    	0,
    	-1.401298464e-45, // Float32frombits(0x80000001)
    	float32(NaN()),
    	1.401298464e-45, // Float32frombits(0x00000001)
    	float32(Copysign(0, -1)),
    	float32(Copysign(0, -1)),
    	-1.401298464e-45, // Float32frombits(0x80000001)
    	float32(NaN()),
    	float32(NaN()),
    }
    
    var vfnextafter64SC = [][2]float64{
    	{0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top