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
| # # Ignore JVM signals that LLDB sees as EXC_BAD_ACCESS etc. | |
| # process handle -p true -s false -n false SIGSEGV | |
| # process handle -p true -s false -n false SIGBUS | |
| # process handle -p true -s false -n false SIGILL | |
| # process handle -p true -s false -n false SIGFPE | |
| # process handle -p true -s false -n false SIGPIPE | |
| # process handle -p true -s false -n false SIGUSR1 | |
| # process handle -p true -s false -n false SIGUSR2 | |
| # | |
| # # `lldb in OSX cannot continue execute after catch BAD_ACCESS`: |
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 | |
| # keep this off as we are relying on some cmds to fail | |
| # for finding pids | |
| # set -e | |
| . ~/engine/envs/executor.env | |
| cd ~/measure | |
| ./target/release/measure & |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <profiles version="21"> | |
| <profile kind="CodeFormatterProfile" name="e6-style" version="21"> | |
| <setting id="org.eclipse.jdt.core.formatter.tabulation.char" value="space"/> | |
| <setting id="org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" value="false"/> | |
| <setting id="org.eclipse.jdt.core.formatter.indentation.size" value="4"/> | |
| <setting id="org.eclipse.jdt.core.formatter.tabulation.size" value="4"/> | |
| <setting id="org.eclipse.jdt.core.formatter.text_block_indentation" value="0"/> | |
| <setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" value="false"/> | |
| <setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" value="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 ( | |
| "encoding/json" | |
| "fmt" | |
| "net/url" | |
| "os" | |
| "os/exec" | |
| "path" | |
| ) |
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
| import { | |
| CloudWatchClient, | |
| GetMetricDataCommand, | |
| } from '@aws-sdk/client-cloudwatch'; | |
| let cloudWatchClient = new CloudWatchClient({ region: 'ap-south-1' }); | |
| async function getMetrics(livestreamSession) { | |
| console.log('before startedTime: ', livestreamSession.startedTime); | |
| console.log('before stoppedTime: ', livestreamSession.stoppedTime); |
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" | |
| "os" | |
| "os/exec" | |
| "strconv" | |
| "sync" | |
| "time" | |
| ) |