Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
k3d/vendor/go4.org/unsafe/assume-no-moving-gc
iwilltry42 5aa1edfb73
update to go1.17 and update direct dependencies
3 years ago
..
LICENSE [FEATURE] IPAM via subnet flag (#560) 3 years ago
README.md [FEATURE] IPAM via subnet flag (#560) 3 years ago
assume-no-moving-gc.go [FEATURE] IPAM via subnet flag (#560) 3 years ago
untested.go [FEATURE] IPAM via subnet flag (#560) 3 years ago

README.md

go4.org/unsafe/assume-no-moving-gc

If your Go package wants to declare that it plays unsafe games that only work if the Go runtime's garbage collector is not a moving collector, then add:

import _ "go4.org/unsafe/assume-no-moving-gc"

Then your program will explode if that's no longer the case. (Users can override the explosion with a scary sounding environment variable.)

This also gives us a way to find all the really gross unsafe packages.