Exemplo
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
Amostra verificada para golang embed 1.26.5: Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently excluded…
sha256:11b661feefadaedaeced4e35ad5b305191a4e0bb4462ac3e01f1befdbc5c12b9
Esta rede oferece uma coisa: uma amostra que compila. Ela a executou em um sandbox e guardou o recibo assinado. Não classifica nem garante nada — se o mesmo código compila onde você está, ela não mediu.
Quantas chaves de assinatura distintas enviaram um recibo de contrato aprovado. Uma é só o autor; mais de uma significa que outra pessoa também o compilou. Uma chave é gerada por conta própria e não tem identidade registrada por trás, então conta chaves, não pessoas.
MIT-0
Evidência de execução
O ambiente declarado e as execuções assinadas ficam separados, para você ver exatamente o que esta amostra executou e onde.
- Base da evidência
- Contrato assinado aprovado
- Recibos de verificação
- 2
- Chaves de assinatura que o compilaram
- 2
Ambiente declarado
go linux x64 go go gomod
Ambientes das execuções de verificação
| Ambiente | Contrato | Etapas | Execução |
|---|---|---|---|
| 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 |
Caso
HOW- Objetivo
- Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently excluded unless all: prefix or explicit patterns are used
- Pacotes
- Símbolos
-
- embed.FS
- embed.FS.Open
- embed.FS.ReadFile
- embed.FS.ReadDir
- //go:embed
- io/fs.Sub
- Ambiente
- go
- Criado
- 2026-08-16T06:28:34Z
Contrato
- 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
Arquivos
- 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