Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for 2345678 (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. test/codegen/arithmetic.go

    	out[1] = a + 0xFFFFFFFE00000000
    	// ppc64x/power10:"ADD\t[$]1234567,"
    	// ppc64x/power9:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	// ppc64x/power8:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	out[2] = a + 1234567
    	// ppc64x/power10:"ADD\t[$]-1234567,"
    	// ppc64x/power9:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	// ppc64x/power8:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	out[3] = a - 1234567
    	// ppc64x/power10:"ADD\t[$]2147450879,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/kubelet/status/status_manager_test.go

    func getTestPod() *v1.Pod {
    	return &v1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Pod",
    			APIVersion: "v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    	}
    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_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"},
    		{"UpperCaseAreOK123": "bar"},
    		{"goodvalue": "123_-.BaR"},
    	}
    	for i := range successCases {
    		errs := ValidateLabels(successCases[i], field.NewPath("field"))
    		if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. pkg/kubelet/runonce_test.go

    	if err := kb.setupDataDirs(); err != nil {
    		t.Errorf("Failed to init data dirs: %v", err)
    	}
    
    	pods := []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "foo",
    				Namespace: "new",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "bar"},
    				},
    			},
    		},
    	}
    	podManager.SetPods(pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/encoding/binary/binary_test.go

    	42, 41, 40, 39, 38, 37, 36, 35,
    	46, 45, 44, 43, 50, 49, 48, 47,
    	58, 57, 56, 55, 54, 53, 52, 51, 66, 65, 64, 63, 62, 61, 60, 59,
    
    	67, 68, 69, 70,
    
    	1,
    	1, 0, 1, 0,
    }
    
    var src = []byte{1, 2, 3, 4, 5, 6, 7, 8}
    var res = []int32{0x01020304, 0x05060708}
    var putbuf = []byte{0, 0, 0, 0, 0, 0, 0, 0}
    
    func checkResult(t *testing.T, dir string, order ByteOrder, err error, have, want any) {
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top