Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 012345678 (0.12 sec)

  1. src/hash/maphash/smhasher_test.go

    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/time/format_test.go

    	{"2021-09-29T16:04:33.012345678Z", 12_345_678},
    	// 10 digits, truncates
    	{"2021-09-29T16:04:33.0000000000Z", 0},
    	{"2021-09-29T16:04:33.0000000001Z", 0},
    	{"2021-09-29T16:04:33.1000000000Z", 100_000_000},
    	{"2021-09-29T16:04:33.1000000009Z", 100_000_000},
    	{"2021-09-29T16:04:33.9999999999Z", 999_999_999},
    	{"2021-09-29T16:04:33.0123456789Z", 12_345_678},
    	// 11 digits, truncates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    	_, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    	pod := newTestPod()
    
    	expectedLogDirectory := filepath.Join(testPodLogsDirectory, pod.Namespace+"_"+pod.Name+"_12345678")
    	expectedLabels := map[string]string{
    		"io.kubernetes.pod.name":      pod.Name,
    		"io.kubernetes.pod.namespace": pod.Namespace,
    		"io.kubernetes.pod.uid":       string(pod.UID),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/encoding/binary/binary_test.go

    		b.Run(fmt.Sprintf("%T", data), func(b *testing.B) {
    			for range b.N {
    				_ = Size(data)
    			}
    		})
    	}
    }
    
    func TestNativeEndian(t *testing.T) {
    	const val = 0x12345678
    	i := uint32(val)
    	s := unsafe.Slice((*byte)(unsafe.Pointer(&i)), unsafe.Sizeof(i))
    	if v := NativeEndian.Uint32(s); v != val {
    		t.Errorf("NativeEndian.Uint32 returned %#x, expected %#x", v, val)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertEquals("1.2.3.4", InetAddresses.toAddrString(InetAddresses.forString("1.2.3.4")));
      }
    
      public void testToAddrStringIPv6() {
        assertEquals(
            "1:2:3:4:5:6:7:8", InetAddresses.toAddrString(InetAddresses.forString("1:2:3:4:5:6:7:8")));
        assertEquals(
            "2001:0:0:4::8", InetAddresses.toAddrString(InetAddresses.forString("2001:0:0:4:0:0:0:8")));
        assertEquals(
            "2001::4:5:6:7:8",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	_, imageService, m, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    	runAsUser := int64(1000)
    	runAsGroup := int64(2000)
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  8. pkg/kubelet/container/helpers_test.go

    					// No address family specified
    					port("", v1.ProtocolTCP, 1234, 5678, ""),
    				},
    			},
    			[]PortMapping{
    				portMapping(v1.ProtocolTCP, 80, 8080, "127.0.0.1"),
    				portMapping(v1.ProtocolTCP, 443, 4343, "192.168.0.1"),
    				portMapping(v1.ProtocolUDP, 555, 5555, ""),
    				portMapping(v1.ProtocolTCP, 80, 8080, "::"),
    				portMapping(v1.ProtocolTCP, 1234, 5678, ""),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. pkg/kubelet/network/dns/dns_test.go

    		{"nameserver\t1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"nameserver \t 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"nameserver 1.2.3.4\nnameserver 5.6.7.8", []string{"1.2.3.4", "5.6.7.8"}, []string{}, []string{}, false},
    		{"nameserver 1.2.3.4 #comment", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"search ", []string{}, []string{}, []string{}, false},  // search empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		}
    	}
    
    	// extract the numerator
    Num:
    	for i := pos; ; i++ {
    		if i >= end {
    			num = str[pos:end]
    			value = str[0:end]
    			return
    		}
    		switch str[i] {
    		case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		default:
    			num = str[pos:i]
    			pos = i
    			break Num
    		}
    	}
    
    	// if we stripped all numerator positions, always return 0
    	if len(num) == 0 {
    		num = "0"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top