This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "gains" : { | |
| "global" : 0, | |
| "bands" : [ | |
| 3, | |
| 6, | |
| 9, | |
| 7, | |
| 6, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Arithmetic.Multiply", | |
| "function": "main.Multiply", | |
| "params": { | |
| "$ref": "#/definitions/MultiplyParams", | |
| "definitions": { | |
| "MultiplyParams": { | |
| "type": "object", | |
| "properties": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "context" | |
| "encoding/json" | |
| "log" | |
| "net/http" | |
| "github.com/osamingo/jsonrpc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "log" | |
| "net/http" | |
| "github.com/gorilla/rpc/v2" | |
| "github.com/gorilla/rpc/v2/json2" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "io" | |
| "log" | |
| "net" | |
| "net/http" | |
| "net/rpc" | |
| "net/rpc/jsonrpc" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "net/http" | |
| "github.com/facebookgo/grace/gracehttp" | |
| "github.com/sebest/xff" | |
| "goji.io" | |
| "goji.io/pat" | |
| "golang.org/x/net/context" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ go list -f="{{if .TestGoFiles}}{{.ImportPath}}{{end}}" ./... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| machine: | |
| environment: | |
| GOROOT: ${HOME}/go | |
| PATH: ${GOROOT}/bin:${PATH} | |
| post: | |
| - wget https://storage.googleapis.com/golang/go1.5.linux-amd64.tar.gz | |
| - tar zxvf go1.5.linux-amd64.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "mode: count" > coverage.txt;for pkg in `find . -maxdepth 3 -path '*_test.go' -type f | xargs -I{} dirname {} | uniq`;do go test -covermode=count -coverprofile=temp.cov $pkg && tail -n +2 temp.cov >> coverage.txt || exit 1;rm temp.cov;done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function onOpen() { | |
| SpreadsheetApp.getActiveSpreadsheet().addMenu('JIRA', [ | |
| { | |
| name: 'Create issues', | |
| functionName: 'createIssuesForJira' | |
| } | |
| ]); | |
| } | |
| function createIssuesForJira() { |
NewerOlder