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
var cache map[string]interface{} | |
func main() { | |
ticker = time.NewTicker(3 * time.Second) | |
defer ticker.Stop() // stop the ticker | |
updaterChan = make(chan struct{}) | |
defer close(updaterChan) // close the channel | |
// ... |
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
ticker = time.NewTicker(3 * time.Second) | |
defer ticker.Stop() // stop the ticker | |
//... | |
case <- ticker.C: | |
// update cache | |
// ... |
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" | |
"sync" | |
"time" | |
) | |
var mutex sync.RWMutex | |
var cache map[string]interface{} |
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
language: python | |
python: "3.8" | |
env: | |
global: | |
# GITHUB_TOKEN to open PR | |
- secure: "XXX" | |
# AWS ACCESS KEY | |
- secure: "XXX" | |
# AWS SECRET KEY |
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 open_pull_requests() { | |
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then | |
STAGES=( dev pre pro ) | |
for STAGE in "${STAGES[@]}"; do | |
# Run CDK diff | |
cdk diff -c stage=${STAGE} | tee cdk_diff_${STAGE}.txt | |
# Prepare PR message | |
read -r -d '' MESSAGE <<-EOM | |
> :warning: **Please review this changes before merging.** |
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
language: python | |
python: "3.8" | |
stages: | |
- test | |
before_install: | |
- npm i -g [email protected] # Install CDK | |
- pip install -r requirements.txt --use-feature=2020-resolver # Download CDK python depedencies | |
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
{ | |
"trigger_url": "https://api.runscope.com/radar/e9283ad0-af77-45b4-81ee-0e59bd5ff932/trigger", | |
"name": "SCIM 2.0 SPEC Test", | |
"version": "1.0", | |
"steps": [ | |
{ | |
"url": "{{SCIMBaseURL}}/Users?count=1&startIndex=1", | |
"variables": [ | |
{ | |
"source": "response_json", |
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
api-scenario run \ | |
--scenario=scim-scenario.json \ | |
--variable="auth:token" \ | |
--variable="SCIMBaseURL:http://localhost:3000"\ | |
--variable="InvalidUserEmail:[email protected]" \ | |
--variable="UserIdThatDoesNotExist:id_invalid" \ | |
--variable="randomEmail:[email protected]" \ | |
--variable="randomUsername:randomUsername" \ | |
--variable="randomGivenName:randomGivenName" \ | |
--variable="randomFamilyName:randomFamilyName" \ |
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 com.tpoi.monitoring.service; | |
import java.time.Instant; | |
import java.util.concurrent.atomic.AtomicInteger; | |
import java.util.stream.IntStream; | |
import java.util.stream.Stream; | |
/** | |
* HitCounter count the number of request in a specific range of time. | |
*/ |
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
{ "schemas": | |
["urn:ietf:params:scim:api:messages:2.0:PatchOp"], | |
"Operations":[ | |
{ | |
"op":"add", | |
"path":"members", | |
"value":[ | |
{ | |
"display": "Babs Jensen", | |
"$ref": |