Go

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 28,068 public repositories matching this topic...
What would you like to be added:
I would like debug logging to show the heart of the processing of a patch request. For example, showing the inputs and outputs of https://github.com/kubernetes/apiserver/blob/fa3c8ad6d7aff4ba13bf7296583ed2815db1be44/pkg/endpoints/handlers/patch.go#L620 .
Why is this needed:
-
Updated
Jul 17, 2020 - Go
-
Updated
Jul 17, 2020 - Go
-
Updated
Jul 17, 2020 - Go
Description
Using the fetch API from WHATWG in Google Chrome, an image upload does not have Content-Type multipart/form-data. Instead, the content type is set to the MIME type (ex: image/jpeg
) with a boundary
parameter. Setting Content-Type explicitly to multipart/form-data
should result in an error (and it does).
How to reproduce
Follow an existing image upload example from
-
Updated
Jul 15, 2020 - Go
-
Updated
Jul 17, 2020 - TypeScript
Is your feature request related to a problem? Please describe.
No
Describe the solution you'd like
Creating a symlink called README.md in the repository root (that points to another markdown file) should render a preview on the repository web page.
At the moment, it only displays the name of the symlink in the preview pane.
See screenshot below.
On Github a README symlink to a
-
Updated
Jul 17, 2020 - Go
I'm using TLS on etcd 3.3.12 and have a mix of etcd proxies and masters. The proxies don't seem to honour the --cipher-suites setting, as it ends up with ECDHE-RSA-AES256-GCM-SHA384
despite --cipher-suites=TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
being set.
$ pgrep -laf /usr/bin/etcd
21968 /usr/bin/etcd --listen-client-urls https://0.0.0.0:4000 --adv
Do you want to request a feature or report a bug?
Documentation improvement
In digestAuth documentation, Kubernetes section does not contain any useful example explaining how to put credentials into a file. The given example is same as users(using base
-
Updated
Jul 17, 2020 - Go
The function arguments to core.NewBlockChain
got way out of hand. We need a config structure instead.
Feature Request
Is your feature request related to a problem? Please describe:
This is a really minor nit, but the EXPLAIN output on binary strings is different from what I expected:
CREATE TABLE t1 (
id INT NOT NULL PRIMARY KEY auto_increment,
b varchar(255) not null,
c varbinary(255) not null,
index (b),
index (c)
);
INSERT INTO t1 (b,c) VALUES ('a', 'a'),('b
This is to specifically ease the reviewing of healing related PRs. As we know, healing has more asynchronous decoupled tasks which we need to keep track to join our thoughts (specially during the review)
A design documentation, maybe with a design diagram would help to understand the process and differences between self-healing and admin-healing
Ideally we can keep track of the fore coming c
rclone v1.48.0
- os/arch: linux/amd64
- go version: go1.12.
ncdu shows empty files as:
@ 0.0 B [ ] emptyfile
..and empty folders as:
e 0.0 B [ ] /emptyfolder
Could rclone ncdu get the indicators as well?
-
Updated
Jul 12, 2020 - Go
One common use case for project maintainers is to update a broken pull request which was made by someone else.
Hub should be able to help maintainers doing the following steps:
- grab a pull request
- update the pull request (rebase or other change)
- update the pull request (aka pushing it)
-
Updated
Jul 17, 2020 - Go
Right now we have the following, which doesn't validatie the needs of a given view. This allows for any colors to be provided, not necessarily the ones that are required. I'd recommend making these color validations accurate, where for Gauge
it would require the min
and max
for instance. I'm assuming these are required for gauge, that may be in error. Would be nice to provide swagger that p
Sorry in advance but the issue template really does not apply at all to my issue.
Abstract
When using the none driver in a linux environment I get issues with PVCs after restarting. This is due to the /tmp
directory being a tmpfs
filesystem.
Details
Many mainstream linux distributions adopted systemd as the init system quite a while ago, and under this system, the /tmp
director
-
Updated
Jul 17, 2020 - Go
-
Updated
Jul 17, 2020 - Go
In PostgreSQL, @ is a unary operator that returns the absolute value of a number. For example:
jordan=# select @ -5.0;
?column?
----------
5.0
(1 row)
CockroachDB is missing such a unary operator.
-
Updated
Jul 2, 2020 - Go
Created by Robert Griesemer, Rob Pike, Ken Thompson
Released November 10, 2009
- Repository
- golang/go
- Website
- golang.org
- Wikipedia
- Wikipedia
Hello,
I wanted to reach out and see whether there is an interest in the fix for #34437 being included in the Go release notes. Someone I know was finally working through upgrading to Go 1.14 and ran in to some peculiar issues with their JSON being unmarshaled differently. Here is that commit on our side: