Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 004d2 (0.03 sec)

  1. src/math/big/intconv_test.go

    	{"-1234", "%8.5x", "  -004d2"},
    	{"-1234", "%8.6x", " -0004d2"},
    
    	{"1234", "%+8.3x", "    +4d2"},
    	{"1234", "%+8.4x", "   +04d2"},
    	{"1234", "%+8.5x", "  +004d2"},
    	{"1234", "%+8.6x", " +0004d2"},
    	{"-1234", "%+8.3x", "    -4d2"},
    	{"-1234", "%+8.4x", "   -04d2"},
    	{"-1234", "%+8.5x", "  -004d2"},
    	{"-1234", "%+8.6x", " -0004d2"},
    
    	{"1234", "% 8.3x", "     4d2"},
    	{"1234", "% 8.4x", "    04d2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. src/sync/map_bench_test.go

    	benchMap(b, bench{
    		setup: func(_ *testing.B, m mapInterface) {
    			m.LoadOrStore(0, 0)
    		},
    
    		perG: func(b *testing.B, pb *testing.PB, i int, m mapInterface) {
    			for pb.Next() {
    				if m.CompareAndSwap(0, 0, 42) {
    					m.CompareAndSwap(0, 42, 0)
    				}
    			}
    		},
    	})
    }
    
    func BenchmarkCompareAndSwapNoExistingKey(b *testing.B) {
    	benchMap(b, bench{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top