Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for kindNameMap (0.11 sec)

  1. operator/cmd/mesh/uninstall.go

    		items = append(items, usList.Items...)
    	}
    	kindNameMap := make(map[string][]string)
    	for _, o := range items {
    		nameList := kindNameMap[o.GetKind()]
    		if nameList == nil {
    			kindNameMap[o.GetKind()] = []string{}
    		}
    		kindNameMap[o.GetKind()] = append(kindNameMap[o.GetKind()], o.GetName())
    	}
    	if len(kindNameMap) == 0 {
    		return "", ""
    	}
    	output, gwlist := "", []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top