Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for remainingResources (0.26 sec)

  1. pkg/controller/namespace/deletion/status_condition_utils.go

    	if len(contentTotals.gvrToNumRemaining) != 0 {
    		remainingResources := []string{}
    		for gvr, numRemaining := range contentTotals.gvrToNumRemaining {
    			if numRemaining == 0 {
    				continue
    			}
    			remainingResources = append(remainingResources, fmt.Sprintf("%s.%s has %d resource instances", gvr.Resource, gvr.Group, numRemaining))
    		}
    		// sort for stable updates
    		sort.Strings(remainingResources)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 06 13:58:41 UTC 2019
    - 8.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisions/uninstall_test.go

    	var remainingResources []unstructured.Unstructured
    	var staleList []string
    	if usList != nil && len(usList.Items) != 0 {
    		for _, item := range usList.Items {
    			// ignore IstioOperator CRD because the operator CR is not in the pruning list
    			if item.GetName() == "istiooperators.install.istio.io" {
    				continue
    			}
    			remainingResources = append(remainingResources, item)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top