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

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

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

traefik
geraldcroes
geraldcroes commented Nov 6, 2019

Do you want to request a feature or report a bug?

Feature

What did you expect to see?

By design, Traefik 2.0 is stateless and HA: Users can deploy multiple instances to ensure that at least one Traefik instance can route requests at any time.

Though, when using Let's Encrypt for automatic certificate generation, the certificate negotiation cannot be consistently achieved becaus

caddy
minio
brandonkal
brandonkal commented Nov 6, 2019

Description

Gitea should document this. It is noticeably missing here. It is not in the app.ini file either.

try.gitea.com has a login with GitHub button in the UI, so it should be possible.

Edit: I see it is possible via settings. This should be mentioned on the corresponding doc pages.

iris
mattermost-server
mattermod
mattermod commented Nov 18, 2019

This issue was found by the aXe Chrome extension for finding WCAG issues. In order to successfully complete this issue, you'll need to make sure to test using the tool and ensure that all of the warnings covering the components scoped below are cleared. You can find more information on the issue at the link below:
[](https://dequeuniversity.com/rules/axe/3.3/duplicate-id?application=Ax

medyagh
medyagh commented Oct 25, 2019

I feel like there could be a brush up on the minikube emojis,

minikube delete

its kind of weird in one emoji we have breaking heart and the one after is fire...

🔥  Removing /root/.minikube/machines/minikube ...
💔  The "minikube" cluster has been deleted.
🔥  Successfully deleted profile "minikube"

this specially looks weird when deleting multiple profiles

minikub

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.