Total time: 00:19:30 (1170.69 sec)
// * Summary *
BenchmarkDotNet-Dev=v0.9.4.0+
OS=Microsoft Windows NT 6.2.9200.0
Processor=Intel(R) Core(TM) i7-3770K CPU @ 3.50GHz, ProcessorCount=8
Frequency=3246781 ticks, Resolution=307.9974 ns, Timer=TSC
HostCLR=MS.NET 4.0.30319.42000, Arch=64-bit RELEASE [RyuJIT]
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
public static SqlConnection Connection | |
{ | |
get | |
{ | |
var ctx = HttpContext.Current; | |
var con = (SqlConnection) ctx.Items["Connection"]; | |
if (con == null) | |
{ | |
ctx.Items["Connection"] = con = new SqlConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString); | |
ctx.AddOnRequestCompleted(_ => con.Dispose()); |
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
using Microsoft.Diagnostics.Tracing; | |
using Microsoft.Diagnostics.Tracing.Parsers; | |
using Microsoft.Diagnostics.Tracing.Parsers.Clr; | |
using Microsoft.Diagnostics.Tracing.Session; | |
using System; | |
using System.Collections.Concurrent; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; |
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
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Configs; | |
using BenchmarkDotNet.Jobs; | |
using BenchmarkDotNet.Running; | |
[Config(typeof(Config))] | |
public class Program | |
{ | |
static void Main(string[] args) | |
{ |
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 (rnrs)) | |
(display "I am a dick") | |
(newline) | |
#!eof | |
(display "I am a cat") | |
(newline) | |
(display "Moeiw") | |
(newline) |
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
using System; | |
using System.Threading; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string got = ""; | |
var r = new ManualResetEvent(false); | |
var w = new ManualResetEvent(false); |
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
> C:\Windows\system32\cmd.exe /c ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\Microsoft\Web Tools\External\npm.cmd" ls -g" | |
npm ERR! extraneous: cordova C:\Users\lpritcha\AppData\Roaming\npm\node_modules\vs-tac\node_modules\cordova | |
npm ERR! error in C:\Users\lpritcha\AppData\Roaming\npm\node_modules\vs-tac\node_modules\cordova: ENOENT: no such file or directory, open 'C:\Users\lpritcha\AppData\Roaming\npm\node_modules\vs-tac\node_modules\cordova\package.json' | |
> cd C:\Users\lpritcha\AppData\Roaming\npm\node_modules\vs-tac\ | |
> npm rm cordova | |
> npm ls | |
No errors |
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
stackframe: | |
> Microsoft.VisualStudio.MultiDeviceHybridApps.ApacheCordovaToolsPackage.dll!Microsoft.VisualStudio.MultiDeviceHybridApps.Telemetry.Reporting.Logger_LaunchErrorDetected(object sender, Microsoft.VisualStudio.MultiDeviceHybridApps.Common.Logging.LaunchErrorEventArgs e) Unknown | |
sender | |
{Microsoft.VisualStudio.MultiDeviceHybridApps.Common.Logging.Logger} | |
Project: null | |
outputWindow: {Microsoft.VisualStudio.MultiDeviceHybridApps.Common.Logging.OutputWindowWriter} | |
outputWindowFromTextWriter: null | |
parser: {Microsoft.VisualStudio.MultiDeviceHybridApps.CordovaParser.BuildParser} | |
project: null |
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 Baz<T> | |
{ | |
[JsonConverter(typeof(BrokenConverter))] | |
public T[] Foo { get; set; } | |
} | |
class Foo | |
{ | |
public string Bar { get; set; } | |
} |
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 | |
(ironscheme) | |
(only (ironscheme core) eqv-hash)) | |
(define (clobber a b) | |
(+ (* a 33) b)) | |
(define (vector-fold-left combine nil vec) | |
(let ((len (vector-length vec))) | |
(let f ((i 0)(nil nil)) |