Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ctr2 (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    //(MOVWload  [off] {sym} ptr (MOVWstore  [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) -> (MOVWreg x)
    //(MOVWUload [off] {sym} ptr (MOVWstore  [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) -> (MOVWUreg x)
    //(MOVDload  [off] {sym} ptr (MOVDstore  [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) -> x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"csr2", "0s", "<none>", "CSR Requestor", "<none>", "Approved"}}},
    		},
    		// Basic CSR with Spec and SignerName set
    		{
    			csr: certificates.CertificateSigningRequest{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "csr2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		t.Errorf("s.Slice(3, 5) = %q; expected %q", vs, s[3:5])
    	}
    
    	rv := ValueOf(&xs).Elem()
    	rv = rv.Slice(3, 4)
    	ptr2 := rv.UnsafePointer()
    	rv = rv.Slice(5, 5)
    	ptr3 := rv.UnsafePointer()
    	if ptr3 != ptr2 {
    		t.Errorf("xs.Slice(3,4).Slice3(5,5).UnsafePointer() = %p, want %p", ptr3, ptr2)
    	}
    }
    
    func TestSlice3(t *testing.T) {
    	xs := []int{1, 2, 3, 4, 5, 6, 7, 8}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    	}
    }
    
    func Test_generateAPIPodStatusForInPlaceVPAEnabled(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.InPlacePodVerticalScaling, true)
    	testContainerName := "ctr0"
    	testContainerID := kubecontainer.ContainerID{Type: "test", ID: testContainerName}
    
    	CPU1AndMem1G := v1.ResourceList{v1.ResourceCPU: resource.MustParse("1"), v1.ResourceMemory: resource.MustParse("1Gi")}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    		pod.Namespace = namespace
    		pod.UID = types.UID(uid)
    		pod.Spec = v1.PodSpec{}
    		for i := 0; i < numContainers; i++ {
    			pod.Spec.Containers = append(pod.Spec.Containers, v1.Container{
    				Name: fmt.Sprintf("ctr%v", i),
    			})
    		}
    		return pod
    	}
    	nodeAvailableBytes := uint64(1024 * 1024 * 1024)
    	nodeWorkingSetBytes := uint64(1024 * 1024 * 1024)
    	allocatableMemoryCapacity := uint64(5 * 1024 * 1024 * 1024)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top