Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 873 for 34$ (0.02 sec)

  1. src/cmd/asm/internal/asm/expr_test.go

    	{"3/0", "division by zero"},
    	{"(1<<63)/0", "divide of value with high bit set"},
    	{"3%0", "modulo by zero"},
    	{"(1<<63)%0", "modulo of value with high bit set"},
    	{"3<<-4", "negative left shift count"},
    	{"3<<(1<<63)", "negative left shift count"},
    	{"3>>-4", "negative right shift count"},
    	{"3>>(1<<63)", "negative right shift count"},
    	{"(1<<63)>>2", "right shift of value with high bit set"},
    	{"(1<<62)>>2", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. test/fixedbugs/issue4964.dir/b.go

    package main
    
    import "./a"
    
    func F() {
    	// store 1 in a.global
    	x, y := 1, 2
    	t := a.T{Pointer: &x}
    	a.Store(&t)
    	_ = y
    }
    
    func G() {
    	// store 4 in a.global2
    	x, y := 3, 4
    	t := a.T{Pointer: &y}
    	a.Store2(&t)
    	_ = x
    }
    
    func main() {
    	F()
    	G()
    	p := a.Get()
    	n := *p
    	if n != 1 {
    		println(n, "!= 1")
    		panic("n != 1")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 08:03:45 UTC 2013
    - 484 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    				NonPointerTime: sinceTime,
    			},
    			expected: url.Values{"container": {"mycontainer"}, "follow": {"true"}, "previous": {"true"}, "sinceSeconds": {"123"}, "sinceTime": {"2000-01-01T12:34:56Z"}, "emptyTime": {""}, "nonPointerTime": {"2000-01-01T12:34:56Z"}},
    		},
    		{
    			input: &childStructs{
    				Container:      "mycontainer",
    				Follow:         true,
    				Previous:       true,
    				SinceSeconds:   &sinceSeconds,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue15252.go

    // index, even on 32 bit machines.  It also tests that nacl
    // can compile 64 bit indexes loaded from ODOTPTR properly.
    
    package main
    
    type T struct {
    	i int64
    }
    
    func f(t *T) byte {
    	b := [2]byte{3, 4}
    	return b[t.i]
    }
    
    func main() {
    	t := &T{0x100000001}
    	defer func() {
    		r := recover()
    		if r == nil {
    			panic("panic wasn't recoverable")
    		}
    	}()
    	f(t)
    	panic("index didn't panic")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 14 21:19:12 UTC 2016
    - 612 bytes
    - Viewed (0)
  5. test/fixedbugs/bug409.go

    // redundant address loads.
    
    package main
    
    func F(v [2]float64) [2]float64 {
    	return [2]float64{v[0], v[1]}
    }
    
    func main() {
    	a := F([2]float64{1, 2})
    	b := F([2]float64{3, 4})
    	println(a[0], a[1], b[0], b[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 432 bytes
    - Viewed (0)
  6. src/syscall/zsysnum_plan9.go

    	SYS_BRK_        = 24
    	SYS_REMOVE      = 25
    	SYS_NOTIFY      = 28
    	SYS_NOTED       = 29
    	SYS_SEGATTACH   = 30
    	SYS_SEGDETACH   = 31
    	SYS_SEGFREE     = 32
    	SYS_SEGFLUSH    = 33
    	SYS_RENDEZVOUS  = 34
    	SYS_UNMOUNT     = 35
    	SYS_SEMACQUIRE  = 37
    	SYS_SEMRELEASE  = 38
    	SYS_SEEK        = 39
    	SYS_FVERSION    = 40
    	SYS_ERRSTR      = 41
    	SYS_STAT        = 42
    	SYS_FSTAT       = 43
    	SYS_WSTAT       = 44
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_extra_models/test_tutorial005_py39.py

    
    @needs_py39
    def test_get_items(client: TestClient):
        response = client.get("/keyword-weights/")
        assert response.status_code == 200, response.text
        assert response.json() == {"foo": 2.3, "bar": 3.4}
    
    
    @needs_py39
    def test_openapi_schema(client: TestClient):
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-AES256-SHA384

    00000280  e0 b9 5b 0b 4c ee a5 3c  5b c0 52 bd 60 7a b1 88  |..[.L..<[.R.`z..|
    00000290  67 e3 c9 60 b9 04 a8 31  3e 34 d7 33 49 38 d9 a7  |g..`...1>4.3I8..|
    000002a0  d1 04 b4 13 a8 5f 0b f2  41 77 d4 c8 b2 d3 0e d6  |....._..Aw......|
    000002b0  8c dc 34 ad 2a d9 4b 5f  4a e2 17 0a be 2a 55 4a  |..4.*.K_J....*UJ|
    000002c0  44 a7 b0 0f d1 39 b0 e5  9d 77 6b d7 44 15 99 bf  |D....9...wk.D...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_extra_models/test_tutorial005.py

    client = TestClient(app)
    
    
    def test_get_items():
        response = client.get("/keyword-weights/")
        assert response.status_code == 200, response.text
        assert response.json() == {"foo": 2.3, "bar": 3.4}
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == {
            "openapi": "3.1.0",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000150  88 7a 36 47 a5 08 0d 92  42 5b c2 81 c0 be 97 79  |.z6G....B[.....y|
    00000160  98 40 fb 4f 6d 14 fd 2b  13 8b c2 a5 2e 67 d8 d4  |.@.Om..+.....g..|
    00000170  09 9e d6 22 38 b7 4a 0b  74 73 2b c2 34 f1 d1 93  |..."8.J.ts+.4...|
    00000180  e5 96 d9 74 7b f3 58 9f  6c 61 3c c0 b0 41 d4 d9  |...t{.X.la<..A..|
    00000190  2b 2b 24 23 77 5b 1c 3b  bd 75 5d ce 20 54 cf a1  |++$#w[.;.u]. T..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top