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,208 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

caddy
minio
iris
BreathYu
BreathYu commented Sep 26, 2018

Hey again Our developers are developed by Aiarron of the frontend developer, Desmond and ZRothschild and Yusn of the backend developer. We have jointly developed the Go Web Iris Chinese community using the go Iris framework.

And for https://docs.iris-go.com/ this document is translated from English to Chinese, and we will also translate other documents and promote it in the go development commu

mattermost-server
mattermod
mattermod commented Dec 9, 2019

Our desktop app is currently making use of .bind() to maintain context of the functions calls we use in our React components. This is an outdated approach, as we can use arrow functions (ie. () =>) to express our component-bound functions without having to explicitly bind them to the component’s context.

A successful PR would remove all .bind() statements from the desktop app’s React compon

bjkowalski
bjkowalski commented Nov 5, 2019

I am running minikube version v1.5.2.

I discovered that if I specify an undefined "namespace" with the namespace option on the service command an error is reported but there is also a message that says "mini9kube crashed".

The exact command to reproduce the issue:
minikube service newservice -n unknown --url

The full output of the command that failed:


$ minikube ser

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.