Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 142 for 123456700 (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    		{
    			name:  "arrays of big float aliases",
    			error: "excessive aliasing",
    			data: []byte(`
    apiVersion: v1
    data:
    a: &a [1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678,1234567890.12345678]
    b: &b [*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a,*a]
    c: &c [*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b,*b]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    	{"0x0.8000000p-125", "1.1754944e-38", nil}, // 0x00800000
    	{"0x0.1234560p-125", "1.671814e-39", nil},  // 0x00123456
    	{"0x0.1234567p-125", "1.671814e-39", nil},  // rounded down
    	{"0x0.1234568p-125", "1.671814e-39", nil},  // rounded down
    	{"0x0.1234569p-125", "1.671815e-39", nil},  // rounded up
    	{"0x0.1234570p-125", "1.671815e-39", nil},  // 0x00123457
    	{"0x0.0000010p-125", "1e-45", nil},         // 0x00000001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pod/pod_manager_test.go

    				kubetypes.ConfigSourceAnnotationKey: "api",
    				kubetypes.ConfigMirrorAnnotationKey: "mirror",
    			},
    		},
    	}
    	staticPod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:         "123456789",
    			Name:        "bar",
    			Namespace:   "default",
    			Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "file"},
    		},
    	}
    
    	expectedPods := []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		},
    		{
    			Name:            "foo2",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    
    	// Set fake sandbox and faked containers to fakeRuntime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

        assertThat(keySet).containsExactly(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
    
        // 0 expires
        ticker.advance(1, MILLISECONDS);
        assertThat(keySet).containsExactly(1, 2, 3, 4, 5, 6, 7, 8, 9);
    
        // reorder
        getAll(cache, asList(0, 1, 2));
        CacheTesting.drainRecencyQueues(cache);
        ticker.advance(2, MILLISECONDS);
        assertThat(keySet).containsExactly(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc_test.go

    // floating-point imprecision
    const fpSlack = 1e-10
    
    // TestConcAlloc tests computeConcurrencyAllocation with a bunch of randomly generated cases.
    func TestConcAlloc(t *testing.T) {
    	rands := rand.New(rand.NewSource(1234567890))
    	for i := 0; i < 10000; i++ {
    		test1ConcAlloc(t, rands)
    	}
    }
    
    func test1ConcAlloc(t *testing.T, rands *rand.Rand) {
    	probLen := ([]int{0, 1, 2, 3, 4, 6, 9})[rands.Intn(7)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 18:17:27 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta_test.go

    		{"now-with-dashes/simple": "bar"},
    		{"now-with-dashes/now-with-dashes": "bar"},
    		{"now.with.dots/simple": "bar"},
    		{"now-with.dashes-and.dots/simple": "bar"},
    		{"1-num.2-num/3-num": "bar"},
    		{"1234/5678": "bar"},
    		{"1.2.3.4/5678": "bar"},
    		{"UpperCase123": "bar"},
    		{"a": strings.Repeat("b", TotalAnnotationSizeLimitB-1)},
    		{
    			"a": strings.Repeat("b", TotalAnnotationSizeLimitB/2-1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-utils_test.go

    		Parts:            nil,
    		Erasure: ErasureInfo{
    			Algorithm:    ReedSolomon.String(),
    			DataBlocks:   4,
    			ParityBlocks: 2,
    			BlockSize:    10000,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8},
    			Checksums: []ChecksumInfo{{
    				PartNumber: 1,
    				Algorithm:  HighwayHash256S,
    				Hash:       nil,
    			}},
    		},
    		MarkDeleted:      false,
    		NumVersions:      1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top