var verboseReader …
var fileCache …
var infoCache …
var fileCacheEnable …
var infoCacheEnable …
var fileCacheMutex …
var infoCacheMutex …
func initializeFileCache() { … }
func initializeInfoCache() { … }
func EnableFileCache() { … }
func EnableInfoCache() { … }
func DisableFileCache() { … }
func DisableInfoCache() { … }
func RemoveFromFileCache(fileurl string) { … }
func RemoveFromInfoCache(filename string) { … }
func GetInfoCache() map[string]*yaml.Node { … }
func ClearFileCache() { … }
func ClearInfoCache() { … }
func ClearCaches() { … }
func FetchFile(fileurl string) ([]byte, error) { … }
func fetchFile(fileurl string) ([]byte, error) { … }
func ReadBytesForFile(filename string) ([]byte, error) { … }
func readBytesForFile(filename string) ([]byte, error) { … }
func ReadInfoFromBytes(filename string, bytes []byte) (*yaml.Node, error) { … }
func readInfoFromBytes(filename string, bytes []byte) (*yaml.Node, error) { … }
func ReadInfoForRef(basefile string, ref string) (*yaml.Node, error) { … }