Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fakePodUID (0.3 sec)

  1. pkg/kubelet/cm/containermap/container_map_test.go

    package containermap
    
    import (
    	"testing"
    )
    
    func TestContainerMap(t *testing.T) {
    	testCases := []struct {
    		podUID         string
    		containerNames []string
    		containerIDs   []string
    	}{
    		{
    			"fakePodUID",
    			[]string{"fakeContainerName-1", "fakeContainerName-2"},
    			[]string{"fakeContainerID-1", "fakeContainerName-2"},
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 13:40:55 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top