Re: [go-nuts] Re: Query regarding net/http/cookiejar: Cookies() method and Expiry/MaxAge

2022-07-01 Thread Amit Saha
On Fri, Jul 1, 2022 at 7:08 PM Amit Saha wrote: > > On Thu, Jun 30, 2022 at 4:16 PM Volker Dobler > wrote: > >> On Thursday, 30 June 2022 at 00:31:29 UTC+2 amits wrote: >> >>> Currently the Cookies() method as explained at >>> https://pkg.go.dev/net/http/cookiejar#Jar.Cookies only adds the Name

Re: [go-nuts] Re: Query regarding net/http/cookiejar: Cookies() method and Expiry/MaxAge

2022-07-01 Thread Amit Saha
On Thu, Jun 30, 2022 at 4:16 PM Volker Dobler wrote: > On Thursday, 30 June 2022 at 00:31:29 UTC+2 amits wrote: > >> Currently the Cookies() method as explained at >> https://pkg.go.dev/net/http/cookiejar#Jar.Cookies only adds the Name and >> Value of the cookies and strips out the MaxAge and Exp

Re: [go-nuts] Query regarding net/http/cookiejar: Cookies() method and Expiry/MaxAge

2022-07-01 Thread Amit Saha
On Thu, Jun 30, 2022 at 8:45 AM 'Sean Liao' via golang-nuts < golang-nuts@googlegroups.com> wrote: > Implement your own cookie jar, > > See also: > https://github.com/golang/go/issues/19291#issuecomment-282576908 > Thank you. From the issue comment, I don't quite understand this: > If the other

Re: [go-nuts] Shell tab-completion

2022-07-01 Thread 'Valentin Deleplace' via golang-nuts
Thank you Steve On Thursday, June 30, 2022 at 12:23:41 PM UTC+2 steve@gmail.com wrote: > On Thu, 30 Jun 2022 at 11:07, 'Valentin Deleplace' via golang-nuts < > golan...@googlegroups.com> wrote: > >> Hello, is there a recommended way to achieve command line completion of >> the go command wit