/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/opencontainers/cgroups/fs/error.go
15 строк
389 B
Fabio Bertinatto
bump(k8s): update k8s.io/* dependencies to v1.33.2
17 июл 2025, 12:12
17 июл 2025, 12:12
fc21ea0
Код
Авторство
О чём код?
package fs import ( "fmt" "github.com/opencontainers/cgroups/fscommon" ) type parseError = fscommon.ParseError // malformedLine is used by all cgroupfs file parsers that expect a line // in a particular format but get some garbage instead. func malformedLine(path, file, line string) error { return &parseError{Path: path, File: file, Err: fmt.Errorf("malformed line: %s", line)} }