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
Showing top 10 nodes out of 164 (cum >= 180ms) | |
flat flat% sum% cum cum% | |
4170ms 31.00% 31.00% 4170ms 31.00% runtime.usleep | |
1130ms 8.40% 39.41% 1130ms 8.40% runtime.mach_semaphore_signal | |
1120ms 8.33% 47.73% 1120ms 8.33% runtime.mach_semaphore_wait | |
1020ms 7.58% 55.32% 1020ms 7.58% runtime.memmove | |
770ms 5.72% 61.04% 940ms 6.99% runtime.scanobject | |
680ms 5.06% 66.10% 680ms 5.06% syscall.Syscall | |
570ms 4.24% 70.33% 570ms 4.24% runtime.mach_semaphore_timedwait | |
240ms 1.78% 72.12% 970ms 7.21% runtime.mallocgc |
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
class Worker { | |
private readonly ILog mLogger = Log.ForContext<Worker>(); | |
public void Process(string messageId) { | |
var messageLogger = mLogger.ForContext("messageId", messageId); | |
messageLogger.Information("Starting to process {messageId} with {SomeVariable}", 12) | |
} |
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
Homebrew build logs for sfcgal on macOS 10.13.4 | |
Build date: 2018-05-10 23:56:37 |
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
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do | |
source "https://rubygems.org" |
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
require 'sneakers' | |
require 'sneakers/runner' | |
require 'byebug' | |
require 'oj' | |
class RpcServer | |
include Sneakers::Worker | |
from_queue 'downloads' | |
def work_with_params(deserialized_msg, delivery_info, metadata) |
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
# frozen_string_literal: true | |
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
[Jul 09 17:53:03] ERROR - org.openqa.selenium.WebDriverException unknown error: session deleted because of page crash | |
from unknown error: cannot determine loading status | |
from tab crashed | |
(Session info: chrome=73.0.3683.103) | |
(Driver info: chromedriver=73.0.3683.103,platform=Linux 4.15.0-1040-aws x86_64) (WARNING: The server did not provide any stacktrace information) | |
Command duration or timeout: 0 milliseconds | |
Build info: version: 'unknown', revision: 'unknown', time: 'unknown' | |
System info: host: 'automation', os.name: 'Linux', os.arch: 'amd64', os.version: '4.15.0-1040-aws', java.version: '1.8.0_212' | |
Driver info: org.openqa.selenium.chrome.ChromeDriver | |
Capabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 73.0.3683.103, userDataDir: /tmp/.org.chromium.Chromium...}, cssSelectorsEnabled: true, databaseEnabled: false, goog:chromeOptions: {debuggerAddress: localhost:34873}, handlesAle |
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
/Users/yosi/.rvm/rubies/truffleruby-20.0.0/bin/truffleruby -I/Users/yosi/.rvm/gems/truffleruby-20.0.0/gems/rspec-core-3.9.0/lib:/Users/yosi/.rvm/gems/truffleruby-20.0.0/gems/rspec-support-3.9.0/lib /Users/yosi/.rvm/gems/truffleruby-20.0.0/gems/rspec-core-3.9.0/exe/rspec --pattern spec/\*\*\{,/\*/\*\*\}/\*_spec.rb | |
An error occurred while loading ./spec/panko/serializer_spec.rb. | |
Failure/Error: backend.type = descriptor.type | |
RuntimeError: | |
Arity error - expected: 2 actual: 1 (ArityException) | |
from com.oracle.truffle.llvm.runtime.interop.LLVMForeignCallNode$PackForeignArgumentsNode.error(LLVMForeignCallNode.java:149) | |
from com.oracle.truffle.llvm.runtime.interop.LLVMForeignCallNodeFactory$PackForeignArgumentsNodeGen.executeAndSpecialize(LLVMForeignCallNodeFactory.java:129) | |
from com.oracle.truffle.llvm.runtime.interop.LLVMForeignCallNodeFactory$PackForeignArgumentsNodeGen.execute(LLVMForeignCallNodeFactory.java:66) |
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
# frozen_string_literal: true | |
class MiniSqlConnection | |
def self.cached_type_map | |
@@type_map ||= begin | |
pg_connection = ActiveRecord::Base.connection.raw_connection | |
MiniSql::Postgres::Connection.type_map(pg_connection) | |
end | |
end |