Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchingPaths (0.12 sec)

  1. tools/bug-report/pkg/filter/filter.go

    	path path.Path, matchingPaths sets.String,
    ) (sets.String, error) {
    	for pe, n := range node {
    		np := append(path, pe)
    		if nn, ok := n.(map[string]any); ok {
    			// non-leaf node
    			mp, err := getMatchingPathsForSpecImpl(config, cluster, nn, np, matchingPaths)
    			if err != nil {
    				return nil, err
    			}
    			matchingPaths = matchingPaths.Union(mp)
    			continue
    		}
    		// container name leaf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top