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
using BenchmarkDotNet.Attributes; | |
using System; | |
using System.Globalization; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
namespace ConsoleApp4 { | |
//[ShortRunJob] | |
[MemoryDiagnoser] | |
public class Program { |
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
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
using System; | |
using System.Globalization; | |
namespace ConsoleApp6 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Symbol Server] | |
"NoInternetProxy"=dword:00000001 | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Symbol Server] | |
"NoInternetProxy"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Symbol Server] | |
"NoInternetProxy"=dword:00000001 |
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
0:000> ~*e !clrstack | |
OS Thread Id: 0xda8 (0) | |
Child SP IP Call Site | |
000000ae6af7d9f0 00007ff84cdf6654 [GCFrame: 000000ae6af7d9f0] | |
000000ae6af7db38 00007ff84cdf6654 [HelperMethodFrame_1OBJ: 000000ae6af7db38] System.Threading.Monitor.ObjWait(Boolean, Int32, System.Object) | |
000000ae6af7dc60 00007ff7c39df7c3 System.Threading.ManualResetEventSlim.Wait(Int32, System.Threading.CancellationToken) | |
000000ae6af7dd00 00007ff7c39de74a System.Threading.Tasks.Task.SpinThenBlockingWait(Int32, System.Threading.CancellationToken) [E:\A\_work\62\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2978] | |
000000ae6af7dd70 00007ff7c39de2a5 System.Threading.Tasks.Task.InternalWaitCore(Int32, System.Threading.CancellationToken) [E:\A\_work\62\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2917] | |
000000ae6af7ddf0 00007ff7c39ddfa3 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task) [E:\A\_work\62\s\src\mscorlib\src\System\Runtime\CompilerServices\Task |
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
0:000> ~*e !clrstack | |
OS Thread Id: 0x2900 (0) | |
Child SP IP Call Site | |
0000006334b7d980 00007ffad3f36654 [GCFrame: 0000006334b7d980] | |
0000006334b7dac8 00007ffad3f36654 [HelperMethodFrame_1OBJ: 0000006334b7dac8] System.Threading.Monitor.ObjWait(Boolean, Int32, System.Object) | |
0000006334b7dbf0 00007ffa51482bd3 System.Threading.ManualResetEventSlim.Wait(Int32, System.Threading.CancellationToken) | |
0000006334b7dc90 00007ffa5148140a System.Threading.Tasks.Task.SpinThenBlockingWait(Int32, System.Threading.CancellationToken) [E:\A\_work\164\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2978] | |
0000006334b7dd00 00007ffa51480e05 System.Threading.Tasks.Task.InternalWaitCore(Int32, System.Threading.CancellationToken) [E:\A\_work\164\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2917] | |
0000006334b7dd80 00007ffa51480a23 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task) [E:\A\_work\164\s\src\mscorlib\src\System\Runtime\CompilerServices\ |
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
type Trace { | |
repeated Span spans | |
} | |
type Span { | |
required string name | |
required int startTime | |
required int endTime | |
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
using System; | |
public class Program | |
{ | |
public static void Main(params object[] args) | |
{ | |
Console.WriteLine("Hello Wau!"); | |
throw new Exception("wuhuu"); | |
Console.Write("asdf"); |
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
// cropAndStraightenBatch.jsx | |
// Copyright 2006-2008 | |
// Written by Jeffrey Tranberry | |
// Photoshop for Geeks Version 2.0 | |
/* | |
Description: | |
This script demonstates how to batch process | |
a folder of images using the crop and straighten command | |
*/ |