Next | Query returned 22 messages, browsing 21 to 30 | previous

History of commit frequency

CVS Commit History:


   2022-08-12 22:38:12 by Benny Siegert | Files touched by this commit (114) | Package updated
Log message:
Revbump all Go packages after go118 security update
   2022-07-19 22:37:27 by Benny Siegert | Files touched by this commit (5)
Log message:
New package, go-impl-1.1.0.

Needed by the new gopls.

impl generates method stubs for implementing an interface.

Sample usage:

$ impl 'f *File' io.ReadWriteCloser
func (f *File) Read(p []byte) (n int, err error) {
	panic("not implemented")
}

func (f *File) Write(p []byte) (n int, err error) {
	panic("not implemented")
}

func (f *File) Close() error {
	panic("not implemented")
}

Next | Query returned 22 messages, browsing 21 to 30 | previous