github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+incompatible/internal/compatcontext/cancel_go121.go (about) 1 //go:build go1.21 2 3 package compatcontext // import "github.com/docker/docker/internal/compatcontext" 4 5 import "context" 6 7 func WithoutCancel(ctx context.Context) context.Context { 8 return context.WithoutCancel(ctx) 9 }