Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for u32test (0.35 sec)

  1. test/ken/divconst.go

    		b = a / 6
    		u32test(a, b, 6)
    		b = a / 7
    		u32test(a, b, 7)
    		b = a / 8
    		u32test(a, b, 8)
    		b = a / 10
    		u32test(a, b, 10)
    		b = a / 16
    		u32test(a, b, 16)
    		b = a / 20
    		u32test(a, b, 20)
    		b = a / 32
    		u32test(a, b, 32)
    		b = a / 60
    		u32test(a, b, 60)
    		b = a / 64
    		u32test(a, b, 64)
    		b = a / 128
    		u32test(a, b, 128)
    		b = a / 256
    		u32test(a, b, 256)
    		b = a / 16384
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 9.2K bytes
    - Viewed (0)
  2. test/ken/modconst.go

    		b = a % 6
    		u32test(a, b, 6)
    		b = a % 7
    		u32test(a, b, 7)
    		b = a % 8
    		u32test(a, b, 8)
    		b = a % 10
    		u32test(a, b, 10)
    		b = a % 16
    		u32test(a, b, 16)
    		b = a % 20
    		u32test(a, b, 20)
    		b = a % 32
    		u32test(a, b, 32)
    		b = a % 60
    		u32test(a, b, 60)
    		b = a % 64
    		u32test(a, b, 64)
    		b = a % 128
    		u32test(a, b, 128)
    		b = a % 256
    		u32test(a, b, 256)
    		b = a % 16384
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  3. internal/bucket/replication/replication_test.go

    		{ObjectOpts{Name: "c2test", VersionID: "vid", OpType: DeleteReplicationType}, cfgs[1], false},                                 // 12. permanent delete of version, disallowed by DeleteReplication status
    		{ObjectOpts{Name: "c2test", VersionID: "vid", DeleteMarker: true, OpType: DeleteReplicationType}, cfgs[1], false},             // 13. permanent delete of DeleteMarker version, disallowed by DeleteReplication status
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5957.dir/c.go

    package p
    
    import (
    	"./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used"
    	"./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used"
    	b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 762 bytes
    - Viewed (0)
  5. internal/bucket/replication/rule_test.go

    			opts:           ObjectOpts{Name: "c2test", DeleteMarker: false, OpType: ObjectReplicationType, Replica: true}, // 1. Replica mod sync enabled; a replica
    			expectedResult: false,
    		},
    		// case 3 - rule with replica modification disabled; not a replica
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/divconst_test.go

    	for i := 0; i < b.N; i++ {
    		i32res = int32(i) / 7
    		boolres = int32(i)%7 == 0
    	}
    }
    
    var u32res uint32
    
    func BenchmarkDivconstU32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		u32res = uint32(i) / 7
    	}
    }
    
    func BenchmarkModconstU32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		u32res = uint32(i) % 7
    	}
    }
    
    func BenchmarkDivisibleconstU32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server_bootstrap_test.go

    		}
    		s.csr = csr
    
    	case req.Method == "GET" && req.URL.Path == "/apis/certificates.k8s.io/v1/certificatesigningrequests" && (req.URL.RawQuery == "fieldSelector=metadata.name%3Dtest-csr&limit=500&resourceVersion=0" || req.URL.RawQuery == "fieldSelector=metadata.name%3Dtest-csr"):
    		if s.csr == nil {
    			t.Fatalf("no csr")
    		}
    		csr := s.csr.DeepCopy()
    
    		data := mustMarshal(&certapi.CertificateSigningRequestList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	}
    
    	// t3 imports p1, and changing X changes t3's test binary.
    	tg.grepStderr(`([\\/]compile|gccgo).*t3_test.go`, "did not recompile t3")
    	tg.grepStderr(`([\\/]link|gccgo).*t3\.test`, "did not relink t3_test")
    	tg.grepStderr(`t3\.test.*-test.short`, "did not rerun t3_test")
    	tg.grepStdoutNot(`ok  \tt/t3\t\(cached\)`, "reported cached t3_test result")
    
    	// t4 imports p2, but p2 did not change, so t4 should be relinked, not recompiled,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			maxSeats:             10,
    			initialSeatsExpected: 10,
    		},
    		{
    			name:       "request verb is list, metadata.name specified",
    			requestURI: "http://server/apis/foo.bar/v1/events?fieldSelector=metadata.name%3Dtest",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "list",
    				Name:     "test",
    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    			counts: map[string]int64{
    				"events.foo.bar": 799,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. docs/pl/docs/index.md

    </p>
    <p align="center">
        FastAPI to szybki, prosty w nauce i gotowy do użycia w produkcji framework
    </p>
    <p align="center">
    <a href="https://github.com/tiangolo/fastapi/actions?query=workflow%3ATest" target="_blank">
        <img src="https://github.com/tiangolo/fastapi/workflows/Test/badge.svg" alt="Test">
    </a>
    <a href="https://codecov.io/gh/tiangolo/fastapi" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top