Source File
compilationworkers.go
Belonging Package
github.com/tetratelabs/wazero/experimental
package experimentalimport ()// WithCompilationWorkers sets the desired number of compilation workers.func ( context.Context, int) context.Context {return context.WithValue(, expctxkeys.CompilationWorkers{}, )}// GetCompilationWorkers returns the desired number of compilation workers.// The minimum value returned is 1.func ( context.Context) int {, := .Value(expctxkeys.CompilationWorkers{}).(int)return max(, 1)}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |