Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for podSandboxByCreated (0.23 sec)

  1. pkg/kubelet/kuberuntime/helpers.go

    func (b containersByID) Less(i, j int) bool { return b[i].ID.ID < b[j].ID.ID }
    
    // Newest first.
    type podSandboxByCreated []*runtimeapi.PodSandbox
    
    func (p podSandboxByCreated) Len() int           { return len(p) }
    func (p podSandboxByCreated) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
    func (p podSandboxByCreated) Less(i, j int) bool { return p[i].CreatedAt > p[j].CreatedAt }
    
    type containerStatusByCreated []*kubecontainer.Status
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		return nil, err
    	}
    
    	if len(sandboxes) == 0 {
    		return nil, nil
    	}
    
    	// Sort with newest first.
    	sandboxIDs := make([]string, len(sandboxes))
    	sort.Sort(podSandboxByCreated(sandboxes))
    	for i, s := range sandboxes {
    		sandboxIDs[i] = s.Id
    	}
    
    	return sandboxIDs, nil
    }
    
    // GetPortForward gets the endpoint the runtime will serve the port-forward request from.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top