This file contains 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
//Frame dictionary | |
{"FrameId1": "java.lang.blah.blah:80", "...": "..."} | |
//Syscall dictionary | |
{"SycallId1": "open()", "...": "..."} | |
//Data model for a unique backtrace in off-cpu stack sample tree | |
{ | |
backtrace_id: 35, | |
ctx_switches : { |
This file contains 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
Title: "Test Load Balancer - rocket booster for your build" | |
============================================================ | |
Abstract: | |
------------------- | |
The problem: |
This file contains 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
// ==UserScript== | |
// @name Better FBH | |
// @namespace Go | |
// @description FBH failed tests aggregator | |
// @include */go/pipelines/*/tests | |
// ==/UserScript== | |
FailedBuildHistory = function() { | |
function add_data_pane(self, holder) { | |
self.body = document.createElement('div'); |
This file contains 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
From 52859e4f013512157ab86cea4e89df5b651af88d Mon Sep 17 00:00:00 2001 | |
From: Janmejay Singh <[email protected]> | |
Date: Tue, 14 Dec 2010 20:37:51 +0530 | |
Subject: [PATCH] rake_task now capable of loading specs with single and double quotes in path | |
--- | |
lib/rspec/core/rake_task.rb | 2 +- | |
spec/rspec/core/rake_task_spec.rb | 32 ++++++++++++++++++++++++++++++++ | |
2 files changed, 33 insertions(+), 1 deletions(-) |
This file contains 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
set-window-option -g mode-keys emacs | |
set-window-option -g window-status-current-bg red | |
set-window-option -g window-status-current-fg white | |
set-window-option -g window-status-current-attr 'bold' | |
set-window-option -g window-status-current-attr 'bold' | |
set-window-option -g window-status-fg black | |
set-window-option -g window-status-bg white | |
set-window-option -g automatic-rename on | |
set-window-option -g utf8 on |
This file contains 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
(load-file "~/emacs_extensions/init.el") |
This file contains 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
ActionView::Base.class_eval do | |
$render_expectation_matcher_loaded = true | |
def set_render_expectation options_map | |
options_map.reverse_merge!(:with => [], :times => 1, :return => nil) | |
_get_expectation_map[options_map[:with]] = options_map.except(:with).merge(:expected_times => options_map[:times]) | |
end | |
def _get_expectation_map | |
self.instance_variable_get('@render_expectations') || self.instance_variable_set('@render_expectations', {}) |