Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CollectPodsFromFiles (0.14 sec)

  1. src/internal/coverage/pods/pods.go

    			dirIndices = append(dirIndices, k)
    		}
    	}
    	return collectPodsImpl(files, dirIndices, warn), nil
    }
    
    // CollectPodsFromFiles functions the same as "CollectPods" but
    // operates on an explicit list of files instead of a directory.
    func CollectPodsFromFiles(files []string, warn bool) []Pod {
    	return collectPodsImpl(files, nil, warn)
    }
    
    type fileWithAnnotations struct {
    	file   string
    	origin int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top