Re: [go-nuts] Is this a possible bug with pipe

2022-09-12 Thread Jan Mercl
On Mon, Sep 12, 2022 at 11:16 PM ramki...@hotmail.com wrote: > > I created a TCP Proxy using io.copy (which creates a splice). Here is the > code. > > Proxy TCP Server - https://pastebin.com/iAcFjmV1 > Regular TCP Server - https://pastebin.com/V6AN7atV > > When using telent to port 8080, the prox

[go-nuts] Is this a possible bug with pipe

2022-09-12 Thread ramki...@hotmail.com
I created a TCP Proxy using io.copy (which creates a splice). Here is the code. Proxy TCP Server - https://pastebin.com/iAcFjmV1 Regular TCP Server - https://pastebin.com/V6AN7atV When using telent to port 8080, the proxy starts and everything typed in the telnet will be returned. After 10 seco

[go-nuts] Re: Is golang/mobile still active?

2022-09-12 Thread Changkun Ou
golang/mobile is still maintenance. If you encounter any usage issues, feel free to report them here: https://github.com/golang/go/issues On Monday, September 12, 2022 at 3:33:18 AM UTC+2 sytuv ccoxf wrote: > Is golang/mobile still active? > > It seems like does not committed since Jul 23 2022.

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread 'Sebastien Binet' via golang-nuts
On Mon Sep 12, 2022 at 11:04 CET, brainman wrote: > Thanks for the link. I briefly looked at that program, and I cannot even > figure it out how I can use it for my purpose - serve documentation for > about hundred of private github repos. I believe you can do this with this maintained fork of god

[go-nuts] Re: App Engine hasn't upgraded beyond Go 1.16, which is now out of security window

2022-09-12 Thread Rusco
Googles own language on Googles own cloud lags behind several version, I don't understand this :-( Microsoft seems to be more eager to keep things up to date: .NET 7 comes to Azure Functions & Visual Studio 2022 - .NET Blog (microsoft.com)

[go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread brainman
Thanks for the link. I briefly looked at that program, and I cannot even figure it out how I can use it for my purpose - serve documentation for about hundred of private github repos. Alex On Monday, 12 September 2022 at 11:42:23 UTC+10 tapi...@gmail.com wrote: > I don't know if it satisfies y

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread brainman
You probably run godoc from inside your module directory. Alex On Monday, 12 September 2022 at 18:31:11 UTC+10 Jan Mercl wrote: > On Mon, Sep 12, 2022 at 10:01 AM brainman wrote: > > > I managed to run godoc. > > > > But godoc only displays standard library packages. > > > > Is it possible to c

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread brainman
Thank you Steve. Indeed. If I run godoc from a directory inside of a repo, then godoc displays new section called "Third party". The section displays all my module code and all its dependencies. Unfortunately I have about hundred of repos on Github containing independent projects working on by

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread Jan Mercl
On Mon, Sep 12, 2022 at 10:01 AM brainman wrote: > I managed to run godoc. > > But godoc only displays standard library packages. > > Is it possible to configure godoc so it displays packages stored in private > github repos ? I use it with no configuration, '$ GO111MODULE=off godoc -http :6060

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread Steve Mynott
When I started "godoc -http=localhost:6060 -index" in a local repo it did read the go.mod file and display our docs for local github repos. I wonder if it's go workspace aware yet? S On Mon, 12 Sept 2022 at 09:01, brainman wrote: > Thank you for instructions. > > I managed to run godoc. > > Bu

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-12 Thread brainman
Thank you for instructions. I managed to run godoc. But godoc only displays standard library packages. Is it possible to configure godoc so it displays packages stored in private github repos ? Thank you. Alex On Sunday, 11 September 2022 at 18:40:01 UTC+10 Jan Mercl wrote: > On Sun, Sep 11