This is a short guide on how to work with .otlp.jsondn.gz
files that you'll find in the artifacts directory of TeamCity runs after a run of the TestWorkload
test.
- DuckDB
- Go
# Below is a guide on how to deploy the kafka connectors helm chart now that | |
# the subchart integration has been removed from both the redpanda helm chart | |
# and redpanda operator. | |
# | |
# 1. Copy the contents of this file into a values.yaml file somewhere. | |
# 2. Merge contents of the `connectors` key from your redpanda values.yaml into this file, giving precidence to this file. | |
# 3. Remove the contents of the `connectors` key from your redpanda.values.yaml | |
# 4. Upgrade your redpanda chart to the target version, the connectors deployment should be removed. | |
# 5. Deploy connectors as a standalone chart with `helm install redpanda/connectors -f values.yaml --namespace <NAMESPACE> <RELEASE_NAME>` | |
# |
import ( | |
"net" | |
"testing" | |
"github.com/stretchr/testify/require" | |
) | |
func TestClientWriteToClosed(t *testing.T) { | |
lis, err := net.Listen("tcp", "127.0.0.1:0") | |
require.NoError(t, err) |
This is a short guide on how to work with .otlp.jsondn.gz
files that you'll find in the artifacts directory of TeamCity runs after a run of the TestWorkload
test.
package main | |
import ( | |
"bytes" | |
"fmt" | |
"go/ast" | |
"go/token" | |
"go/types" | |
"sort" | |
"strings" |
I hereby claim:
To claim this, I am signing this object:
require 'set' | |
require 'json' | |
require 'securerandom' | |
module SHAREClient | |
class GraphNode | |
attr_reader :id |
function regexRange(lo, hi) { | |
let re = []; | |
hi = hi.toString(); | |
lo = lo.toString(); | |
while (hi.length > lo.length) { | |
re.push(hi.split('').reduce((acc, c) => acc + `[${acc.length === 0 ? 1 : 0}-${c}]`, '')); | |
hi = '9'.repeat(hi.length - 1); | |
} | |
let i = 0; | |
re.push(lo.split('').reduce((acc, c) => acc + `[${c}-${hi[i++]||c}]`, '')); |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>jQuery Experimenter Interface</title> | |
</head> | |
<body> | |
<select id="exp"></select> | |
<select id="session"></select> |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
myComponent: 'will-destroy-element', | |
appName: 'Ember Twiddle', | |
actions: { | |
click() { | |
if (this.get('myComponent') !== null) | |
this.set('myComponent', null); | |
else |