Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0xdead (0.07 sec)

  1. src/encoding/json/encode_test.go

    			}
    		})
    	}
    }
    
    type marshalPanic struct{}
    
    func (marshalPanic) MarshalJSON() ([]byte, error) { panic(0xdead) }
    
    func TestMarshalPanic(t *testing.T) {
    	defer func() {
    		if got := recover(); !reflect.DeepEqual(got, 0xdead) {
    			t.Errorf("panic() = (%T)(%v), want 0xdead", got, got)
    		}
    	}()
    	Marshal(&marshalPanic{})
    	t.Error("Marshal should have panicked")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    			}
    		})
    	}
    }
    
    type unmarshalPanic struct{}
    
    func (unmarshalPanic) UnmarshalJSON([]byte) error { panic(0xdead) }
    
    func TestUnmarshalPanic(t *testing.T) {
    	defer func() {
    		if got := recover(); !reflect.DeepEqual(got, 0xdead) {
    			t.Errorf("panic() = (%T)(%v), want 0xdead", got, got)
    		}
    	}()
    	Unmarshal([]byte("{}"), &unmarshalPanic{})
    	t.Fatalf("Unmarshal should have panicked")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_COPYFILERANGE                   = 0xDA9 // 3497
    	SYS_GETLINE                         = 0xDAA // 3498
    	SYS___GETLINE_A                     = 0xDAB // 3499
    	SYS_DIRFD                           = 0xDAC // 3500
    	SYS_CLOCK_GETTIME                   = 0xDAD // 3501
    	SYS_DUP3                            = 0xDAE // 3502
    	SYS_EPOLL_CREATE                    = 0xDAF // 3503
    	SYS_EPOLL_CREATE1                   = 0xDB0 // 3504
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_BRRK    uint32 = 0x0001 // FORMAT_E          BREAKPOINT
    
    	// added in z13
    	op_CXPT   uint32 = 0xEDAF // 	RSL-b	CONVERT FROM PACKED (to extended DFP)
    	op_CDPT   uint32 = 0xEDAE // 	RSL-b	CONVERT FROM PACKED (to long DFP)
    	op_CPXT   uint32 = 0xEDAD // 	RSL-b	CONVERT TO PACKED (from extended DFP)
    	op_CPDT   uint32 = 0xEDAC // 	RSL-b	CONVERT TO PACKED (from long DFP)
    	op_LZRF   uint32 = 0xE33B // 	RXY-a	LOAD AND ZERO RIGHTMOST BYTE (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	http2cipher_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384      uint16 = 0x00AB
    	http2cipher_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256      uint16 = 0x00AC
    	http2cipher_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384      uint16 = 0x00AD
    	http2cipher_TLS_PSK_WITH_AES_128_CBC_SHA256          uint16 = 0x00AE
    	http2cipher_TLS_PSK_WITH_AES_256_CBC_SHA384          uint16 = 0x00AF
    	http2cipher_TLS_PSK_WITH_NULL_SHA256                 uint16 = 0x00B0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top