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
| @ 9 Builder::setOne (7 bytes) inline (hot) | |
| @ 14 Builder::setTwo (7 bytes) inline (hot) | |
| @ 19 Builder::setThree (7 bytes) inline (hot) | |
| @ 24 Builder::setFour (7 bytes) inline (hot) | |
| @ 29 Builder::setFive (7 bytes) inline (hot) | |
| @ 34 Builder::setSix (7 bytes) inline (hot) | |
| @ 39 Builder::setSeven (7 bytes) inline (hot) | |
| @ 44 Builder::setEight (7 bytes) inline (hot) | |
| @ 49 Builder::setNine (7 bytes) inline (hot) | |
| @ 54 Builder::setTen (7 bytes) inline (hot |
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
| 58.215.76.67 - - [26/Jul/2015:08:29:58 +0000] "GET /phpMyAdmin/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 58.215.76.67 - - [26/Jul/2015:08:29:58 +0000] "GET /pma/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 58.215.76.67 - - [26/Jul/2015:08:29:59 +0000] "GET /myadmin/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 185.81.152.171 - - [26/Jul/2015:10:02:00 +0000] "GET /phpMyAdmin/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 185.81.152.171 - - [26/Jul/2015:10:02:01 +0000] "GET /pma/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 185.81.152.171 - - [26/Jul/2015:10:02:02 +0000] "GET /myadmin/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 46.172.71.251 - - [26/Jul/2015:10:23:28 +0000] "GET /rom-0 HTTP/1.1" 200 5399 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" | |
| 61.19.114.147 - - [26/Jul/2015:10:44:58 +0000] "GET /phpMyAdmin/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 61.19.114.147 - - [26/Jul/2015:10:44:59 +0000] "GET /pma/scripts/setup.php HTTP/1.1" 200 5399 "-" "-" | |
| 61.19.114.147 - - [26/ |
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
| Information:java: An exception has occurred in the compiler (1.8.0). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you. |
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
| runtime: garbage collector found invalid heap pointer *(0xc2082a7d18+0x18)=0x1 s=nil | |
| fatal error: invalid heap pointer | |
| runtime stack: | |
| runtime.throw(0xc96243) | |
| /usr/local/go/src/runtime/panic.go:491 +0xad fp=0x7f9f661cca38 sp=0x7f9f661cca08 | |
| scanblock(0xc208251d18, 0x50, 0x9267f4) | |
| /usr/local/go/src/runtime/mgc0.c:378 +0x551 fp=0x7f9f661ccb78 sp=0x7f9f661cca38 | |
| scanframe(0x7f9f661ccc80, 0x0, 0x1) | |
| /usr/local/go/src/runtime/mgc0.c:740 +0x1c2 fp=0x7f9f661ccbe8 sp=0x7f9f661ccb78 |
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
| func adaptToChanErr(delegate func() error) chan error { | |
| ch := make(chan error) | |
| go func() { ch <- delegate() }() | |
| return ch | |
| } |
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 ( | |
| "fmt" | |
| "net/http" | |
| ) | |
| func main() { | |
| http.HandleFunc("/microservices", func(w http.ResponseWriter, r *http.Request) { | |
| fmt.Fprintf(w, "lol no\n") |
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
| query := req.URL.Query() | |
| query.Set("user_id", 1) | |
| req.URL.RawQuery = query.Encode() |
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
| #!/bin/bash | |
| while :; do | |
| run_something # we want to run this thing until it fails | |
| if [[ "$?" -ne "0" ]] | |
| then | |
| # we detected a failure, quit | |
| exit | |
| fi | |
| 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
| for _, foo := range foos { | |
| // is there a valid reason for ever taking the address of a | |
| // variable written to by range? | |
| process(&foo) | |
| } |
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
| // helper methods for testing | |
| package test | |
| import ( | |
| "fmt" | |
| "path/filepath" | |
| "runtime" | |
| "testing" | |
| ) |