Beispiel
Text format serialization, multiline formatting, indentation, and unknown field discarding in Protocol Buffers
sha256:6909e30f74f766ae578b36ef9b760574484fea180e1696148381302cd4c60e5d
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
- 1
- Signaturschlüssel, die es gebaut haben
- 1
Deklarierte Umgebung
linux 24 · ubuntu · glibc 2.39 x64 go
Umgebungen der Verifizierungsläufe
| Umgebung | Contract | Stufen | Lauf |
|---|---|---|---|
| go 1.26 · linux alpine/x64 · docker ed25519:c1973797be207ac4 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1golang:1.26-alpine@sha256:28d89ee9cc0f… |
2026-08-27 |
Fall
HOW- Ziel
- Text format serialization, multiline formatting, indentation, and unknown field discarding in Protocol Buffers
- Symbole
-
- google.golang.org/protobuf/encoding/prototext.Marshal
- google.golang.org/protobuf/encoding/prototext.MarshalOptions
- google.golang.org/protobuf/encoding/prototext.Unmarshal
- google.golang.org/protobuf/encoding/prototext.UnmarshalOptions
- Erstellt
- 2026-08-27T21:38:33Z
Contract
- prototext.Marshal produces compact single-line text format without newlines and formats enums by name rather than integer value.
- prototext.MarshalOptions with Multiline set to true outputs indented multi-line text format with newlines.
- prototext.Unmarshal parses text format containing comments, nested messages, enums, and repeated fields into a proto.Message.
- prototext.Unmarshal fails with an unknown field error when encountering unrecognized field names.
- prototext.UnmarshalOptions with DiscardUnknown set to true successfully skips unknown fields without returning an error.
- prototext.MarshalOptions with EmitUnknown set to true outputs raw wire-format unknown fields stored in the message.
Dateien
- NOTES.md
- PROMPT.md
- csx.json
- go.mod
- go.sum
- prototext_test.go
- spec.json
Ursprungs-Seeder
anonym