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 23,700 public repositories matching this topic...

rakyll
rakyll commented Jan 6, 2020

Over the last few years, Go standard library has done a great job by improving the examples coverage. However, some of the examples are difficult to read or too comprehensive to be a reference for basic usage.

Standard library examples can help more if they were simpler and more copy/paste-able. More comprehensive scenarios can be covered as secondary examples or in other mediums such as https:

hugo
sguillia
sguillia commented Aug 7, 2019

Please take a look at the following code

package main

import (
	"github.com/gin-gonic/gin"
)

func main() {
	r := gin.New()

	r.GET("/ping", func(c *gin.Context) { c.JSON(200, gin.H{}) })

	r.Use(gin.Logger())

	r.GET("/pingx", func(c *gin.Context) { c.JSON(200, gin.H{}) })

	r.Run()
}

And now please take a look at [the documentation for Use()](https://godoc.org/gi

gogs
dezzeus
dezzeus commented Nov 20, 2019

Within the organization's page I was expecting to find our private repositories, but they weren't there; only the public ones. I happened to find them only throught the generic "explore" menù.

The organizazion's page should list only the public repositories when the user isn'n logged in or if he/she doesn't have the permissions. Otherwise both the public and private ones should be listed.

Go

belm0
belm0 commented Dec 9, 2019

Steps to reproduce:

On a template variable with multi-select:

  1. enter a search which matches one or more items
  2. navigate by keyboard to an item
  3. use space bar to toggle the item

Actual Result:
The space bar input is appended or prepended to the search text.

Expected Result
The search text should remained unchanged, since focus is on a dropdown item.

**Releva

recolic
recolic commented Aug 9, 2019

I'm trying to setup frp server on my vps.

It would be really helpful if frp/README.md contains a Installation section like other open source project does.

The installation guide should mention at least the following:

  1. How to install go dependencies (in one command: go get ./.... Chinese user may have to break the fucking government wall)

  2. How to build the package. Should I use

andreymal
andreymal commented Aug 27, 2019

I tried to use a UNIX socket with nginx, but the default permission bits for the socket are 644:

$ ls -l syncthing.sock 
srwxr-xr-x 1 syncthing syncthing 0 авг 27 15:32 syncthing.sock

Nginx uses www-data user, and that's why it can't use this UNIX socket and prints "Permission denied".

I can change these permission bits using umask 0007 to make it work, but this solution is n

rkd-msw
rkd-msw commented Apr 18, 2019

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
traefik
mike239x
mike239x commented Jun 18, 2019
  • Category: fzf binary
  • OS: Linux 18.04
  • Shell: bash as well as fish

Say I got the command echo whatever | fzf --ansi --preview='cat colored_file' --height=1, where the colored_file contains a ANSI color code, then some text with line breaks. Now, if we run that command and try to scroll with the mouse inside of the preview area past the ANSI code, then the text inside of the preview wi

caddy
minio
bottkars
bottkars commented Nov 29, 2019

when starting minio with a custom azure Endpoint per documentation,

minio gateway azure https://azureaccountname.blob.custom.azure.endpoint

then minio adds a duplicate accountkey and blob to the URL.
as mini constructs the endpoint from
This may be because the code wants to create the endpoint from a custom suffix,

JustAnotherArchivist
JustAnotherArchivist commented Dec 24, 2019

I am currently working on a custom notification system involving Gitea. The details of this setup aren't really relevant to the topic at hand; there'll be an HTTP server that takes events via webhooks and produces notifications to send elsewhere.

My problem: there's hardly any documentation on webhooks. The doc page merely lists the different hooks avail

rolandcrosby
rolandcrosby commented Nov 9, 2019

Is your feature request related to a problem? Please describe.
Currently, cockroach demo doesn't have nodelocal storage enabled. This means you have to use cockroach start if you want to test or demonstrate any bulk I/O features.

Describe the solution you'd like
cockroach demo should accept the --external-io-dir flag in the same way that cockroach start does. It may even be

iris
asyslinux
asyslinux commented Dec 28, 2019

Dear developers. I write my custom specific web server for work with specific archive files, compression, encryption, etc. And i want to publish my web server under BSD-2-Clause license.

In my project i use Iris and Iris logger as basement.
I'm not going to use the name of your project to promote my project.

Can I publish my project under the BSD-2-Clause license?

Thanks.

mattermost-server
mattermod
mattermod commented Dec 23, 2019

We are starting to migrate the mattermost-webapp over to TypeScript to facilitate better code quality. This Help Wanted issue is to modify all files in components/admin*console/reset_password*modal (not sub-directories included) and associated test files.

Below is a checklist of items you should be doing to migrate:

  • < ] Rename the files to their associated TypeScript extensions (ie. js t
tstromberg
tstromberg commented Dec 19, 2019

As proposed by @robrich in #6122

As I mentioned there, minikube does not yet support latest or stableversion aliases, but it would be trivial to add. If you or anyone else is interested in making this work, add a check forparamVersion == "stable"` here:

https://github.com/kubernetes/minikube/blob/56c72e207965e6ff6fb760ed47a5039d0f3fb121/cmd/minikube/cmd/start.go#L1127

We currently

heat
heat commented Aug 21, 2018

Hi folks, sory about my bad english.
I'm trying get up nsq services at containerum, at containerum the public port to services and container are random. With nsqlookupd and nsqadmin it's easy not a big trouble.
But when we try to run nsqd it's registrer ther right broadcast url but the follow ports that nsqd register is that expose in container and not the service port random assigned with the

Gradecak
Gradecak commented Oct 3, 2019

What version of Go are you using (go version)?

1.12

Which database and its version are you using?

mysql 5.7

Please provide a complete runnable program to reproduce your issue. IMPORTANT

The documentation isn't to clear when it comes to querying by nested associations. For example, consider following structure.

// User has one Profile and belongs to many Instit

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.