go/src/encoding
Damien Neil 68bc0d84e9 encoding/json: avoid supurious synctest deadlock detection
Use a sync.OnceValue rather than a sync.WaitGroup to
coordinate access to encoderCache entries.

The OnceValue better expresses the intent of the code
(we want to initialize the cache entry only once).

However, the motivation for this change is to avoid
testing/synctest incorrectly reporting a deadlock
when multiple bubbles call Marshal at the same time.
Goroutines blocked on WaitGroup.Wait are "durably blocked",
causing confusion when a goroutine in one bubble Waits
for a goroutine in a different bubble. Goroutines blocked
on OnceValue are not durably blocked, avoiding the problem.

Fixes #73733
For #67434

Change-Id: I81cddda80af67cf5c280fd4327620bc37e7a6fe6
Reviewed-on: https://go-review.googlesource.com/c/go/+/673335
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
2025-05-20 15:46:07 -07:00
..
ascii85
asn1 encoding/asn1: make sure implicit fields roundtrip 2025-03-14 11:40:43 -07:00
base32 encoding/base64, encoding/base32: add doc details to DecodeString and AppendDecode 2024-12-06 20:49:45 +00:00
base64 encoding/base64: use internal/byteorder 2025-02-06 16:40:55 -08:00
binary encoding/binary: add documentation for endian methods 2024-12-30 12:32:26 -08:00
csv
gob all: replace reflect.Value.Type.Kind with reflect.Value.Kind 2025-02-03 10:30:40 -08:00
hex
json encoding/json: avoid supurious synctest deadlock detection 2025-05-20 15:46:07 -07:00
pem encoding/pem: clarify Decode only works on lines 2025-03-05 07:57:03 -08:00
xml all: replace reflect.Value.Type.Kind with reflect.Value.Kind 2025-02-03 10:30:40 -08:00
encoding.go encoding: add TextAppender and BinaryAppender 2024-07-30 14:22:50 +00:00