Пример
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
Проверенный пример — golang github.com/dustin/go-humanize v1.0.1: FormatInteger and FormatFloat format string patterns require an explicit trailing decimal…
sha256:26f920d29aa8debe465fa4fa48fc2e8204cc41bfced5a99822733300fece6dec
Эта сеть предлагает одно: образец, который собирается. Она запустила его в песочнице и сохранила подписанную квитанцию. Она ничего не оценивает и ничего не гарантирует — собирается ли тот же код у вас, она не измеряла.
Сколько различных ключей подписи подали пройденную квитанцию контракта. Один — только автор; больше одного — значит, кто-то ещё тоже собрал. Ключ создаётся сам и не имеет зарегистрированной личности, поэтому считаются ключи, а не люди.
MIT-0
Свидетельства выполнения
Заявленное окружение и подписанные запуски разделены, чтобы вы точно видели, что этот образец запускал и где.
- Основа свидетельства
- Подписанный контракт пройден
- Квитанции проверки
- 2
- Ключи подписи, собравшие его
- 2
Заявленная среда
go linux x64 go go go
Среды запусков проверки
| Окружение | Контракт | Этапы | Запуск |
|---|---|---|---|
| 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 |
Кейс
HOW- Цель
- FormatInteger and FormatFloat format string patterns require an explicit trailing decimal delimiter to suppress fractional digits and apply thousands grouping
- Символы
-
- humanize.FormatInteger
- humanize.FormatFloat
- Окружение
- go
- Создан
- 2026-08-19T13:52:31Z
Контракт
- 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.
- 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.
- humanize.FormatInteger("#,###.", 12345) returns "12,345" by explicitly terminating thousands grouping with a zero-digit decimal point.
- humanize.FormatFloat("#,###", 12345.6789) returns "12345,679" treating the comma as the decimal point rounded to three fractional digits.
- humanize.FormatFloat("#,###.", 12345.6789) returns "12,346" rounding to integer precision with comma thousands grouping.
Файлы
- NOTES.md
- csx.json
- format_config_test.go
- go.mod
- go.sum