The Wayback Machine - https://web.archive.org/web/20210119103545/https://github.com/topics/go
Skip to content
#

Go

go logo

Go is a programming language built to resemble a simplified version of the C programming language. It compiles at the machine level. Go was created at Google in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson.

Here are 31,576 public repositories matching this topic...

danwinship
danwinship commented Nov 19, 2020

When we first added SCTP tests, we thought that we weren't going to be able to do actual tests of SCTP network connectivity within kubernetes CI, so we came up with a plan involving a split between tests that involve actual SCTP network connectivity (which require the SCTP kernel module to be available) and tests that don't do SCTP network traffic and so can run anywhere. That way we could still t

tomasz1986
tomasz1986 commented Nov 12, 2020

Right now, Syncthing seems to always use LF for line endings in config.xml and .stignore. This is a problem in Windows when trying to edit those using the built-in Notepad, which until very recently had no support for other line endings than CRLF. Support for them has only been added in the very recent versions of Windows 10.

The problem is that when opening those files in Notepad under old

caddy
princemaple
princemaple commented Jan 13, 2021

Discussion in
https://caddy.community/t/map-handler-use-regex-capture-group-in-destination/11104

I want to refer to the captured parts of the regex in destination, e.g.

map * {host} {my_folder} {
  ~(.+)\.localhost \\1
  default "fail"
}

@mholt : The map handler doesn’t set placeholders like this, but it could, someone can contribute that functionality. Would be pretty simil

flycash
flycash commented Jan 13, 2021

The httplib.BeegoHTTPSettings has field ShowDebug bool
It only be used in method doRequest:

	if b.setting.ShowDebug {
		dump, err := httputil.DumpRequest(b.req, b.setting.DumpBody)
		if err != nil {
			log.Println(err.Error())
		}
		b.dump = dump
	}

But I don't see any code use b.dump. So I think we could remove b.dump and this part.

And then we provide a fi

Addvilz
Addvilz commented Dec 4, 2020

What is your current rclone version (output from rclone version)?

1.53.3

What problem are you are trying to solve?

Trying to prevent default password from being generated and added when htpasswd option is used. Since htpasswd is present, there generally should be no need for credentials besides those in htpasswd.

How do you think rclone should be changed to solve tha

calebstewart
calebstewart commented Dec 10, 2020

This is related to the documentation for minikube. I'm trying to figure out if mounts persist across minikube start/stop. I'm automating the startup of a collection of deployments, and they need a local directory to be mounted. I understand that the minikube mount command accomplishes this. I can't find any documentation on removing mount points or on what happens to the mount points when yo

cockroach
yuzefovich
yuzefovich commented Dec 29, 2020

Most aggregate functions support multi-stage distributed execution in which on every node we perform a local aggregation, then we route all the intermediate results to all of the nodes (according to the grouping columns), and then we perform a final aggregation that gives us the result. For some aggregate functions the decomposition into local and final stages is trivial - e.g. in order to calcula

Created by Robert Griesemer, Rob Pike, Ken Thompson

Released November 10, 2009

Repository
golang/go
Website
golang.org
Wikipedia
Wikipedia

Related Topics

c language
You can’t perform that action at this time.