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