Skip to content

Instantly share code, notes, and snippets.

View mxpv's full-sized avatar

Maksym Pavlenko mxpv

View GitHub Profile
func TestBenchmarkListImages(t *testing.T) {
tmpDir := t.TempDir()
specFile := filepath.Join(tmpDir, "1.json")
testSpec := imagespec.Image{
Author: "1",
Architecture: "2",
Variant: "3",
OS: "4",
Config: imagespec.ImageConfig{
User: "c",
$ curl http://127.0.0.1:3338/v1/metrics
# HELP container_cpu_kernel_nanoseconds The total kernel cpu time
# TYPE container_cpu_kernel_nanoseconds gauge
container_cpu_kernel_nanoseconds{container_id="test120",namespace="default",runtime_class="io.containerd.runtime.v1.linux"} 1e+07
container_cpu_kernel_nanoseconds{container_id="test12345",namespace="default",runtime_class="io.containerd.other.v2"} 1e+07
# HELP container_cpu_throttle_periods_total The total cpu throttle periods
# TYPE container_cpu_throttle_periods_total gauge
container_cpu_throttle_periods_total{container_id="test120",namespace="default",runtime_class="io.containerd.runtime.v1.linux"} 0
container_cpu_throttle_periods_total{container_id="test12345",namespace="default",runtime_class="io.containerd.other.v2"} 0
# HELP container_cpu_throttled_periods_total The total cpu throttled periods
@mxpv
mxpv / benchmark_test.go
Last active September 18, 2018 23:59
Containerd decompression benchmark
package compression_test
import (
"bytes"
"crypto/md5"
"io"
"io/ioutil"
"os"
"os/exec"
"testing"
@mxpv
mxpv / gist:034933deeebb26b62f14
Last active January 15, 2016 23:26
URL tests
Should pass:
http://foo.com/blah_blah
http://foo.com/blah_blah/
http://foo.com/blah_blah_(wikipedia)
http://foo.com/blah_blah_(wikipedia)_(again)
http://www.example.com/wpstyle/?p=364
https://www.example.com/foo/?bar=baz&inga=42&quux
http://✪df.ws/123
http://userid:password@example.com:8080
$ ../External/ctags/ctags.exe --append --fields=+ian --c-types=+cefgmnpstuvx --recurse --totals=yes .
1 file, 110 lines (2 kB) scanned in 0.0 seconds (1420 kB/s)
56 tags added to tag file (now 56 tags)
56 tags sorted in 0.00 seconds
@mxpv
mxpv / gist:5879528
Created June 27, 2013 19:21
How to make sublime text the default editor for git on Windows
git config --global core.editor "'c:/program files/sublime text 2/sublime_text.exe' -w"
@mxpv
mxpv / DialogTemplate.cpp
Last active December 17, 2015 04:19
Small helper class for generating dynamic dialog templates in memory and handling all alignment stuff. (see http://msdn.microsoft.com/en-us/library/windows/desktop/ff468828(v=vs.85).aspx)
DialogTemplate::DialogTemplate(const wchar_t * caption, u32 x, u32 y, u32 width, u32 height)
: _size(0)
{
Header header = { 0 };
header.dlg.style = DS_SETFONT | DS_CENTER | WS_POPUP | WS_CAPTION;
header.dlg.dwExtendedStyle = 0;
header.dlg.x = x;
header.dlg.y = y;
@mxpv
mxpv / Win32.h
Created May 2, 2013 13:27
Slim version of windows.h header
#ifndef SYS_WIN32_H
#define SYS_WIN32_H
// Slim version of windows.h header
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef WIN32_EXTRA_LEAN
@mxpv
mxpv / readme.md
Created April 18, 2013 09:29
Building Clang
@mxpv
mxpv / gist:5262043
Created March 28, 2013 09:52
Git caret and tilde
http://paulboxley.com/blog/2011/06/git-caret-and-tilde
http://alblue.bandlem.com/2011/05/git-tip-of-week-git-revisions.html