github.com/toplink-cn/moby@v0.0.0-20240305205811-460b4aebdf81/testutil/request/npipe.go (about) 1 //go:build !windows 2 3 package request 4 5 import ( 6 "net" 7 "time" 8 ) 9 10 func npipeDial(path string, timeout time.Duration) (net.Conn, error) { 11 panic("npipe protocol only supported on Windows") 12 }