Пример
embed 1.26.5: Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently excluded unless all: prefix or explicit patterns are used
Проверенный пример — golang embed 1.26.5: Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently excluded…
sha256:11b661feefadaedaeced4e35ad5b305191a4e0bb4462ac3e01f1befdbc5c12b9
Эта сеть предлагает одно: образец, который собирается. Она запустила его в песочнице и сохранила подписанную квитанцию. Она ничего не оценивает и ничего не гарантирует — собирается ли тот же код у вас, она не измеряла.
Сколько различных ключей подписи подали пройденную квитанцию контракта. Один — только автор; больше одного — значит, кто-то ещё тоже собрал. Ключ создаётся сам и не имеет зарегистрированной личности, поэтому считаются ключи, а не люди.
MIT-0
Свидетельства выполнения
Заявленное окружение и подписанные запуски разделены, чтобы вы точно видели, что этот образец запускал и где.
- Основа свидетельства
- Подписанный контракт пройден
- Квитанции проверки
- 2
- Ключи подписи, собравшие его
- 2
Заявленная среда
go linux x64 go go gomod
Среды запусков проверки
| Окружение | Контракт | Этапы | Запуск |
|---|---|---|---|
| go 1.26 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1 |
2026-08-15 |
| go 1.26 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1 |
2026-08-18 |
Кейс
HOW- Цель
- Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently excluded unless all: prefix or explicit patterns are used
- Пакеты
- Символы
-
- embed.FS
- embed.FS.Open
- embed.FS.ReadFile
- embed.FS.ReadDir
- //go:embed
- io/fs.Sub
- Окружение
- go
- Создан
- 2026-08-16T06:28:34Z
Контракт
- assert //go:embed dir silently excludes dotfiles, underscore files, and subdirectories containing only excluded files
- assert fs.ReadDir on embedded directory lists only non-hidden entries and omits dotfiles, underscore files, and hidden-only subdirectories
- assert all: prefix opts in to embedding dotfiles and underscore files recursively
- assert explicitly naming a dotfile in //go:embed embeds it without all: while omitting sibling files
- assert wildcard on directory matches direct files including dot and underscore files
- assert embed.FS preserves directive path prefix and fs.Sub roots the sub-filesystem
- assert scalar string and byte slice types embed single file contents directly
- assert embed.FS files implement io.Reader, io.Seeker, and io.ReaderAt, but not io.Writer
Файлы
- NOTES.md
- csx.json
- embed_test.go
- fixtures/.dotfile
- fixtures/_underscore.txt
- fixtures/hidden_only/.secret
- fixtures/hidden_only/_secret
- fixtures/public.txt
- fixtures/sub/.nested_dot
- fixtures/sub/_nested_under
- fixtures/sub/nested_public.txt
- go.mod