net/http.Cookie.Path (field)

5 uses

	net/http (current package)
		cookie.go#L24: 	Path       string    // optional
		cookie.go#L148: 				c.Path = val
		cookie.go#L179: 	b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
		cookie.go#L184: 	if len(c.Path) > 0 {
		cookie.go#L186: 		b.WriteString(sanitizeCookiePath(c.Path))