Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for 0x12_3456 (0.35 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	LINUX_REBOOT_CMD_HALT                       = 0xcdef0123
    	LINUX_REBOOT_CMD_KEXEC                      = 0x45584543
    	LINUX_REBOOT_CMD_POWER_OFF                  = 0x4321fedc
    	LINUX_REBOOT_CMD_RESTART                    = 0x1234567
    	LINUX_REBOOT_CMD_RESTART2                   = 0xa1b2c3d4
    	LINUX_REBOOT_CMD_SW_SUSPEND                 = 0xd000fce2
    	LINUX_REBOOT_MAGIC1                         = 0xfee1dead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    }
    
    func TestLRUClientSessionCache(t *testing.T) {
    	// Initialize cache of capacity 4.
    	cache := NewLRUClientSessionCache(4)
    	cs := make([]ClientSessionState, 6)
    	keys := []string{"0", "1", "2", "3", "4", "5", "6"}
    
    	// Add 4 entries to the cache and look them up.
    	for i := 0; i < 4; i++ {
    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 4; i++ {
    		if s, ok := cache.Get(keys[i]); !ok || s != &cs[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"str": stringType,
    			}),
    			valid: []string{
    				"self.str.find('[0-9]+') == '123'",
    				"self.str.find('[0-9]+') != '456'",
    				"self.str.find('xyz') == ''",
    
    				"self.str.findAll('[0-9]+') == ['123', '456']",
    				"self.str.findAll('[0-9]+', 0) == []",
    				"self.str.findAll('[0-9]+', 1) == ['123']",
    				"self.str.findAll('[0-9]+', 2) == ['123', '456']",
    				"self.str.findAll('[0-9]+', 3) == ['123', '456']",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top