KNOWNFOLDERID | Guid | Default Windows path | CSIDL | SpecialFoler | Windows | *nix | Mac |
---|---|---|---|---|---|---|---|
FOLDERID_AccountPictures | {008ca0b1-55b4-4c56-b8a8-4de4b299d3be} | %APPDATA%\Microsoft\Windows\AccountPictures | - | ||||
FOLDERID_AddNewPrograms | {de61d971-5ebc-4f02-a3a9-6c82895e5c04} | Virtual | - |
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
AspNetCore.HealthChecks.Azure.Data.Tables,AspNetCore.HealthChecks.Azure.KeyVault.Secrets,AspNetCore.HealthChecks.Azure.Storage.Blobs,AspNetCore.HealthChecks.Azure.Storage.Queues,AspNetCore.HealthChecks.AzureServiceBus,AspNetCore.HealthChecks.Kafka,AspNetCore.HealthChecks.MongoDb,AspNetCore.HealthChecks.MySql,AspNetCore.HealthChecks.NpgSql,AspNetCore.HealthChecks.Rabbitmq,AspNetCore.HealthChecks.Redis,AspNetCore.HealthChecks.SqlServer,AWS.Messaging,AWSSDK.CloudFormation,AWSSDK.Core,AWSSDK.Extensions.NETCore.Setup,AWSSDK.SimpleNotificationService,AWSSDK.SQS,Azure.AI.OpenAI,Azure.Data.Tables,Azure.Extensions.AspNetCore.Configuration.Secrets,Azure.Identity,Azure.Messaging.EventHubs.Processor,Azure.Messaging.ServiceBus,Azure.Messaging.WebPubSub,Azure.Provisioning,Azure.Provisioning.AppConfiguration,Azure.Provisioning.ApplicationInsights,Azure.Provisioning.CognitiveServices,Azure.Provisioning.CosmosDB,Azure.Provisioning.EventHubs,Azure.Provisioning.KeyVault,Azure.Provisioning.OperationalInsights,Azure.Provisioning. |
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
| Row Labels | Count of 1 | | |
| ----------- | ---------- | | |
| 0 | 12647 | | |
| 1 | 62735 | | |
| 2 | 43475 | | |
| 3 | 27852 | | |
| 4 | 17408 | | |
| 5 | 11870 | | |
| 6 | 8788 | | |
| 7 | 7623 | |
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.Diagnostics; | |
using System.IO; | |
using System.IO.Compression; | |
namespace compressionspeed | |
{ | |
internal class Program | |
{ | |
static TimeSpan last = TimeSpan.Zero; | |
static long lastSize = 0; |
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.Diagnostics; | |
using System.Linq; | |
using System.Numerics; | |
internal class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
// Check for an off-by-one type error causing us to consistently not generate values |
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; | |
using System.ComponentModel; | |
using System.Runtime.InteropServices; | |
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Configs; | |
using BenchmarkDotNet.Environments; | |
using BenchmarkDotNet.Jobs; | |
using BenchmarkDotNet.Running; | |
[MemoryDiagnoser] |
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
// See https://aka.ms/new-console-template for more information | |
using System.Formats.Tar; | |
using Xunit; | |
public static class C | |
{ | |
public async static Task Main() | |
{ | |
List<Task> tasks = new(); |
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; | |
using System.Text.RegularExpressions; | |
Regex re = new Regex(@"\Gbar", RegexOptions.Compiled); | |
string fooBarString = @" bar"; | |
var match1 = re.Match(fooBarString, 1); | |
Console.WriteLine(String.Format("Match 1 sucess: {1} {0}", match1.Success, match1.Index)); | |
var match2 = re.Match(fooBarString, 1, fooBarString.Length-1); | |
Console.WriteLine(String.Format("Match 2 sucess: {1} {0}", match1.Success, match2.Index)); |
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.Runtime.Intrinsics; | |
using System.Runtime.Intrinsics.X86; | |
Vector128<byte> value = Vector128.Create((byte)0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
Vector128<byte> mask = Vector128.Create((byte)0b01000100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |
// PSHUFB -- result[i] = (mask[i] & 0x80) ? 0 : value[mask[i] & 15] | |
Vector128<byte> result1 = Ssse3.Shuffle(value, mask); |
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
"area-AssemblyLoader-coreclr", "@jeffschwMSFT", | |
"area-AssemblyLoader-mono", "@lambdageek", | |
"area-Build-mono", "@steveisok", | |
"area-Codegen-AOT-mono", "@SamMonoRT", | |
"area-CodeGen-coreclr", "@JulieLeeMSFT", | |
"area-Codegen-Interpreter-mono", "@SamMonoRT", | |
"area-Codegen-JIT-mono", "@SamMonoRT", | |
"area-CodeGen-LLVM-mono", "@SamMonoRT", | |
"area-Codegen-meta-mono", "@SamMonoRT", | |
"area-CoreLib-mono", "@marek-safar", |
NewerOlder