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 memoryless provides a Ticker that ticks according to the memoryless (Poisson) distribution. | |
| // | |
| // Use this ticker instead of time.Ticker to generate events with a Poisson distribution and avoid pathological cases. | |
| // | |
| // See https://en.wikipedia.org/wiki/Poisson_distribution for more information as well as the acronym P.A.S.T.A. | |
| package memoryless | |
| import ( | |
| "context" | |
| "errors" |
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
| version: "2" | |
| run: | |
| issues-exit-code: 1 | |
| tests: true | |
| output: | |
| formats: | |
| text: | |
| path: stdout | |
| print-linter-name: true | |
| print-issued-lines: true |
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" | |
| "io" | |
| "net/http" | |
| "testing" | |
| "github.com/prometheus/client_golang/prometheus/testutil/promlint" |
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 timex | |
| import "time" | |
| type Clock interface { | |
| Now() time.Time | |
| Sleep(d time.Duration) | |
| } | |
| type SystemClock struct{} |
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
| run: | |
| # Timeout for analysis, e.g. 30s, 5m. | |
| # Default: 1m | |
| timeout: 5m | |
| # Exit code when at least one issue was found. | |
| # Default: 1 | |
| issues-exit-code: 1 | |
| # Include test files or not. | |
| # Default: true | |
| tests: false |
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
| GeoIP_country_continent = [ | |
| "--", "AS", "EU", "EU", "AS", "AS", "NA", "NA", "EU", "AS", "NA", "AF", | |
| "AN", "SA", "OC", "EU", "OC", "NA", "AS", "EU", "NA", "AS", "EU", "AF", | |
| "EU", "AS", "AF", "AF", "NA", "AS", "SA", "SA", "NA", "AS", "AN", "AF", | |
| "EU", "NA", "NA", "AS", "AF", "AF", "AF", "EU", "AF", "OC", "SA", "AF", | |
| "AS", "SA", "NA", "NA", "AF", "AS", "AS", "EU", "EU", "AF", "EU", "NA", | |
| "NA", "AF", "SA", "EU", "AF", "AF", "AF", "EU", "AF", "EU", "OC", "SA", | |
| "OC", "EU", "EU", "NA", "AF", "EU", "NA", "AS", "SA", "AF", "EU", "NA", | |
| "AF", "AF", "NA", "AF", "EU", "AN", "NA", "OC", "AF", "SA", "AS", "AN", | |
| "NA", "EU", "NA", "EU", "AS", "EU", "AS", "AS", "AS", "AS", "AS", "EU", |
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 creds | |
| func NewProvider() (Provider) { | |
| } | |
| type Provider interface { | |
| FindCredentials() (Creds) | |
| } |
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
| NewConnector() (Connector) { | |
| return &sshConnector{...} | |
| } | |
| type sshConnector struct { | |
| dialer dialer | |
| } | |
| func (s *sshConnector) NewConnection(...) { | |
| s.dialer.Dial() |
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 | |
| OUTPUT=$(mktemp -d --tmpdir=/tmp "$(date -Iseconds).$(basename $0).XXXXXXX") | |
| echo "$@" > "${OUTPUT}/cmdline" | |
| env > "${OUTPUT}/env" | |
| cat - \ | |
| | tee "${OUTPUT}/input" \ | |
| | /usr/cni/bin/$(basename $0) $@ \ | |
| | tee "${OUTPUT}/output" | |
| cd "${OUTPUT}" |
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 | |
| echo 'This worked!' |
NewerOlder