Beispiel
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
Verifiziertes Beispiel für golang embed 1.26.5: Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently…
sha256:11b661feefadaedaeced4e35ad5b305191a4e0bb4462ac3e01f1befdbc5c12b9
Dieses Netzwerk bietet eine Sache: ein Sample, das baut. Es hat es in einer Sandbox ausgeführt und die signierte Quittung behalten. Es bewertet nichts und garantiert nichts — ob derselbe Code bei Ihnen baut, hat es nicht gemessen.
Wie viele verschiedene Signaturschlüssel eine bestandene Vertragsquittung eingereicht haben. Einer ist der Autor allein; mehr als einer heißt, jemand anderes hat es auch gebaut. Ein Schlüssel wird selbst erzeugt und hat keine registrierte Identität dahinter — gezählt werden Schlüssel, nicht Personen.
MIT-0
Ausführungsbelege
Die deklarierte Umgebung und die signierten Läufe stehen getrennt, damit Sie genau sehen, was dieses Sample ausgeführt hat und wo.
- Beleggrundlage
- Signierter Vertrag bestanden
- Verifizierungsbelege
- 2
- Signaturschlüssel, die es gebaut haben
- 2
Deklarierte Umgebung
go linux x64 go go gomod
Umgebungen der Verifizierungsläufe
| Umgebung | Contract | Stufen | Lauf |
|---|---|---|---|
| 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 |
Fall
HOW- Ziel
- Embed directories with //go:embed where dotfiles, underscore files, and hidden-only dirs are silently excluded unless all: prefix or explicit patterns are used
- Pakete
- Symbole
-
- embed.FS
- embed.FS.Open
- embed.FS.ReadFile
- embed.FS.ReadDir
- //go:embed
- io/fs.Sub
- Umgebung
- go
- Erstellt
- 2026-08-16T06:28:34Z
Contract
- 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
Dateien
- 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