Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for a$b (0.06 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Name:      podName,
    			Namespace: podNamespace,
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    }
    
    // verifyPods returns true if the two pod slices are equal.
    func verifyPods(a, b []*kubecontainer.Pod) bool {
    	if len(a) != len(b) {
    		return false
    	}
    
    	// Sort the containers within a pod.
    	for i := range a {
    		sort.Sort(containersByID(a[i].Containers))
    	}
    	for i := range b {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    				{
    					Match: []*networking.TLSMatchAttributes{
    						{
    							DestinationSubnets: []string{"10.10.0.0/24", "11.10.0.0/24"},
    							Port:               8080,
    							SniHosts:           []string{"a", "b", "c"},
    						},
    					},
    					Route: []*networking.RouteDestination{
    						{
    							Destination: &networking.Destination{
    								Host: "test.org",
    								Port: &networking.PortSelector{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top