commit
stringlengths
40
40
subject
stringlengths
0
1.12k
message
stringlengths
11
14.5k
repos
stringlengths
8
11.5k
file_path
stringlengths
6
191
license
stringclasses
12 values
unix_time
int64
805M
1.66B
new_contents
stringlengths
14
20M
old_contents
stringlengths
1
20M
8e2f599d06c18326a5ec7f58661866c0e75202c8
fix: remove version parameter from StartBotLongPollClient method (2)
fix: remove version parameter from StartBotLongPollClient method (2)
Worldbeater/VkLibrary,Worldbeater/VkLibrary
VkApi.Wrapper/LongPolling/BaseLongPollClient.cs
mit
1,587,916,224
using System; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using VkApi.Wrapper.LongPolling.User; namespace VkApi.Wrapper.LongPolling { /// <summary> /// Shared logic for User and Bot long poll /// </summary> pu...
using System; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using VkApi.Wrapper.LongPolling.User; namespace VkApi.Wrapper.LongPolling { /// <summary> /// Shared logic for User and Bot long poll /// </summary> pu...
a1cf78d3fb9ac379a1ee4acffd0430c3eb35a761
Fix for AutoConnect method. (#255)
Fix for AutoConnect method. (#255) Prevents incompatible connections between node ports when creating a new node on connection drag.
Siccity/UnityNodeEditorCore
Scripts/Editor/NodeEditorAction.cs
mit
1,587,915,886
using System; using System.Collections.Generic; using System.Linq; using UnityEditor; using UnityEngine; using XNodeEditor.Internal; namespace XNodeEditor { public partial class NodeEditorWindow { public enum NodeActivity { Idle, HoldNode, DragNode, HoldGrid, DragGrid } public static Node...
using System; using System.Collections.Generic; using System.Linq; using UnityEditor; using UnityEngine; using XNodeEditor.Internal; namespace XNodeEditor { public partial class NodeEditorWindow { public enum NodeActivity { Idle, HoldNode, DragNode, HoldGrid, DragGrid } public static Node...
6a970710b770b0e1ff117e643aad641bb2f2dbc0
fix: remove version parameter from StartBotLongPollClient method
fix: remove version parameter from StartBotLongPollClient method
Worldbeater/VkLibrary,Worldbeater/VkLibrary
VkApi.Wrapper/Vkontakte.cs
mit
1,587,915,663
using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Newtonsoft.Json; using VkApi.Wrapper.Auth; using VkApi.Wrapper.LongPolling.Bot; using VkApi.Wrapper.LongPolling.User; using VkApi.Wrapper.Services; namespace VkApi.Wrapper { /// <summary> /// Vkontakte .NET API...
using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Newtonsoft.Json; using VkApi.Wrapper.Auth; using VkApi.Wrapper.LongPolling.Bot; using VkApi.Wrapper.LongPolling.User; using VkApi.Wrapper.Services; namespace VkApi.Wrapper { /// <summary> /// Vkontakte .NET AP...
a52f4251bad498ab6422908421abcb4af6c6e38b
Added more number tests
Added more number tests
verybadcat/CSharpMath,verybadcat/CSharpMath
CSharpMath.Evaluation.Tests/EvaluationTests.cs
mit
1,587,915,541
using System.Linq; using Xunit; using AngouriMath; namespace CSharpMath { using Atom; public class EvluationTests { MathList ParseLaTeX(string latex) => LaTeXParser.MathListFromLaTeX(latex).Match(list => list, e => throw new Xunit.Sdk.XunitException(e)); Entity ParseMath(string latex) => ...
using System.Linq; using Xunit; using AngouriMath; namespace CSharpMath { using Atom; public class EvluationTests { MathList ParseLaTeX(string latex) => LaTeXParser.MathListFromLaTeX(latex).Match(list => list, e => throw new Xunit.Sdk.XunitException(e)); Entity ParseMath(string latex) => ...
a527eb3a0c50a4770b6f747d9ec47ba24f0c7545
Adjusted mc profile so the background doesnt change unless the mod is installed
Adjusted mc profile so the background doesnt change unless the mod is installed
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Profiles/Minecraft/MinecraftProfile.cs
mit
1,587,915,334
using Aurora.EffectsEngine.Animations; using Aurora.Profiles.Minecraft.Layers; using Aurora.Settings; using Aurora.Settings.Layers; using Aurora.Settings.Overrides; using Aurora.Settings.Overrides.Logic; using Aurora.Settings.Overrides.Logic.Builder; using System; using System.Collections.Generic; using System.Drawing...
using Aurora.EffectsEngine.Animations; using Aurora.Profiles.Minecraft.Layers; using Aurora.Settings; using Aurora.Settings.Layers; using Aurora.Settings.Overrides; using Aurora.Settings.Overrides.Logic; using Aurora.Settings.Overrides.Logic.Builder; using System; using System.Collections.Generic; using System.Drawing...
34b6263b83fae226e3814378b8338e5e5937ff96
Fix .deb install Closes #90
Fix .deb install Closes #90
Deadpikle/NetSparkle
src/NetSparkle/NetSparkle.cs
mit
1,587,914,966
using System; using System.ComponentModel; using System.Net; using System.Net.Security; using System.Security.Cryptography.X509Certificates; using System.Threading; using NetSparkleUpdater.Interfaces; using System.IO; using System.Diagnostics; using System.Threading.Tasks; using NetSparkleUpdater.Enums; using System.Ne...
using System; using System.ComponentModel; using System.Net; using System.Net.Security; using System.Security.Cryptography.X509Certificates; using System.Threading; using NetSparkleUpdater.Interfaces; using System.IO; using System.Diagnostics; using System.Threading.Tasks; using NetSparkleUpdater.Enums; using System.Ne...
1a139ef8b7d13fa3a3fd19552ddc682700a23802
fix: correct event call on VideoCommentEdit
fix: correct event call on VideoCommentEdit
Worldbeater/VkLibrary,Worldbeater/VkLibrary
VkApi.Wrapper/LongPolling/Bot/BotLongPollClient.cs
mit
1,587,914,856
using System; using Newtonsoft.Json.Linq; using VkApi.Wrapper.LongPolling.Bot.Responses; using VkApi.Wrapper.Objects; namespace VkApi.Wrapper.LongPolling.Bot { /// <summary> /// Represents long poll client for bots. /// </summary> public class BotLongPollClient : BaseLongPollClient { /// <s...
using System; using Newtonsoft.Json.Linq; using VkApi.Wrapper.LongPolling.Bot.Responses; using VkApi.Wrapper.Objects; namespace VkApi.Wrapper.LongPolling.Bot { /// <summary> /// Represents long poll client for bots. /// </summary> public class BotLongPollClient : BaseLongPollClient { /// <...
446dd1e92ad44814cfaa6e68f70e52824b7a25b9
При ошибке компиляции надо уведомлять отладчик о выходе из процесса
При ошибке компиляции надо уведомлять отладчик о выходе из процесса
EvilBeaver/OneScript,EvilBeaver/OneScript,EvilBeaver/OneScript,EvilBeaver/OneScript,EvilBeaver/OneScript
src/ScriptEngine.HostedScript/HostedScriptEngine.cs
mpl-2.0
1,587,914,294
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------...
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------...
c084e055517e38cd67d260ff0ad1a65756036b4f
Better checking on if ReleaseNotesGrabber should check notes sig
Better checking on if ReleaseNotesGrabber should check notes sig
Deadpikle/NetSparkle
src/NetSparkle/ReleaseNotesGrabber.cs
mit
1,587,913,520
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Threading; using System.IO; using NetSparkleUpdater.Enums; using System.Net; namespace NetSparkleUpdater { /// <summary> /// Grabs release note...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Threading; using System.IO; using NetSparkleUpdater.Enums; using System.Net; namespace NetSparkleUpdater { /// <summary> /// Grabs release note...
18707d2203fc5f36481cf90fabb2d3fc999e365d
Make ReleaseNotesGrabber separator template and initial HTML protected
Make ReleaseNotesGrabber separator template and initial HTML protected
Deadpikle/NetSparkle
src/NetSparkle/ReleaseNotesGrabber.cs
mit
1,587,913,249
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Threading; using System.IO; using NetSparkleUpdater.Enums; using System.Net; namespace NetSparkleUpdater { /// <summary> /// Grabs release note...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Threading; using System.IO; using NetSparkleUpdater.Enums; using System.Net; namespace NetSparkleUpdater { /// <summary> /// Grabs release note...
c5bbb265a4635601c30a7c296a390ddc8d3e26f7
Consider 200 OK with empty body as a successful connection (#1015)
Consider 200 OK with empty body as a successful connection (#1015)
jstedfast/MailKit,jstedfast/MailKit,jamie-dainton/MailKit
MailKit/Net/Proxy/HttpProxyClient.cs
mit
1,587,913,047
// // HttpProxyClient.cs // // Author: Jeffrey Stedfast <jestedfa@microsoft.com> // // Copyright (c) 2013-2020 Xamarin Inc. (www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Sof...
// // HttpProxyClient.cs // // Author: Jeffrey Stedfast <jestedfa@microsoft.com> // // Copyright (c) 2013-2020 Xamarin Inc. (www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Sof...
2163b8143ff123ecda40168a512360d5408abb76
Register trivial console listeners last, so that their output threads more naturally with warnings logged for other listeners that are throwing exceptions of their own.
Register trivial console listeners last, so that their output threads more naturally with warnings logged for other listeners that are throwing exceptions of their own.
fixie/fixie,fixie/fixie
src/Fixie/Internal/AssemblyRunner.cs
mit
1,587,912,134
namespace Fixie.Internal { using System; using System.Collections.Generic; using System.IO; using System.IO.Pipes; using System.Linq; using System.Reflection; using System.Xml.Linq; using Cli; using Listeners; using static System.Console; public class AssemblyRunner { ...
namespace Fixie.Internal { using System; using System.Collections.Generic; using System.IO; using System.IO.Pipes; using System.Linq; using System.Reflection; using System.Xml.Linq; using Cli; using Listeners; using static System.Console; public class AssemblyRunner { ...
3317d0409255d487fa791017e5f19003ace26a50
Add even more known HLVR entity types (#242)
Add even more known HLVR entity types (#242) * Add even more known HLVR entity types * Update EntityLumpKnownKeys.cs * Update EntityLumpKnownKeys.cs * Update EntityLumpKnownKeys.cs
SteamDatabase/ValveResourceFormat
ValveResourceFormat/Utils/EntityLumpKnownKeys.cs
mit
1,587,911,985
using System.Collections.Generic; namespace ValveResourceFormat.Utils { public class EntityLumpKnownKeys { public Dictionary<uint, string> Fields { get; } = new Dictionary<uint, string>(); public EntityLumpKnownKeys() { // grep -Eohr "^\s*([a-zA-Z0-9\w_-]+)\s*\(" **/*.fgd |...
using System.Collections.Generic; namespace ValveResourceFormat.Utils { public class EntityLumpKnownKeys { public Dictionary<uint, string> Fields { get; } = new Dictionary<uint, string>(); public EntityLumpKnownKeys() { // grep -Eohr "^\s*([a-zA-Z0-9\w_-]+)\s*\(" **/*.fgd |...
d73deb83726a9d879e8aafb5b487ef140650e03f
Implement IRandom interface of latest NBitcoin
Implement IRandom interface of latest NBitcoin
Nethereum/Nethereum,Nethereum/Nethereum,Nethereum/Nethereum,Nethereum/Nethereum
src/Nethereum.HDWallet/SecureRandom.cs
mit
1,587,910,914
using NBitcoin; namespace Nethereum.HdWallet { public class SecureRandom : IRandom { private static readonly Org.BouncyCastle.Security.SecureRandom SecureRandomInstance = new Org.BouncyCastle.Security.SecureRandom(); public void GetBytes(byte[] output) { Secure...
using NBitcoin; namespace Nethereum.HdWallet { public class SecureRandom : IRandom { private static readonly Org.BouncyCastle.Security.SecureRandom SecureRandomInstance = new Org.BouncyCastle.Security.SecureRandom(); public void GetBytes(byte[] output) { Secure...
1088dde538ff72a7918cdd065321398577279717
draft for a possible error handling flow
draft for a possible error handling flow
nunit/nunit-console,nunit/nunit-console,nunit/nunit-console,nunit/nunit-console
src/NUnitEngine/nunit.engine/Services/TestAgency.cs
mit
1,587,910,430
// *********************************************************************** // Copyright (c) 2011-2016 Charlie Poole, Rob Prouse // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without r...
// *********************************************************************** // Copyright (c) 2011-2016 Charlie Poole, Rob Prouse // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without r...
f371f01c4c83d96f04131374ffeff22220acd29e
Add a test for all alphabets
Add a test for all alphabets
verybadcat/CSharpMath,verybadcat/CSharpMath
CSharpMath.Evaluation.Tests/EvaluationTests.cs
mit
1,587,910,391
using System.Linq; using Xunit; using AngouriMath; namespace CSharpMath { using Atom; public class EvluationTests { MathList ParseLaTeX(string latex) => LaTeXParser.MathListFromLaTeX(latex).Match(list => list, e => throw new Xunit.Sdk.XunitException(e)); Entity ParseMath(string latex) => ...
using System.Linq; using Xunit; using AngouriMath; namespace CSharpMath { using Atom; public class EvluationTests { MathList ParseLaTeX(string latex) => LaTeXParser.MathListFromLaTeX(latex).Match(list => list, e => throw new Xunit.Sdk.XunitException(e)); Entity ParseMath(string latex) => ...
8e81365d297ef31cd5afd75d08ff75d75bc04e70
Optimization
Optimization
tigrouind/LifeDISA,tigrouind/LifeDISA
MemoryViewer/MemoryViewer/Program.cs
mit
1,587,910,138
using System; using System.Diagnostics; using System.Linq; using SDL2; using Shared; namespace MemoryViewer { class Program { public static int Main(string[] args) { const int RESX = 320; const int RESY = 240; int winx = GetArgument(args, "-screen-width") ?? 320; int winy = GetArgument(args, "-scre...
using System; using System.Diagnostics; using System.Linq; using SDL2; using Shared; namespace MemoryViewer { class Program { public static int Main(string[] args) { const int RESX = 320; const int RESY = 240; int winx = GetArgument(args, "-screen-width") ?? 320; int winy = GetArgument(args, "-scre...
f8aafcd93710760593524afc5440693a33d4f2eb
Fix stable 7.7.2 code tidyups
Fix stable 7.7.2 code tidyups
ShammyLevva/FTAnalyzer,ShammyLevva/FTAnalyzer
FTAnalyser/GlobalSuppressions.cs
apache-2.0
1,587,909,162
using System.Diagnostics.CodeAnalysis; [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as ...
using System.Diagnostics.CodeAnalysis; [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as ...
7fc48e8a789a8ea99a1c0bfc2c33c5246975d87b
Fixing code for latest ControlzEx version
Fixing code for latest ControlzEx version
fluentribbon/Fluent.Ribbon,punker76/Fluent.Ribbon,fluentribbon/Fluent.Ribbon,fluentribbon/Fluent.Ribbon,punker76/Fluent.Ribbon
Fluent.Ribbon.Showcase/Helpers/ThemeHelper.cs
mit
1,587,908,778
namespace FluentTest.Helpers { using System; using System.IO; using System.Linq; using System.Windows; using System.Windows.Markup; using System.Windows.Media; using System.Xml; using ControlzEx.Theming; using Fluent; using Fluent.Theming; public static class ThemeHelper ...
namespace FluentTest.Helpers { using System; using System.IO; using System.Linq; using System.Windows; using System.Windows.Markup; using System.Windows.Media; using System.Xml; using ControlzEx.Theming; using Fluent; using Fluent.Theming; public static class ThemeHelper ...
da9260bee91347ea6b451ae5cb2e17232b97e90e
Use explicit structure layout to reduce memory size of `Value` type.
Use explicit structure layout to reduce memory size of `Value` type.
r3c/cottle,r3c/cottle
src/Cottle/Value.cs
mit
1,587,908,017
using System; using System.Collections.Generic; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using Cottle.Evaluables; using Cottle.Functions; using Cottle.Maps; using Cottle.Values; namespace Cottle { public readonly struct Value : ICom...
using System; using System.Collections.Generic; using System.Globalization; using System.Reflection; using System.Text; using Cottle.Evaluables; using Cottle.Functions; using Cottle.Maps; using Cottle.Values; namespace Cottle { public readonly struct Value : IComparable<Value>, IEquatable<Value> ...
9c9e0c84c6890d21f14911b5ea809601154a168d
[Modify] Polish it
[Modify] Polish it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,587,908,009
#region License /* * WebHeaderCollection.cs * * This code is derived from WebHeaderCollection.cs (System.Net) of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com) * Copyright (c) 2007 Novell, Inc. (http://www.novell.com) * Copyright (c) 2012-...
#region License /* * WebHeaderCollection.cs * * This code is derived from WebHeaderCollection.cs (System.Net) of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com) * Copyright (c) 2007 Novell, Inc. (http://www.novell.com) * Copyright (c) 2012-...
a9cc05b52a99887f8323bb726eed0b9b801be5d9
Fix held item not dissapearing if switching to empty slot
Fix held item not dissapearing if switching to empty slot
kennyvv/Alex,kennyvv/Alex,kennyvv/Alex
src/Alex/Entities/Entity.cs
mpl-2.0
1,587,907,365
using System; using System.Linq; using Alex.API; using Alex.API.Entities; using Alex.API.Graphics; using Alex.API.Graphics.Typography; using Alex.API.Network; using Alex.API.Utils; using Alex.Blocks.Minecraft; using Alex.Graphics.Models.Entity; using Alex.Graphics.Models.Items; using Alex.Utils; using Alex.Worlds; usi...
using System; using System.Linq; using Alex.API; using Alex.API.Entities; using Alex.API.Graphics; using Alex.API.Graphics.Typography; using Alex.API.Network; using Alex.API.Utils; using Alex.Blocks.Minecraft; using Alex.Graphics.Models.Entity; using Alex.Graphics.Models.Items; using Alex.Utils; using Alex.Worlds; usi...
1f8bad5a7d4094d0c73db25c8fb8ee8d98733462
Temporarily simulate consistently failing POSTs for test results, so that we can experiment with better error handling in subsequent commits.
Temporarily simulate consistently failing POSTs for test results, so that we can experiment with better error handling in subsequent commits.
fixie/fixie,fixie/fixie
src/Fixie/Internal/Listeners/AzureListener.cs
mit
1,587,907,065
namespace Fixie.Internal.Listeners { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Runtime.Versioning; using System.Text; using Internal; using s...
namespace Fixie.Internal.Listeners { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Runtime.Versioning; using System.Text; using Internal; using s...
5ade2fba76ce21dc20b33e13af812c2d4e0feb0c
AzureListener converts unsuccessful HTTP status codes into exceptions, so that subsequent commits can handle those failures with the same mechanism as other more fundamental HttpClient failures.
AzureListener converts unsuccessful HTTP status codes into exceptions, so that subsequent commits can handle those failures with the same mechanism as other more fundamental HttpClient failures.
fixie/fixie,fixie/fixie
src/Fixie/Internal/Listeners/AzureListener.cs
mit
1,587,906,803
namespace Fixie.Internal.Listeners { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Runtime.Versioning; using System.Text; using Internal; using s...
namespace Fixie.Internal.Listeners { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Runtime.Versioning; using System.Text; using Internal; using s...
3a27814b2447d3be17ab6111334c065b7cc17230
optimize FluentConfigInterceptorResolver
optimize FluentConfigInterceptorResolver
WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common
src/WeihanLi.Common/Aspect/FluentConfigInterceptorResolver.cs
mit
1,587,906,760
using System; using System.Collections.Generic; using WeihanLi.Common.Helpers; namespace WeihanLi.Common.Aspect { public class FluentConfigInterceptorResolver : IInterceptorResolver { public static readonly IInterceptorResolver Instance = new FluentConfigInterceptorResolver(); private FluentC...
using System.Collections.Generic; using WeihanLi.Common.Helpers; namespace WeihanLi.Common.Aspect { public class FluentConfigInterceptorResolver : IInterceptorResolver { public static readonly IInterceptorResolver Instance = new FluentConfigInterceptorResolver(); private FluentConfigIntercept...
77b71d04f205ddd952e36bee8e0826dcbcd89799
Setting the shard Id for later
Setting the shard Id for later
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Program.cs
agpl-3.0
1,587,906,013
using System; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Serilog; using Serilog.Events; using SoraBot.Data; using SoraBot.Services.Utils; namespace SoraBot.WebApi { public class Program { ...
using System; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Serilog; using Serilog.Events; using SoraBot.Data; namespace SoraBot.WebApi { public class Program { public static void Main(s...
01fd849c6fafd20765d9d8f1f17626276f564e67
cancelation for remove result
cancelation for remove result
Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox
Wox/ViewModel/MainViewModel.cs
mit
1,587,905,865
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; using NHotkey; using NHotkey.Wpf; using NLog; using Wox.Core.Plugin; using Wox.Core.Resource; ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; using NHotkey; using NHotkey.Wpf; using NLog; using Wox.Core.Plugin; using Wox.Core.Resource; ...
d72aa3b8232db37ae5d8600dc97408605dc39962
update AttributeInterceptorResolver
update AttributeInterceptorResolver
WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common
src/WeihanLi.Common/Aspect/AttributeInterceptorResolver.cs
mit
1,587,905,647
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using WeihanLi.Common.Helpers; using WeihanLi.Extensions; namespace WeihanLi.Common.Aspect { public abstract class AbstractInterceptor : Attribute, IInterceptor { public abstract T...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using WeihanLi.Common.Helpers; using WeihanLi.Extensions; namespace WeihanLi.Common.Aspect { public abstract class AbstractInterceptor : Attribute, IInterceptor { public abstract T...
019fe9c3ab001993c1fdf37591ccc4365421314c
empty string check
empty string check
cadon/ARKStatsExtractor
ARKBreedingStats/CreatureInfoInput.cs
mit
1,587,902,632
using ARKBreedingStats.Library; using ARKBreedingStats.species; using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Windows.Forms; namespace ARKBreedingStats { public partial class CreatureInfoInput : UserControl { public event Action<CreatureInfoInput...
using ARKBreedingStats.Library; using ARKBreedingStats.species; using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Windows.Forms; namespace ARKBreedingStats { public partial class CreatureInfoInput : UserControl { public event Action<CreatureInfoInput...
8d9790769ff3515d4d3d83d91bcec7136950205e
disable more logs
disable more logs
Wox-launcher/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox
Wox.Infrastructure/Image/ImageLoader.cs
mit
1,587,901,541
using System; using System.IO; using System.Windows.Media; using System.Windows.Media.Imaging; using Microsoft.WindowsAPICodePack.Shell; using NLog; using Wox.Infrastructure.Logger; namespace Wox.Infrastructure.Image { public static class ImageLoader { private static readonly string[] ImageExtensions...
using System; using System.IO; using System.Windows.Media; using System.Windows.Media.Imaging; using Microsoft.WindowsAPICodePack.Shell; using NLog; using Wox.Infrastructure.Logger; namespace Wox.Infrastructure.Image { public static class ImageLoader { private static readonly string[] ImageExtensions...
c90b8ce615dfebd1cf3292a862577fa93c1cc86e
disable some log to speedup debug speed
disable some log to speedup debug speed
Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,587,901,532
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
afd0c6493238d1af1e14f43e5466ba5cb1ea576a
Fix cli error when no filter expression is specified
Fix cli error when no filter expression is specified
Norbyte/lslib,Norbyte/lslib,Norbyte/lslib
Divine/CLI/CommandLineActions.cs
mit
1,587,896,682
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using Alphaleonis.Win32.Filesystem; using LSLib.LS; using LSLib.LS.Enums; namespace Divine.CLI { internal class CommandLineActions { public static string SourcePath; public sta...
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using Alphaleonis.Win32.Filesystem; using LSLib.LS; using LSLib.LS.Enums; namespace Divine.CLI { internal class CommandLineActions { public static string SourcePath; public sta...
b48e1e6e5195e2c08d62826b94e994f2922b3cee
Update members in E2E tests
Update members in E2E tests
duracellko/planningpoker4azure,duracellko/planningpoker4azure,duracellko/planningpoker4azure
test/Duracellko.PlanningPoker.E2ETest/ClientTest.cs
mit
1,587,895,341
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Duracellko.PlanningPoker.E2ETest.Server; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; namespace Duracellko.PlanningPoker.E2ETest { public class ClientTest { private stat...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Duracellko.PlanningPoker.E2ETest.Server; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; namespace Duracellko.PlanningPoker.E2ETest { public class ClientTest { private stat...
cc134289398804461c75d4072023b261c9ef952b
Update WeightedLoadBalance.cs
Update WeightedLoadBalance.cs
hprose/hprose-dotnet
src/Hprose.RPC.Plugins/LoadBalance/WeightedLoadBalance.cs
mit
1,587,894,486
/*--------------------------------------------------------*\ | | | hprose | | | | Official WebSite: https://hprose.com | | ...
/*--------------------------------------------------------*\ | | | hprose | | | | Official WebSite: https://hprose.com | | ...
148bd766cbe36ce90d6e33e2de4fdc65ebab8de3
Ref code cleaning
Ref code cleaning
DanieleScipioni/TestApp
TestAppUWP.AppShell/Samples/Animations/DropShadowStuff/Sun.cs
mit
1,587,892,240
using System.Collections.Generic; using System.Numerics; using System.Threading.Tasks; using TestAppUWP.AppShell.Core; using Windows.Foundation; using Windows.UI; using Windows.UI.Composition; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Hosting; using Windows.UI.Xaml.Media; using Windo...
using System.Collections.Generic; using System.Numerics; using System.Threading.Tasks; using TestAppUWP.AppShell.Core; using Windows.Foundation; using Windows.UI; using Windows.UI.Composition; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Hosting; using Windows.UI.Xaml.Media; using Windo...
56043bddd770fa920ca0295b77539520f04ef0d7
Fix fill _spriteVisualByUiElement before attach event handlers
Fix fill _spriteVisualByUiElement before attach event handlers
DanieleScipioni/TestApp
TestAppUWP.AppShell/Samples/Animations/DropShadowStuff/Sun.cs
mit
1,587,892,240
using System.Collections.Generic; using System.Numerics; using System.Threading.Tasks; using TestAppUWP.AppShell.Core; using Windows.Foundation; using Windows.UI; using Windows.UI.Composition; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Hosting; using Windows.UI.Xaml.Media; using Windo...
using System.Collections.Generic; using System.Numerics; using System.Threading.Tasks; using TestAppUWP.AppShell.Core; using Windows.Foundation; using Windows.UI; using Windows.UI.Composition; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Hosting; using Windows.UI.Xaml.Media; using Windo...
5874a3af798d452f5edaaa9efe476dcc777d4a7f
socket_recvfrom
socket_recvfrom
iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept
src/Peachpie.Library.Network/Sockets.cs
apache-2.0
1,587,890,977
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
efe4c0bb2d507552f329831a6a633575210d44aa
Updated BuiltInExtensions SDK methods
Updated BuiltInExtensions SDK methods
JosefNemec/Playnite,JosefNemec/Playnite,JosefNemec/Playnite
source/PlayniteSDK/BuiltInExtensions.cs
mit
1,587,890,149
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Playnite.SDK { /// <summary> /// Represents built-in plugin distributed by default with Playnite installation. /// </summary> public enum BuiltinExtension { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Playnite.SDK { /// <summary> /// Represents built-in plugin distributed by default with Playnite installation. /// </summary> public enum BuiltinExtension { ...
ae9c9591d78fa47be938dab5731c47f379d3d9db
socket_recv
socket_recv
iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie
src/Peachpie.Library.Network/Sockets.cs
apache-2.0
1,587,889,725
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
c5796671b0aa6e23eb10e951afac9b601bbc735b
socket_send, socket_sendto
socket_send, socket_sendto
iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie
src/Peachpie.Library.Network/Sockets.cs
apache-2.0
1,587,889,137
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
19c2ffec988b468290636dde12abcf83095548bb
Remove deleted dependency
Remove deleted dependency
xkproject/Orchard2,OrchardCMS/Brochard,OrchardCMS/Brochard,stevetayloruk/Orchard2,petedavis/Orchard2,xkproject/Orchard2,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,OrchardCMS/Broch...
src/OrchardCore.Modules/OrchardCore.Resources/ResourceManifest.cs
bsd-3-clause
1,587,887,658
using OrchardCore.ResourceManagement; namespace OrchardCore.Resources { public class ResourceManifest : IResourceManifestProvider { public void BuildManifests(IResourceManifestBuilder builder) { var manifest = builder.Add(); manifest .DefineScript("jQuer...
using OrchardCore.ResourceManagement; namespace OrchardCore.Resources { public class ResourceManifest : IResourceManifestProvider { public void BuildManifests(IResourceManifestBuilder builder) { var manifest = builder.Add(); manifest .DefineScript("jQuer...
598caf8deb6ed63b153f6b5d43c41ff8d13eaafa
Correct sequencing expectations for test columns.
Correct sequencing expectations for test columns.
sjp/Schematic,sjp/Schematic,sjp/Schematic
src/SJP.Schematic.PostgreSql.Tests/Integration/Versions/V10/PostgreSqlRelationalDatabaseTableProviderTests.Columns.cs
mit
1,587,886,854
using System.Linq; using System.Threading.Tasks; using NUnit.Framework; using SJP.Schematic.Tests.Utilities; namespace SJP.Schematic.PostgreSql.Tests.Integration.Versions.V10 { internal partial class PostgreSqlRelationalDatabaseTableProviderTests : PostgreSql10Test { [Test] public async Task C...
using System.Linq; using System.Threading.Tasks; using NUnit.Framework; using SJP.Schematic.Tests.Utilities; namespace SJP.Schematic.PostgreSql.Tests.Integration.Versions.V10 { internal partial class PostgreSqlRelationalDatabaseTableProviderTests : PostgreSql10Test { [Test] public async Task C...
ed198f91ab3966d3cbee71813b5b98ddea6f3f30
sockets MSG_ constants
sockets MSG_ constants
iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie
src/Peachpie.Library.Network/Sockets.cs
apache-2.0
1,587,886,627
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
using System; using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.IO; using System.Net; using System.Net.Sockets; using System.Text; using Microsoft.Extensions.ObjectPool; using Pchp.Core; using Pchp.Core.Resources; using Pchp.Library.Strea...
7bbc8753896a4cea7d8e9e2713d813c620bfe494
PluginsDir is added
PluginsDir is added
oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,dguder/wixsharp,oleg-shilo/wixsharp
Source/src/WixSharp/Nsis/NsisBootstrapper.cs
mit
1,587,886,520
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using WixSharp.CommonTasks; using IO = System.IO; using Reflection = System.Reflection; namespace WixSharp.Nsis { /// <summary> /// Defines native (un-managed) bootstrapper. The bootstra...
using System; using System.Linq; using System.Text; using System.Text.RegularExpressions; using WixSharp.CommonTasks; using IO = System.IO; using Reflection = System.Reflection; namespace WixSharp.Nsis { /// <summary> /// Defines native (un-managed) bootstrapper. The bootstrapper is created by the NSIS instal...
5de2805cfa1ba77f16efbea80c691b379e887459
Whitespace fixes
Whitespace fixes
textamina/scriban,lunet-io/scriban
src/Scriban/Functions/DateTimeFunctions.cs
bsd-2-clause
1,587,886,156
// Copyright (c) Alexandre Mutel. All rights reserved. // Licensed under the BSD-Clause 2 license. // See license.txt file in the project root for full license information. using System; using System.Collections.Generic; using System.Globalization; using System.Text; using System.Threading.Tasks; using Scriban.Runtime;...
// Copyright (c) Alexandre Mutel. All rights reserved. // Licensed under the BSD-Clause 2 license. // See license.txt file in the project root for full license information. using System; using System.Collections.Generic; using System.Globalization; using System.Text; using System.Threading.Tasks; using Scriban.Runtime...
bd31ec9d684d50c6176c183493f3553ddbb99e90
add generic IComparable
add generic IComparable
splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net
IPTables.Net/Iptables/DataTypes/IpCidr.cs
apache-2.0
1,587,886,151
using System; using System.Net; using System.Net.Sockets; using IPTables.Net.Exceptions; using IPTables.Net.Supporting; namespace IPTables.Net.Iptables.DataTypes { public struct IpCidr : IEquatable<IpCidr>, IComparable<IpCidr>, IComparable { public static IpCidr Any = new IpCidr(IPAddress.Any, 0); ...
using System; using System.Net; using System.Net.Sockets; using IPTables.Net.Exceptions; using IPTables.Net.Supporting; namespace IPTables.Net.Iptables.DataTypes { public struct IpCidr : IEquatable<IpCidr>, IComparable<IpCidr> { public static IpCidr Any = new IpCidr(IPAddress.Any, 0); public ...
be6ac71267a63b7cf1059c263db478cc107f071f
382: LayoutHint
382: LayoutHint
LayoutFarm/PixelFarm
src/PixelFarm/PaintLab.RenderTree/2_RenderElement/5_RenderElementCollection.cs
bsd-2-clause
1,587,886,101
//Apache2, 2014-present, WinterDev using System.Collections.Generic; using PixelFarm.Drawing; namespace LayoutFarm.RenderBoxes { #if DEBUG public struct dbugLayoutInfo { public readonly int dbugLayerId; public dbugLayoutInfo(int dbugLayerId) => this.dbugLayerId = dbugLayerId; } #endif ...
//Apache2, 2014-present, WinterDev using System.Collections.Generic; using PixelFarm.Drawing; namespace LayoutFarm.RenderBoxes { #if DEBUG public struct dbugLayoutInfo { public readonly int dbugLayerId; public dbugLayoutInfo(int dbugLayerId) => this.dbugLayerId = dbugLayerId; } #endif ...
b9b90e799520a3adb49814ab43a899ccea804d6a
Update ObjectHierarchySequenceSites.cs
Update ObjectHierarchySequenceSites.cs
OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core
Core/OfficeDevPnP.Core/Framework/Provisioning/ObjectHandlers/ObjectHierarchySequenceSites.cs
mit
1,587,885,035
#if !ONPREMISES using Microsoft.Online.SharePoint.TenantAdministration; using Microsoft.SharePoint.Client; using OfficeDevPnP.Core.Diagnostics; using OfficeDevPnP.Core.Entities; using OfficeDevPnP.Core.Framework.Provisioning.Model; using OfficeDevPnP.Core.Framework.Provisioning.Model.Configuration; using OfficeDevPnP....
#if !ONPREMISES using Microsoft.Online.SharePoint.TenantAdministration; using Microsoft.SharePoint.Client; using OfficeDevPnP.Core.Diagnostics; using OfficeDevPnP.Core.Entities; using OfficeDevPnP.Core.Framework.Provisioning.Model; using OfficeDevPnP.Core.Framework.Provisioning.Model.Configuration; using OfficeDevPnP....
b9a86129dd5a8332e71f2106b81d509d8de4906c
Update ObjectHierarchySequenceSites.cs
Update ObjectHierarchySequenceSites.cs
OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core
Core/OfficeDevPnP.Core/Framework/Provisioning/ObjectHandlers/ObjectHierarchySequenceSites.cs
mit
1,587,884,995
#if !ONPREMISES using Microsoft.Online.SharePoint.TenantAdministration; using Microsoft.SharePoint.Client; using OfficeDevPnP.Core.Diagnostics; using OfficeDevPnP.Core.Entities; using OfficeDevPnP.Core.Framework.Provisioning.Model; using OfficeDevPnP.Core.Framework.Provisioning.Model.Configuration; using OfficeDevPnP....
#if !ONPREMISES using Microsoft.Online.SharePoint.TenantAdministration; using Microsoft.SharePoint.Client; using OfficeDevPnP.Core.Diagnostics; using OfficeDevPnP.Core.Entities; using OfficeDevPnP.Core.Framework.Provisioning.Model; using OfficeDevPnP.Core.Framework.Provisioning.Model.Configuration; using OfficeDevPnP....
819709abf15ed27e1171d6e7c50158cb0f329e98
store result "last" as csv
store result "last" as csv
cbries/utilities,cbries/utilities,cbries/utilities,cbries/utilities,cbries/utilities,cbries/utilities
QueryStockData/QueryStockData/Program.cs
mit
1,587,883,287
/* Copyright (c) 2020 Christian Benjamin Ries Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,...
/* Copyright (c) 2020 Christian Benjamin Ries Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,...
09521fd77399c32bce3c3ec970f0446f9fd96b8e
Typos are corrected
Typos are corrected
oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,dguder/wixsharp,oleg-shilo/wixsharp
Source/src/WixSharp/Nsis/Package.cs
mit
1,587,880,109
namespace WixSharp.Nsis { /// <summary> /// Container class for common members of the <see cref="NsisBootstrapper"/> packages. /// </summary> public abstract class Package { /// <summary> /// Gets or sets the setup package file name. /// Executables and .ps1, .bat, .cmd, .vb...
namespace WixSharp.Nsis { /// <summary> /// Container class for common members of the <see cref="NsisBootstrapper"/> packages. /// </summary> public abstract class Package { /// <summary> /// Gets or sets the setup package file name. /// Executables and .ps1, .bat, .cmd, .vb...
d22f5857e44a223d04f38de1f8f5b692dd53bf6b
load multiple times instead of one
load multiple times instead of one
qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox,Wox-launcher/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.BrowserBookmark/ChromeBookmarks.cs
mit
1,587,879,979
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Wox.Plugin.BrowserBookmark { public class ChromeBookmarks { private List<Bookmark> bookmarks = new List<Bookmark>(); public List<Bookmark> GetBookmarks() { ...
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Wox.Plugin.BrowserBookmark { public class ChromeBookmarks { private List<Bookmark> bookmarks = new List<Bookmark>(); public List<Bookmark> GetBookmarks() { ...
87e7704069cf7707258f40fab1f220f3d6974929
addrange directly
addrange directly
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.BrowserBookmark/Commands/Bookmarks.cs
mit
1,587,879,242
using System.Collections.Generic; using System.Linq; using Wox.Infrastructure; namespace Wox.Plugin.BrowserBookmark.Commands { internal static class Bookmarks { internal static bool MatchProgram(Bookmark bookmark, string queryString) { if (StringMatcher.FuzzySearch(queryString, boo...
using System.Collections.Generic; using System.Linq; using Wox.Infrastructure; namespace Wox.Plugin.BrowserBookmark.Commands { internal static class Bookmarks { internal static bool MatchProgram(Bookmark bookmark, string queryString) { if (StringMatcher.FuzzySearch(queryString, boo...
55f2d7ed63c1368fe2a8537f8c17280910b69cdf
Cache most recent block (#1592)
Cache most recent block (#1592)
AntShares/AntShares
src/neo/Ledger/Blockchain.cs
mit
1,587,878,553
using Akka.Actor; using Akka.Configuration; using Neo.Cryptography.ECC; using Neo.IO; using Neo.IO.Actors; using Neo.IO.Caching; using Neo.Network.P2P; using Neo.Network.P2P.Payloads; using Neo.Persistence; using Neo.Plugins; using Neo.SmartContract; using Neo.SmartContract.Native; using Neo.VM; using System; using Sys...
using Akka.Actor; using Akka.Configuration; using Neo.Cryptography.ECC; using Neo.IO; using Neo.IO.Actors; using Neo.IO.Caching; using Neo.Network.P2P; using Neo.Network.P2P.Payloads; using Neo.Persistence; using Neo.Plugins; using Neo.SmartContract; using Neo.SmartContract.Native; using Neo.VM; using System; using Sys...
dababde0a8b99a4c01cc9ed4a232e1b5f82e25bc
remove a suppression no longer needed
remove a suppression no longer needed
acple/ParsecSharp
ParsecSharp/GlobalSuppressions.cs
mit
1,587,877,645
using System.Diagnostics.CodeAnalysis; [assembly: SuppressMessage("Style", "IDE0071:Simplify interpolation", Justification = "IDE0071 considerably decreases the performance of string construction")]
using System.Diagnostics.CodeAnalysis; [assembly: SuppressMessage("Style", "IDE0071:Simplify interpolation", Justification = "IDE0071 considerably decreases the performance of string construction")] [assembly: SuppressMessage("Style", "IDE0071WithoutSuggestion")]
e00ce1e5cbd3549c010cbe0e048ecb397fb7fc31
upgrade api
upgrade api
qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.BrowserBookmark/Main.cs
mit
1,587,877,000
using System.Collections.Generic; using System.Linq; using System.Windows.Controls; using Wox.Infrastructure.Storage; using Wox.Plugin.BrowserBookmark.Commands; using Wox.Plugin.BrowserBookmark.Models; using Wox.Plugin.BrowserBookmark.Views; using Wox.Infrastructure; namespace Wox.Plugin.BrowserBookmark { public ...
using System.Collections.Generic; using System.Linq; using System.Windows.Controls; using Wox.Infrastructure.Storage; using Wox.Plugin.BrowserBookmark.Commands; using Wox.Plugin.BrowserBookmark.Models; using Wox.Plugin.BrowserBookmark.Views; using Wox.Infrastructure; namespace Wox.Plugin.BrowserBookmark { public ...
0f92a91bf414b27bd44328dae03d92a9c2a88620
Added right windows key
Added right windows key
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Devices/Asus/AuraSyncKeyboardDevice.cs
mit
1,587,876,226
using System; using System.Collections.Generic; using System.Drawing; using AuraServiceLib; namespace Aurora.Devices.Asus { public class AuraSyncKeyboardDevice : AuraSyncDevice { private readonly IAuraSyncKeyboard keyboard; private readonly Dictionary<ushort, IAuraRgbKey> idToKey ...
using System; using System.Collections.Generic; using System.Drawing; using AuraServiceLib; namespace Aurora.Devices.Asus { public class AuraSyncKeyboardDevice : AuraSyncDevice { private readonly IAuraSyncKeyboard keyboard; private readonly Dictionary<ushort, IAuraRgbKey> idToKey ...
f3ac2e9c476a2df0120a01c97d48374c7890d8ee
using linq and json parser
using linq and json parser performance improved and easy to understand
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.BrowserBookmark/ChromeBookmarks.cs
mit
1,587,875,925
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Wox.Plugin.BrowserBookmark { public class ChromeBookmarks { private List<Bookmark> bookmarks = new List<Bookmark>(); public List<Bookmark> GetBookmarks() { ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; namespace Wox.Plugin.BrowserBookmark { public class ChromeBookmarks { private List<Bookmark> bookmarks = new List<Bookmark>(); public List<Bookmark> GetBookmarks() ...
3bcb70f137cff36ec933ee01ab3401cbd750a690
Shuffle the results from the claims command
Shuffle the results from the claims command
samfun123/KtaneTwitchPlays
TwitchPlaysAssembly/Src/Commands/GameCommands.cs
mit
1,587,875,684
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using Assets.Scripts.Props; /// <summary>Commands that can be run during a game.</summary> static class GameCommands { #region Commands during the game /// <name>Cancel</name> /// <syn...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using Assets.Scripts.Props; /// <summary>Commands that can be run during a game.</summary> static class GameCommands { #region Commands during the game /// <name>Cancel</name> /// <syn...
343b17df13145a06406a25e88e66faac1759dce6
Fix credential list binding
Fix credential list binding
webprofusion/Certify
src/Certify.UI/ViewModel/ChallengeConfigItemViewModel.cs
mit
1,587,875,197
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Threading.Tasks; using System.Windows.Controls; using Certify.Models; using Certify.Models.Config; namespace Certify.UI.ViewModel { public class ChallengeConfigItemViewModel : BindableBase { ...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Threading.Tasks; using System.Windows.Controls; using Certify.Models; using Certify.Models.Config; namespace Certify.UI.ViewModel { public class ChallengeConfigItemViewModel : BindableBase { ...
4f3a7c5d7d4a8d21e7a87c4150df7c895d450485
Fix PoshAcme script arguments
Fix PoshAcme script arguments
webprofusion/Certify
src/Certify.Core/Management/Challenges/DNS/DnsProviderPoshACME.cs
mit
1,587,875,150
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using Certify.Management; using Certify.Models.Config; using Certify.Models.Providers; using Microsoft.ApplicationInsights.DataContracts; namespace Certify.Core.Management.Chal...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using Certify.Management; using Certify.Models.Config; using Certify.Models.Providers; using Microsoft.ApplicationInsights.DataContracts; namespace Certify.Core.Management.Chal...
269030b4da7d7afb0a544d13b2868b078b869b18
NsisBootstrapper changes
NsisBootstrapper changes
oleg-shilo/wixsharp,dguder/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp
Source/src/WixSharp/Nsis/NsisBootstrapper.cs
mit
1,587,874,812
using System; using System.Linq; using System.Text; using System.Text.RegularExpressions; using WixSharp.CommonTasks; using IO = System.IO; using Reflection = System.Reflection; namespace WixSharp.Nsis { /// <summary> /// Defines native (un-managed) bootstrapper. The bootstrapper is created by the NSIS instal...
using System; using System.Linq; using System.Text; using System.Text.RegularExpressions; using WixSharp.CommonTasks; using IO = System.IO; using Reflection = System.Reflection; namespace WixSharp.Nsis { /// <summary> /// Defines native (un-managed) bootstrapper. The bootstrapper is created by the NSIS instal...
39ed393739fa40629ce8e7cc204014abd88361f4
Added AuraSDK verification to see if it is on the supported version v1.07.71
Added AuraSDK verification to see if it is on the supported version v1.07.71
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Devices/Asus/AsusHandler.cs
mit
1,587,874,780
using System; using System.Collections.Generic; using System.Drawing; using System.Text; using AuraServiceLib; using Aurora.Devices.Asus.Config; using Microsoft.Win32; namespace Aurora.Devices.Asus { public class AsusHandler { public IAuraSdk2 AuraSdk { get;} private readonly List<AuraSyncDevi...
using System; using System.Collections.Generic; using System.Drawing; using System.Text; using AuraServiceLib; using Aurora.Devices.Asus.Config; namespace Aurora.Devices.Asus { public class AsusHandler { public IAuraSdk2 AuraSdk { get;} private readonly List<AuraSyncDevice> devices = new List<...
55756dd657491a98a318e948b847f986621abc9c
Compatibility support for files reporting as UInt8
Compatibility support for files reporting as UInt8
Norbyte/lslib,Norbyte/lslib,Norbyte/lslib
LSLib/Granny/Model/Vertex.cs
mit
1,587,868,393
using LSLib.Granny.GR2; using OpenTK; using System; using System.Collections.Generic; namespace LSLib.Granny.Model { public struct BoneWeight : IEquatable<BoneWeight> { public byte A, B, C, D; /// <summary> /// Gets or sets the value at the index of the weight vector. /// </su...
using LSLib.Granny.GR2; using OpenTK; using System; using System.Collections.Generic; namespace LSLib.Granny.Model { public struct BoneWeight : IEquatable<BoneWeight> { public byte A, B, C, D; /// <summary> /// Gets or sets the value at the index of the weight vector. /// </su...
6103a80b4582a2631776c1c36b2da954f4d785b4
関数呼び出しパーサのテストケースを追加
関数呼び出しパーサのテストケースを追加
zenuas/Roku,zenuas/Roku
test/ParserTest.cs
mit
1,587,866,854
using Extensions; using NUnit.Framework; using Roku.Node; namespace Roku.Tests { public class ParserTest { [Test] public void BlankTest() { var p = Parse(""); Assert.AreEqual(p.Statements.Count, 0); } [Test] public void LetTest() ...
using Extensions; using NUnit.Framework; using Roku.Node; namespace Roku.Tests { public class ParserTest { [Test] public void BlankTest() { var p = Parse(""); Assert.AreEqual(p.Statements.Count, 0); } [Test] public void LetTest() ...
7af2a7d127dd2fb26782717b4071393800838963
終端記号を読み進めていないバグ修正
終端記号を読み進めていないバグ修正
zenuas/Roku,zenuas/Roku
src/Parser/Lexer.1.cs
mit
1,587,866,776
using Extensions; using Roku.Node; using System; using System.Collections.Generic; using System.Text; namespace Roku.Parser { public partial class Lexer : ILexer<INode> { public SourceCodeReader BaseReader { get; } public List<Token> Store { get; } = new List<Token>(); public Stack<int...
using Extensions; using Roku.Node; using System; using System.Collections.Generic; using System.Text; namespace Roku.Parser { public partial class Lexer : ILexer<INode> { public SourceCodeReader BaseReader { get; } public List<Token> Store { get; } = new List<Token>(); public Stack<int...
10d8b4d5766988f7b659d436aa0b5f144f3e0dce
Update GUI_HackingWire.cs
Update GUI_HackingWire.cs
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation
UnityProject/Assets/Scripts/UI/Hacking/GUI_HackingWire.cs
agpl-3.0
1,587,866,646
using System.Collections; using System.Collections.Generic; using UnityEngine; public class GUI_HackingWire : MonoBehaviour { [SerializeField] private GameObject wireStart; private GUI_HackingNode startNode; public GUI_HackingNode StartNode => startNode; [SerializeField] private GameObject wireEnd; private GU...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class GUI_HackingWire : MonoBehaviour { [SerializeField] private GameObject wireStart; private GUI_HackingNode startNode; public GUI_HackingNode StartNode => startNode; [SerializeField] private GameObject wireEnd; private GU...
41f07952fa98e86353ec8059ee1ebdfee8eab08b
Improve the accuracy of the log message when an Azure DevOps API call fails. This can happen not only for test case *result* messages, but also when creating/updating the *run*.
Improve the accuracy of the log message when an Azure DevOps API call fails. This can happen not only for test case *result* messages, but also when creating/updating the *run*.
fixie/fixie,fixie/fixie
src/Fixie/Internal/Listeners/AzureListener.cs
mit
1,587,866,506
namespace Fixie.Internal.Listeners { using System; using System.IO; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Runtime.Versioning; using System.Text; using Internal; using static System.Environment; using static Serialization; ...
namespace Fixie.Internal.Listeners { using System; using System.IO; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Runtime.Versioning; using System.Text; using Internal; using static System.Environment; using static Serialization; ...
895baec87832e7025f8fcdb12c9a670acae01972
[datatool] ishero not is npc
[datatool] ishero not is npc
overtools/OWLib
DataTool/DataModels/Hero/Hero.cs
mit
1,587,865,081
using System.Collections.Generic; using System.Runtime.Serialization; using TankLib; using TankLib.Math; using TankLib.STU.Types; using TankLib.STU.Types.Enums; using static DataTool.Helper.IO; using static DataTool.Helper.STUHelper; namespace DataTool.DataModels.Hero { [DataContract] public class Hero { ...
using System.Collections.Generic; using System.Runtime.Serialization; using TankLib; using TankLib.Math; using TankLib.STU.Types; using TankLib.STU.Types.Enums; using static DataTool.Helper.IO; using static DataTool.Helper.STUHelper; namespace DataTool.DataModels.Hero { [DataContract] public class Hero { ...
2c83f80453aa71e9a9110c0edd9b0b5a67217fd4
[GUIDNames] fix error caused by trying to convert 1/0 to a bool
[GUIDNames] fix error caused by trying to convert 1/0 to a bool
overtools/OWLib
DataTool/Helper/IO.cs
mit
1,587,864,812
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using TankLib; using TACTLib.Core; using static DataTool.Program; namespace DataTool.Helper { // ReSharper disable once...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using TankLib; using TACTLib.Core; using static DataTool.Program; namespace DataTool.Helper { // ReSharper disable once...
9adf8db678e4a6b4611ca9b443afe63aef230d41
インデントがおかしい場合のテスト追加 このケースは将来的に例外に変更するかもしれない
インデントがおかしい場合のテスト追加 このケースは将来的に例外に変更するかもしれない
zenuas/Roku,zenuas/Roku
test/LexerTest.cs
mit
1,587,864,004
using Extensions; using NUnit.Framework; using Roku.Parser; using System.Collections.Generic; using System.IO; namespace Roku.Tests { public class LexerTest { [Test] public void CountIndentTest() { Assert.AreEqual(Lexer.CountIndent(" a"), 2); Assert.AreEqual(Le...
using Extensions; using NUnit.Framework; using Roku.Parser; using System.Collections.Generic; using System.IO; namespace Roku.Tests { public class LexerTest { [Test] public void CountIndentTest() { Assert.AreEqual(Lexer.CountIndent(" a"), 2); Assert.AreEqual(Le...
ba3d871b041f5a2456f683d1e5d033b7f4a7f0fe
ソートのベンチマークテストを削除
ソートのベンチマークテストを削除
zenuas/Roku,zenuas/Roku
test/ListsTest.cs
mit
1,587,863,863
using Extensions; using NUnit.Framework; using System; namespace Roku.Tests { public class ListsTest { [Test] public void SequenceTest() { var xs = Lists.Sequence(1); var ys = Lists.RangeTo('a', 'f'); var zs = xs.Zip(ys); var (a, b) = zs....
using Extensions; using NUnit.Framework; using System; using System.Diagnostics; namespace Roku.Tests { public class ListsTest { [Test] public void SequenceTest() { var xs = Lists.Sequence(1); var ys = Lists.RangeTo('a', 'f'); var zs = xs.Zip(ys); ...
033893c74ef159da45811eeb7debe2d33353a622
add reset to hugger amount at roundstart
add reset to hugger amount at roundstart
krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation
UnityProject/Assets/Scripts/NPC/AI/Hostile/XenoQueenAI.cs
agpl-3.0
1,587,861,483
using System; using System.Collections; using UnityEngine; namespace NPC { public class XenoQueenAI: GenericHostileAI, IServerSpawn { [Tooltip("Max amount of active facehuggers that can be in the server at once")][SerializeField] private int huggerCap = 0; [Tooltip("Chances of laying an egg. This gets rolled...
using System; using System.Collections; using UnityEngine; namespace NPC { public class XenoQueenAI: GenericHostileAI, IServerSpawn { [Tooltip("Max amount of active facehuggers that can be in the server at once")][SerializeField] private int huggerCap = 0; [Tooltip("Chances of laying an egg. This gets rolled...
26fdb160b5e17a7fe0224721daa16102601f3d7b
fix larvae growing into xeno despite being dead
fix larvae growing into xeno despite being dead
krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/NPC/AI/Hostile/LarvaeAI.cs
agpl-3.0
1,587,861,481
using System; using System.Collections; using UnityEngine; using WebSocketSharp; using Random = UnityEngine.Random; namespace NPC { public class LarvaeAI : GenericFriendlyAI, IServerSpawn { [Tooltip("Time in seconds this larva will take to become a full grown Xeno")][SerializeField] private float timeToGrow; ...
using System.Collections; using UnityEngine; namespace NPC { public class LarvaeAI : GenericFriendlyAI, IServerSpawn { [Tooltip("Time in seconds this larva will take to become a full grown Xeno")][SerializeField] private float timeToGrow; [Tooltip("Reference to the Xenomorph so we can spawn it")] [Serialize...
59d05267bc3ba95db305d21acc849307d1230139
Fixing parsing test to also pass when compiled in a different environment.
Fixing parsing test to also pass when compiled in a different environment.
bruce-dunwiddie/tsql-parser
TSQL_Parser/Tests/Expressions/CaseExpressionTests.cs
apache-2.0
1,587,861,060
using System; using System.Collections.Generic; using NUnit.Framework; using TSQL; using TSQL.Statements; using TSQL.Tokens; using Tests.Tokens; namespace Tests.Expressions { [TestFixture(Category = "Expression Parsing")] public class CaseExpressionTests { [Test] public void CaseExpression_Dont_Overrun() ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using NUnit.Framework; using TSQL; using TSQL.Expressions; using TSQL.Statements; using TSQL.Tokens; using Tests.Tokens; namespace Tests.Expressions { [TestFixture(Category = "Expression Parsing")] ...
1e225177b2eb1e6c0520f0d23814bcf9792a2d7d
378.1: remove unused const
378.1: remove unused const
LayoutFarm/PixelFarm
src/PixelFarm/PaintLab.RenderTree/3_Layers/1_RenderElementLayer.cs
bsd-2-clause
1,587,860,518
//Apache2, 2014-present, WinterDev using System.Collections.Generic; using PixelFarm.Drawing; namespace LayoutFarm.RenderBoxes { /// <summary> /// a group of render elements /// </summary> public abstract class RenderElementLayer { #if DEBUG public int dbug_layer_id; static int dbu...
//Apache2, 2014-present, WinterDev using System.Collections.Generic; using PixelFarm.Drawing; namespace LayoutFarm.RenderBoxes { /// <summary> /// a group of render elements /// </summary> public abstract class RenderElementLayer { #if DEBUG public int dbug_layer_id; static int dbu...
2707d7bb69fa010189d1586998c642551f8b2252
New clientlib ver
New clientlib ver
kaltura/KalturaGeneratedAPIClientsCsharp
KalturaClient/Client.cs
agpl-3.0
1,587,860,489
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
8c9c43079fde1fa921e08a3e5d21df61c071f821
refresh destination project contents for every new source project to check for existing file paths. Source cannot have duplicates so no need to refresh for every node
refresh destination project contents for every new source project to check for existing file paths. Source cannot have duplicates so no need to refresh for every node
CADbloke/CodeLinker
CodeLinker2/DestinationProjLinker.cs
mit
1,587,859,771
// Code Linker originally by @CADbloke (Ewen Wallace) 2015 // More info, repo and MIT License at https://github.com/CADbloke/CodeLinker using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; using System.Xml.Linq; using Microsoft.VisualBasic; using Mi...
// Code Linker originally by @CADbloke (Ewen Wallace) 2015 // More info, repo and MIT License at https://github.com/CADbloke/CodeLinker using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; using System.Xml.Linq; using Microsoft.VisualBasic; using Mi...
3449eae3d2e71a57f7878ddd1b990f6c946d8558
Add missing ConfigureAwait
Add missing ConfigureAwait
lewishenson/FluentCineworld
src/FluentCineworld/Sites/SiteDetailsQuery.cs
mit
1,587,858,534
using System; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; namespace FluentCineworld.Sites { public class SiteDetailsQuery { private readonly IUriGenerator _uriGenerator; private readonly HttpClient _httpClient; public SiteDetailsQuery...
using System; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; namespace FluentCineworld.Sites { public class SiteDetailsQuery { private readonly IUriGenerator _uriGenerator; private readonly HttpClient _httpClient; public SiteDetailsQuery...
1ac76ca085ffddc36388af74a4538cab28c8325d
Fixed parameter of CfConnectSyncRoot
Fixed parameter of CfConnectSyncRoot
dahall/vanara
PInvoke/CldApi/cfapi.Funcs.cs
mit
1,587,855,962
using System; using System.Runtime.InteropServices; using System.Threading; using static Vanara.PInvoke.Kernel32; namespace Vanara.PInvoke { /// <summary>Functions, structures and constants from CldApi.dll.</summary> public static partial class CldApi { /// <summary>Callback function for <see cref="CF_CALLBACK_RE...
using System; using System.Runtime.InteropServices; using System.Threading; using static Vanara.PInvoke.Kernel32; namespace Vanara.PInvoke { /// <summary>Functions, structures and constants from CldApi.dll.</summary> public static partial class CldApi { /// <summary>Callback function for <see cref="CF_CALLBACK_RE...
2545be42db36dae6c32206c099914e24c4dc6737
populate User-Agent header
populate User-Agent header
Husqvik/GraphQlClientGenerator
src/GraphQlClientGenerator/GraphQlGenerator.cs
mit
1,587,855,633
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Serialization; ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Serialization; ...
64327967a0faa9495b718ff84abccde11cb2934a
Round TotalMilliseconds to match .net behavior
Round TotalMilliseconds to match .net behavior
mono/taglib-sharp,hwahrmann/taglib-sharp,hwahrmann/taglib-sharp
src/TaglibSharp.Tests/FileFormats/MpgFormatTest.cs
lgpl-2.1
1,587,855,244
using NUnit.Framework; using System; using TagLib; namespace TaglibSharp.Tests.FileFormats { [TestFixture] public class MpgFormatTest : IFormatTest { static readonly string sample_file = TestPath.Samples + "Turning Lime.mpg"; static readonly string sample_picture = TestPath.Samples + "sample_gimp.gif"; static...
using NUnit.Framework; using System; using TagLib; namespace TaglibSharp.Tests.FileFormats { [TestFixture] public class MpgFormatTest : IFormatTest { static readonly string sample_file = TestPath.Samples + "Turning Lime.mpg"; static readonly string sample_picture = TestPath.Samples + "sample_gimp.gif"; static...
88764bf9a303d7185f09f8b69e1c810bb701dd25
Full xbox auth
Full xbox auth
kennyvv/Alex,kennyvv/Alex,kennyvv/Alex
src/Alex/Services/XBLMSAService.cs
mpl-2.0
1,587,854,287
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Runtime.InteropServices; using System.Security.Cryptography; using System.Text; using System.Threading; using System.Threadi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Runtime.InteropServices; using System.Security.Cryptography; using System.Text; using System.Threading; using System.Threadi...
84a5edb1cd07e88f0a979dabace1d2000128099c
Avoid NRE when null bodies result returned
Avoid NRE when null bodies result returned
EDDiscovery/EDDiscovery,andreaspada/EDDiscovery,klightspeed/EDDiscovery,EDDiscovery/EDDiscovery,klightspeed/EDDiscovery
EliteDangerous/StarScan/StarScan.cs
apache-2.0
1,587,853,971
/* * Copyright © 2015 - 2019 EDDiscovery development team * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
/* * Copyright © 2015 - 2019 EDDiscovery development team * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
85a0b420736dd48e75b99081d9d0358c93bc043d
Issue xx - Improved robustness around certain time-series or rating model failures.
Issue xx - Improved robustness around certain time-series or rating model failures.
schmidt4brains/Examples,AquaticInformatics/Examples,schmidt4brains/Examples,schmidt4brains/Examples,AquaticInformatics/Examples,AquaticInformatics/Examples,schmidt4brains/Examples,AquaticInformatics/Examples
TimeSeries/PublicApis/SdkExamples/LocationDeleter/Deleter.cs
apache-2.0
1,587,853,224
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using Aquarius.TimeSeries.Client; using Aquarius.TimeSeries.Client.ServiceModels.Provisioning; using Aquarius.TimeSeries.Client.ServiceModels.Publish; using Humanizer; using LocationDeleter.PrivateApis...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using Aquarius.TimeSeries.Client; using Aquarius.TimeSeries.Client.ServiceModels.Provisioning; using Aquarius.TimeSeries.Client.ServiceModels.Publish; using Humanizer; using LocationDeleter.PrivateApis...
76db4d4970bbcfa0324c5dcf3c17404905aec6b6
Add unit test
Add unit test
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs
mit
1,587,852,065
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionCrypto { #region Crypto ...
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionCrypto { #region Crypto ...
ee9580be2ff82a83c38d0ed0c4e15c64d7cba8e4
Added NTStatus.NTSTATUS_FROM_WIN32 function and implicit operator from Win32Error to NTStatus using that function.
Added NTStatus.NTSTATUS_FROM_WIN32 function and implicit operator from Win32Error to NTStatus using that function.
dahall/vanara
PInvoke/Shared/WinError/NTStatus.cs
mit
1,587,850,798
using System; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Security; namespace Vanara.PInvoke { /// <summary> /// Formal replacement for the Windows NTStatus definition. In ntstatus.h, it is...
using System; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Security; namespace Vanara.PInvoke { /// <summary> /// Formal replacement for the Windows NTStatus definition. In ntstatus.h, it is...
3f89826844e3178e5728319ab87b833a866d61af
Consistent indentation.
Consistent indentation.
fixie/fixie,fixie/fixie
src/Fixie.TestAdapter/TestAssembly.cs
mit
1,587,850,324
namespace Fixie.TestAdapter { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Cli; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; public static class TestAssembl...
namespace Fixie.TestAdapter { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Cli; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; public static class TestAssembl...
2589a6314189fbaf7e7c553722dca4053442e9c6
Quarantine ServerAcceptsRequestWithheaderTotalSizeWithinLimit (#21191)
Quarantine ServerAcceptsRequestWithheaderTotalSizeWithinLimit (#21191)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Servers/Kestrel/test/InMemory.FunctionalTests/RequestHeaderLimitsTests.cs
apache-2.0
1,587,850,010
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Server.Kestrel.Core; using Microsoft.AspNet...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Server.Kestrel.Core; using Microsoft.AspNet...
4870717542f6d83f4d215c8f9eeadd1f019882f1
Removed small warning
Removed small warning
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Bot/Modules/ProfileModule.cs
agpl-3.0
1,587,849,398
using System; using System.IO; using System.Linq; using System.Threading.Tasks; using Discord; using Discord.Commands; using Microsoft.Extensions.Logging; using SixLabors.Primitives; using SoraBot.Bot.Models; using SoraBot.Common.Extensions.Modules; using SoraBot.Common.Utils; using SoraBot.Data.Dtos.Profile; using So...
using System; using System.IO; using System.Linq; using System.Threading.Tasks; using Discord; using Discord.Commands; using Microsoft.Extensions.Logging; using SixLabors.Primitives; using SoraBot.Bot.Models; using SoraBot.Common.Extensions.Modules; using SoraBot.Common.Utils; using SoraBot.Data.Dtos.Profile; using So...
92231db253281c8a01563c57be2274fac132b66d
Well here too lol
Well here too lol
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Data/Repositories/Interfaces/IProfileRepository.cs
agpl-3.0
1,587,849,364
using System.Threading.Tasks; using ArgonautCore.Maybe; using SoraBot.Data.Dtos.Profile; namespace SoraBot.Data.Repositories.Interfaces { public interface IProfileRepository { Task<Maybe<ProfileImageGenDto>> GetProfileStatistics(ulong userId, ulong guildId); Task SetUserHasBgBoolean(ulong user...
using System.Threading.Tasks; using ArgonautCore.Maybe; using SoraBot.Data.Dtos.Profile; namespace SoraBot.Data.Repositories.Interfaces { public interface IProfileRepository { Task<Maybe<ProfileImageGenDto>> GetProfileStatistics(ulong userId, ulong guildId); } }
06c2f3ffa3637ef11cc5cfb20626a39f31ab8024
Added function to set the hasbackgroundbg property on a user
Added function to set the hasbackgroundbg property on a user
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Data/Repositories/ProfileRepository.cs
agpl-3.0
1,587,849,353
using System.Linq; using System.Threading.Tasks; using ArgonautCore.Maybe; using Microsoft.EntityFrameworkCore; using SoraBot.Data.Dtos.Profile; using SoraBot.Data.Extensions; using SoraBot.Data.Repositories.Interfaces; namespace SoraBot.Data.Repositories { public class ProfileRepository : IProfileRepository ...
using System.Linq; using System.Threading.Tasks; using ArgonautCore.Maybe; using Microsoft.EntityFrameworkCore; using SoraBot.Data.Dtos.Profile; using SoraBot.Data.Repositories.Interfaces; namespace SoraBot.Data.Repositories { public class ProfileRepository : IProfileRepository { private readonly ITra...
abfa3ba445c79989c2a564640d4ce88787503ed0
When searching PATH, use Path.PathSeparator for cross-platform PATH splitting.
When searching PATH, use Path.PathSeparator for cross-platform PATH splitting.
fixie/fixie,fixie/fixie
src/Fixie.TestAdapter/TestAssembly.cs
mit
1,587,849,160
namespace Fixie.TestAdapter { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Cli; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; public static class TestAssembl...
namespace Fixie.TestAdapter { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Cli; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; public static class TestAssembl...
4c242223a069c1fabb99124673b09f3b659bf577
When searching PATH, handle the case where items in the PATH list have excess whitespace.
When searching PATH, handle the case where items in the PATH list have excess whitespace.
fixie/fixie,fixie/fixie
src/Fixie.TestAdapter/TestAssembly.cs
mit
1,587,849,112
namespace Fixie.TestAdapter { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Cli; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; public static class TestAssembl...
namespace Fixie.TestAdapter { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Cli; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; public static class TestAssembl...
b02a62ec5c66e226d0dd31467ddecd435e28bd61
Undo httpclient helper refactor
Undo httpclient helper refactor
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Services/Utils/HttpClientHelper.cs
agpl-3.0
1,587,848,324
using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace SoraBot.Services.Utils { public class HttpClientHelper : IDisposable { public HttpClient HttpClient { get; private set; } public HttpClientHelper() { this.HttpClient = new...
using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace SoraBot.Services.Utils { public class HttpClientHelper : IDisposable { public HttpClient HttpClient { get; private set; } public HttpClientHelper() { this.HttpClient = new...
3f8cf716c92b9a28d7dba2b0e79812b77dfc9ce0
New function for httpclient helper
New function for httpclient helper
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Services/Utils/HttpClientHelper.cs
agpl-3.0
1,587,846,648
using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace SoraBot.Services.Utils { public class HttpClientHelper : IDisposable { public HttpClient HttpClient { get; private set; } public HttpClientHelper() { this.HttpClient = new...
using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace SoraBot.Services.Utils { public class HttpClientHelper : IDisposable { public HttpClient HttpClient { get; private set; } public HttpClientHelper() { this.HttpClient = new...
5f2703cbad4901b77f725c44637b12e555c63cee
When we need to know the full path to the `dotnet` default host, such as when attaching to the debugger in a Test Explorer run, simply search the PATH variable. Before, we would overconfidently inspect the running executable to see if it was also a `dotnet` invocation to determine the path. That search became insuffici...
When we need to know the full path to the `dotnet` default host, such as when attaching to the debugger in a Test Explorer run, simply search the PATH variable. Before, we would overconfidently inspect the running executable to see if it was also a `dotnet` invocation to determine the path. That search became insuffici...
fixie/fixie,fixie/fixie
src/Fixie.Cli/Dotnet.cs
mit
1,587,846,476
namespace Fixie.Cli { using System; using System.IO; using System.Linq; using System.Runtime.InteropServices; static class Dotnet { public static readonly string Path = FindDotnet(); static string FindDotnet() { var platformIsWindows = OsPlatformIsWindows()...
namespace Fixie.Cli { using System; using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; static class Dotnet { public static readonly string Path = FindDotnet(); static string FindDotnet() { var fileName = OsPlatformIsWindows() ?...
b3075f98fdbb5b9f3823a34fcc3c73a9a48bf660
Cache PlatformImpl before invoking async code.
Cache PlatformImpl before invoking async code.
wieslawsoltes/Perspex,jkoritzinsky/Avalonia,grokys/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,akrisiun/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Av...
src/Avalonia.X11/NativeDialogs/GtkNativeFileDialogs.cs
mit
1,587,846,322
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Avalonia.Controls; using Avalonia.Controls.Platform; using Avalonia.Platform; using Avalonia.Platform.Interop; using static Avalonia.X11.NativeDialogs.Glib; using static Avalonia.X11.NativeDialogs.Gtk...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Avalonia.Controls; using Avalonia.Controls.Platform; using Avalonia.Platform; using Avalonia.Platform.Interop; using static Avalonia.X11.NativeDialogs.Glib; using static Avalonia.X11.NativeDialogs.Gtk...
fc7e03c007648d3518ecb99fa4e2cfe8b8975f06
stream_socket_shutdown
stream_socket_shutdown
iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie
src/Peachpie.Library/Streams/StreamSocket.cs
apache-2.0
1,587,845,197
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Net.Security; using System.Net.Sockets; using System.Security.Authentication; using System.Threading; using System.Threading.Tasks; using Pchp.Core; using Pchp.Core.Utilities; namespace Pchp.Lib...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Net.Security; using System.Net.Sockets; using System.Security.Authentication; using System.Threading; using System.Threading.Tasks; using Pchp.Core; using Pchp.Core.Utilities; namespace Pchp.Lib...
cdc8b2e8ce634f389712eec74060ea0018435a83
pre-allocated array of global constants gets bigger
pre-allocated array of global constants gets bigger
iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie
src/Peachpie.Runtime/Context.ConstsMap.cs
apache-2.0
1,587,844,800
using Pchp.Core.Utilities; using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Pchp.Core { partial class Context { #region Cons...
using Pchp.Core.Utilities; using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Pchp.Core { partial class Context { #region Cons...