/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/moby/sys/user/idtools_windows.go
13 строк
358 B
Fabio Bertinatto
bump(k8s): update k8s.io/* dependencies to v1.34.1
23 окт 2025, 22:20
23 окт 2025, 22:20
7554945
Код
Авторство
О чём код?
package user import ( "os" ) // This is currently a wrapper around [os.MkdirAll] since currently // permissions aren't set through this path, the identity isn't utilized. // Ownership is handled elsewhere, but in the future could be support here // too. func mkdirAs(path string, _ os.FileMode, _, _ int, _, _ bool) error { return os.MkdirAll(path, 0) }