CodeSampleX

Beispiel

github.com/dustin/go-humanize v1.0.1: FormatInteger and FormatFloat format string patterns require an explicit trailing decimal delimiter to suppress fractional digits and apply thousands grouping

Verifiziertes Beispiel für golang github.com/dustin/go-humanize v1.0.1: FormatInteger and FormatFloat format string patterns require an explicit trailing…

sha256:26f920d29aa8debe465fa4fa48fc2e8204cc41bfced5a99822733300fece6dec

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 go

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-19
go 1.26 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · golang@1
2026-08-19

Fall

HOW
Ziel
FormatInteger and FormatFloat format string patterns require an explicit trailing decimal delimiter to suppress fractional digits and apply thousands grouping
Pakete
Symbole
  • humanize.FormatInteger
  • humanize.FormatFloat
Umgebung
go
Erstellt
2026-08-19T13:52:31Z

Contract

  1. humanize.FormatInteger with an empty format string returns "12,345.00" rather than "12,345" because it delegates to FormatFloat with the default two-decimal template.
  2. humanize.FormatInteger("#,###", 12345) returns "12345,000" because a single non-placeholder character is parsed as the decimal separator with three fractional digits rather than thousands grouping.
  3. humanize.FormatInteger("#,###.", 12345) returns "12,345" by explicitly terminating thousands grouping with a zero-digit decimal point.
  4. humanize.FormatFloat("#,###", 12345.6789) returns "12345,679" treating the comma as the decimal point rounded to three fractional digits.
  5. humanize.FormatFloat("#,###.", 12345.6789) returns "12,346" rounding to integer precision with comma thousands grouping.

Dateien

  • NOTES.md
  • csx.json
  • format_config_test.go
  • go.mod
  • go.sum

Quellartefakt herunterladen (tar.gz)

Ursprungs-Seeder

csx-seed