This file contains 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
FROM mysql | |
COPY migrations /migrations | |
RUN cp /migrations/*.up.sql /docker-entrypoint-initdb.d/ |
This file contains 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
20:57:08 $ curl -v 'http://www.google.com/' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36' --compressed > /dev/null | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 172.217.6.36... | |
* TCP_NODELAY set | |
* Connected to www.google.com (172.217.6.36) port 80 (#0) | |
> GET / HTTP/1.1 | |
> Host: www.google.com | |
> Accept: */* |
This file contains 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 ( | |
"encoding/json" | |
"errors" | |
"fmt" | |
"reflect" | |
"github.com/tidwall/gjson" | |
) |
This file contains 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 ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"log" | |
"github.com/jmoiron/sqlx" | |
_ "github.com/lib/pq" |
This file contains 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
From 34656ec2f00d6669cef56afdbffdd90639d7b465 Mon Sep 17 00:00:00 2001 | |
From: Peter Stephenson <[email protected]> | |
Date: Tue, 10 Jan 2017 19:18:52 +0000 | |
Subject: [PATCH] 40305: fix some problems redisplaying command line after | |
interrupt. | |
Back off previous fix as this only covered some subset of problems. | |
Remaining problems happend after reset-prompt in TRAPINT. |
This file contains 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/ioutil" | |
"log" | |
"github.com/naoina/toml" | |
"github.com/naoina/toml/ast" | |
) |
This file contains 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 ( | |
"fmt" | |
"flag" | |
) | |
var ( | |
flagName = flag.String("name", "default", "myname") | |
flagPlace = flag.String("place", "france", "myname") |
This file contains 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
type ErrorSet []error | |
func (es ErrorSet) Error() string { | |
return errors.New("Error(s) encountered while processing. First error encountered was: %v") | |
} | |
func (s NodeName) FieldName(errs ErrorSet) FieldType { | |
... | |
if err != nil { | |
errs = append(errs, err) |
This file contains 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
vagrant at local in ~GOPATH/src/github.com/alecthomas/go_serialization_benchmarks (vendor●●) | |
21:21:28 $ go test -cpuprofile=cpu.out -bench='.*' ./ | |
A test suite for benchmarking various Go serialization methods. | |
See README.md for details on running the benchmarks. | |
BenchmarkCapNProtoMarshal-4 3000000 522 ns/op 56 B/op 2 allocs/op | |
BenchmarkCapNProtoUnmarshal-4 3000000 477 ns/op 200 B/op 6 allocs/op | |
BenchmarkCapNProto2Marshal-4 2000000 851 ns/op 244 B/op 3 allocs/op |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.