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
8e0a56499047126c85997b386443f9252a92b061
Removed minus check on IsNumeric function
Removed minus check on IsNumeric function
zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos
source/Cosmos.Common/StringHelper.cs
bsd-3-clause
1,590,666,503
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
d183450ae93c3e0e37739472bf00984a694c448d
Seal container builder
Seal container builder
autofac/Autofac,autofac/Autofac
src/Autofac/ContainerBuilder.cs
mit
1,590,666,159
// This software is part of the Autofac IoC container // Copyright © 2011 Autofac Contributors // https://autofac.org // // 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 // restric...
// This software is part of the Autofac IoC container // Copyright © 2011 Autofac Contributors // https://autofac.org // // 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 // restric...
4b5b2fa231afae7978263dd6477b065a3e130b55
Added new condition check on StrToByteArray
Added new condition check on StrToByteArray Added new condition check on StrToByteArray to make sure the length of the passed string is divisible by 3
CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos
source/Cosmos.Common/ByteToString.cs
bsd-3-clause
1,590,665,311
using System; using System.Collections.Generic; using System.Text; namespace Cosmos.Common { static public class ByteToString { public static byte[] StrToByteArray(string str) { if (str.Length == 0 || !StringHelper.IsNumeric(str) || !StringHelper.IsLengthDivisible(str, 3)) ...
using System; using System.Collections.Generic; using System.Text; namespace Cosmos.Common { static public class ByteToString { public static byte[] StrToByteArray(string str) { if (str.Length == 0 || !StringHelper.IsNumeric(str)) throw new Exception("Invalid string...
de5eaa1683ae8f3d58e6e453d7a827bd800327d1
Added IsLengthDivisible function
Added IsLengthDivisible function
CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos
source/Cosmos.Common/StringHelper.cs
bsd-3-clause
1,590,664,806
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
0d0da0040cd245105a7edb3def68f2a56856ea5e
Changed IsNumeric function
Changed IsNumeric function Changed IsNumeric function in order to be able to check long strings
zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos
source/Cosmos.Common/StringHelper.cs
bsd-3-clause
1,590,664,787
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
a51aa60c9650fb2d0e79b674d56866e4c98db0db
Added pageing to Customerdocument with last change
Added pageing to Customerdocument with last change
ON-IT/Visma.Net,ON-IT/Visma.Net
Visma.net/lib/DAta/CustomerDocumentData.cs
mit
1,590,664,350
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Text; using System.Threading.Tasks; using ONIT.VismaNetApi.Models; namespace ONIT.VismaNetApi.Lib { public class CustomerDocumentData { private readonly VismaNetAuthorization _authorization; ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ONIT.VismaNetApi.Models; namespace ONIT.VismaNetApi.Lib { public class CustomerDocumentData { private readonly VismaNetAuthorization _authorization; /// <summary> /// This constructor...
0d82df065269c3cfec891d589633a501cbc17455
Update Pokemon.cs
Update Pokemon.cs
PokemonUnity/PokemonUnity
PokemonUnity.Shared/Monster/Pokemon.cs
bsd-3-clause
1,590,664,082
using System; using System.Collections.Generic; using System.Linq; using System.Text; using PokemonUnity; using PokemonUnity.Attack; using PokemonUnity.Inventory; using PokemonUnity.Monster; using PokemonUnity.Character; using PokemonUnity.Monster.Data; namespace PokemonUnity.Monster { public partial class Pokemon :...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using PokemonUnity; using PokemonUnity.Attack; using PokemonUnity.Inventory; using PokemonUnity.Monster; using PokemonUnity.Character; using PokemonUnity.Monster.Data; namespace PokemonUnity.Monster { public partial class Pokemon :...
c81268995ceaa352acbe55359783925d2be19f23
Remove code duplication
Remove code duplication
tcmorris/Umbraco-CMS,madsoulswe/Umbraco-CMS,abjerner/Umbraco-CMS,marcemarc/Umbraco-CMS,hfloyd/Umbraco-CMS,marcemarc/Umbraco-CMS,abryukhov/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,bjarnef/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,robertjf/Umbraco-CMS,robertjf/Umbraco-CMS,madsou...
src/Umbraco.Web/Compose/NestedContentPropertyComponent.cs
mit
1,590,663,964
using System; using System.Linq; using Newtonsoft.Json.Linq; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Core.Services.Implement; using Umbraco.Web.PropertyEditors; namespace Umbraco.Web.Compose { public class N...
using System; using System.Linq; using Newtonsoft.Json.Linq; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Core.Services.Implement; using Umbraco.Web.PropertyEditors; namespace Umbraco.Web.Compose { public class N...
cd092a4b5177110bc70ae3f59049b6674f8ac909
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,663,930
#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-...
0171c3bd9334fc77cddc38720218fdea8b360364
Fix rifles making sound on spawn (#1021)
Fix rifles making sound on spawn (#1021)
space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14
Content.Server/GameObjects/Components/Weapon/Ranged/Projectile/BallisticMagazineWeaponComponent.cs
mit
1,590,663,726
using System; using System.Collections.Generic; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Server.Utility; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Weapons.Ranged; using Content.Shared.Interfaces; using Robust.Se...
using System; using System.Collections.Generic; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Server.Utility; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Weapons.Ranged; using Content.Shared.Interfaces; using Robust.Se...
d2e06919ece9f16128c6ad11e6dea22103ec4beb
[Modify] Add it
[Modify] Add it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,663,666
#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-...
ff7e724f73e8220550930f5b5d1bff52bba45934
Make ItemsRepeater.GetOrCreateElement public
Make ItemsRepeater.GetOrCreateElement public As it's public in the WinUI version: https://docs.microsoft.com/en-us/uwp/api/microsoft.ui.xaml.controls.itemsrepeater.getorcreateelement?view=winui-2.4
AvaloniaUI/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia...
src/Avalonia.Controls/Repeater/ItemsRepeater.cs
mit
1,590,663,560
// This source file is adapted from the WinUI project. // (https://github.com/microsoft/microsoft-ui-xaml) // // Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation. using System; using System.Collections; using System.Collections.Specialized; using Avalonia.Controls.Templates; using A...
// This source file is adapted from the WinUI project. // (https://github.com/microsoft/microsoft-ui-xaml) // // Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation. using System; using System.Collections; using System.Collections.Specialized; using Avalonia.Controls.Templates; using A...
860f804c86e82d83f0c42728a5ebee2840ba5eb3
Improved GetSettingsHandler
Improved GetSettingsHandler
quartz-software/kephas,quartz-software/kephas,quartz-software/kephas
src/Kephas.Core.Endpoints/GetSettingsHandler.cs
mit
1,590,663,507
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="GetSettingsHandler.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICENSE file in the pro...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="GetSettingsHandler.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICENSE file in the pro...
c9ab2ca9ef8b19d3a0f1d408b2601193504cc9cb
Use InvariantEquals
Use InvariantEquals
leekelleher/Umbraco-CMS,leekelleher/Umbraco-CMS,hfloyd/Umbraco-CMS,umbraco/Umbraco-CMS,mattbrailsford/Umbraco-CMS,leekelleher/Umbraco-CMS,leekelleher/Umbraco-CMS,tcmorris/Umbraco-CMS,mattbrailsford/Umbraco-CMS,KevinJump/Umbraco-CMS,robertjf/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,robertj...
src/Umbraco.Web/Compose/NestedContentPropertyComponent.cs
mit
1,590,662,743
using System; using System.Linq; using Newtonsoft.Json.Linq; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Core.Services.Implement; using Umbraco.Web.PropertyEditors; namespace Umbraco.Web.Compose { public class N...
using System; using System.Linq; using Newtonsoft.Json.Linq; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Core.Services.Implement; using Umbraco.Web.PropertyEditors; namespace Umbraco.Web.Compose { public class N...
0e2f4fda31676dcfdccee965b02556a8ec79c399
Disallow welding of open lockers (#1011)
Disallow welding of open lockers (#1011) Co-authored-by: boiled water <c92c54d930aa039cf0f53e3f92a15db137c8b07a@protonmail.com>
space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14
Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs
mit
1,590,661,876
using System; using System.Linq; using Content.Server.GameObjects.Components.Interactable; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Com...
using System; using System.Linq; using Content.Server.GameObjects.Components.Interactable; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Com...
ab6ff87a73b9d707176de8f15d5cd81cf2f5a70c
Fix spacing.
Fix spacing.
wieslawsoltes/Perspex,Perspex/Perspex,jkoritzinsky/Perspex,Perspex/Perspex,Perspex/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,grokys/Perspex,grokys/Perspex,grokys/Perspex...
src/Markup/Avalonia.Markup.Xaml/MarkupExtensions/ResourceInclude.cs
mit
1,590,660,969
using System; using System.ComponentModel; using Avalonia.Controls; #nullable enable namespace Avalonia.Markup.Xaml.MarkupExtensions { /// <summary> /// Loads a resource dictionary from a specified URL. /// </summary> public class ResourceInclude : IResourceProvider { private Uri? _baseUr...
using System; using System.ComponentModel; using Avalonia.Controls; #nullable enable namespace Avalonia.Markup.Xaml.MarkupExtensions { /// <summary> /// Loads a resource dictionary from a specified URL. /// </summary> public class ResourceInclude : IResourceProvider { private Uri? _baseUr...
0fdeb3a8456136d57b56b1e0e0d14ae3a52e441e
Updated Blog ulr and feed url (#667)
Updated Blog ulr and feed url (#667) I have upgraded my blog website so Updated Blog ulr and feed url
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/Suthahar.cs
mit
1,590,660,824
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class Suthahar : IAmACommunityMember { public string FirstName => "Suthahar"; public string LastName => "Jegatheesan"; public string ShortBioOrTagLine => "insatiab...
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class Suthahar : IAmACommunityMember { public string FirstName => "Suthahar"; public string LastName => "Jegatheesan"; public string ShortBioOrTagLine => "insatiab...
e0efef2753af8e145d39187351afd1b9c48ec981
Hid the obsoleted RegisterCollection methods.
Hid the obsoleted RegisterCollection methods.
simpleinjector/SimpleInjector
src/SimpleInjector/Container.Registration.Batch.cs
mit
1,590,660,700
// Copyright (c) Simple Injector Contributors. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for license information. namespace SimpleInjector { using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using SimpleIn...
// Copyright (c) Simple Injector Contributors. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for license information. namespace SimpleInjector { using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using SimpleIn...
912c999f4051a259c58c2dc8ec265193bb8f8bd6
Fix minor typo in OsuGameBase
Fix minor typo in OsuGameBase
smoogipoo/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,peppy/osu,peppy/osu-new,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu
osu.Game/OsuGameBase.cs
mit
1,590,660,335
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Threading.Tasks; using osu.Framework.Allocation;...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Threading.Tasks; using osu.Framework.Allocation;...
37698c0eb660b8453572e926200f29ae8c6b3286
Avoid Activator.CreateInstance when getting bound copy of BindableList
Avoid Activator.CreateInstance when getting bound copy of BindableList
EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,...
osu.Framework/Bindables/BindableList.cs
mit
1,590,659,478
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using osu.Framework.Caching; using osu...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using osu.Framework.Caching; using osu...
99e0baf29ee418e86d3fa3a6bf6f165b4af5b184
correct naming
correct naming
RainwayApp/warden
Warden/Windows/Api.cs
apache-2.0
1,590,658,106
using System; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security; using System.Security.Principal; using Warden.Core.Exceptions; using Warden.Windows.Win32; namespace Warden.Windows { internal static class Api { ///...
using System; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security; using System.Security.Principal; using Warden.Core.Exceptions; using Warden.Windows.Win32; namespace Warden.Windows { internal static class Api { ///...
b37d400a67608e60ab30425ac03d2569b19aaf45
Update Default API Key
Update Default API Key Old one expired/revoked
jackfagner/OpenTidl
OpenTidl/ClientConfiguration.cs
agpl-3.0
1,590,657,905
/* Copyright (C) 2015 Jack Fagner This file is part of OpenTidl. OpenTidl is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any...
/* Copyright (C) 2015 Jack Fagner This file is part of OpenTidl. OpenTidl is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any...
048bbd96c26ed4a1c98f146d549e55a140c0b7c3
adjusted comment
adjusted comment
Kentico/Deliver-Dancing-Goat-.NET-MVC,Kentico/Deliver-Dancing-Goat-.NET-MVC
DancingGoat/Areas/Admin/Controllers/SelfConfigController.cs
mit
1,590,655,838
using System; using System.Threading.Tasks; using DancingGoat.Areas.Admin.Models; using DancingGoat.Configuration; using DancingGoat.Helpers; using Kentico.Kontent.Delivery; using Kentico.Kontent.Delivery.Abstractions; using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json; namespace DancingGoat.Areas.Admin.Controller...
using System; using System.Threading.Tasks; using DancingGoat.Areas.Admin.Models; using DancingGoat.Configuration; using DancingGoat.Helpers; using Kentico.Kontent.Delivery; using Kentico.Kontent.Delivery.Abstractions; using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json; namespace DancingGoat.Areas.Admin.Controller...
b456ed08f179c27de7665e52fdcb5968af362790
Fixes tests
Fixes tests
abryukhov/Umbraco-CMS,abryukhov/Umbraco-CMS,KevinJump/Umbraco-CMS,robertjf/Umbraco-CMS,marcemarc/Umbraco-CMS,KevinJump/Umbraco-CMS,umbraco/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,umbraco/Umbraco-CMS,dawoe/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,dawoe/Umbraco-CMS,abryukhov/Umbraco...
src/Umbraco.Tests.Integration/Umbraco.Configuration/UmbracoSettings/SecurityElementTests.cs
mit
1,590,655,552
using NUnit.Framework; using Umbraco.Core; namespace Umbraco.Tests.Integration.Umbraco.Configuration.UmbracoSettings { [TestFixture] public class SecurityElementTests : UmbracoSettingsTests { [Test] public void KeepUserLoggedIn() { Assert.IsTrue(SecuritySettings.KeepUse...
using NUnit.Framework; using Umbraco.Core; namespace Umbraco.Tests.Integration.Umbraco.Configuration.UmbracoSettings { [TestFixture] public class SecurityElementTests : UmbracoSettingsTests { [Test] public void KeepUserLoggedIn() { Assert.IsTrue(SecuritySettings.KeepUse...
524998eef14fafc6356b0ace7ddf656c0adce39f
Fix the category for SA1413 (UseTrailingCommasInMultiLineInitializers)
Fix the category for SA1413 (UseTrailingCommasInMultiLineInitializers)
DotNetAnalyzers/StyleCopAnalyzers,DotNetAnalyzers/StyleCopAnalyzers
StyleCop.Analyzers/StyleCop.Analyzers/MaintainabilityRules/SA1413UseTrailingCommasInMultiLineInitializers.cs
mit
1,590,653,087
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.MaintainabilityRules { using System; using System.Collections.Immutable; using System.Linq; using Microsoft.Co...
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.MaintainabilityRules { using System; using System.Collections.Immutable; using System.Linq; using Microsoft.Co...
5f2925c2fb1b551fd429fd787203d381634736ee
Suppres SSL certificate warnings on sufficiently recent Mono versions, as the x509 store returns zero, but the SSL connections seems to work anyway
Suppres SSL certificate warnings on sufficiently recent Mono versions, as the x509 store returns zero, but the SSL connections seems to work anyway
mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,duplicati/duplicati
Duplicati/Library/Modules/Builtin/CheckMonoSSL.cs
lgpl-2.1
1,590,652,333
// Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // L...
// Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // L...
b3b5d5642a8ef9c10fb2948bf4fe4a5b47720636
Fixed the defunct `__MonoCS__` code chunk
Fixed the defunct `__MonoCS__` code chunk
duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati
Duplicati/Library/Modules/Builtin/CheckMonoSSL.cs
lgpl-2.1
1,590,652,293
// Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // L...
// Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // L...
16ad3ee7fe49eb7fe2a8c7208c62c3d66acc008a
Add test for payment request payment status update in greenfield
Add test for payment request payment status update in greenfield
btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver
BTCPayServer.Tests/GreenfieldAPITests.cs
mit
1,590,652,127
using System; using System.IO; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using BTCPayServer.Client; using BTCPayServer.Client.Models; using BTCPayServer.Controllers; using BTCPayServer.Events; using BTCPayServer.JsonConverters; using BTCPayServer.Services; using BTCPayServer.Tests.Logging;...
using System; using System.IO; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using BTCPayServer.Client; using BTCPayServer.Client.Models; using BTCPayServer.JsonConverters; using BTCPayServer.Services; using BTCPayServer.Tests.Logging; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using X...
559015c70dc25d3ef4155e44083d64a091805ff0
POS: Test fixes
POS: Test fixes
btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver
BTCPayServer.Tests/UnitTest1.cs
mit
1,590,651,634
using BTCPayServer.Tests.Logging; using System.Linq; using NBitcoin; using NBitcoin.DataEncoders; using NBitcoin.Payment; using NBitpayClient; using System; using System.Threading; using Xunit; using Xunit.Abstractions; using Xunit.Sdk; using BTCPayServer.Services.Invoices; using Newtonsoft.Json; using System.IO; usin...
using BTCPayServer.Tests.Logging; using System.Linq; using NBitcoin; using NBitcoin.DataEncoders; using NBitcoin.Payment; using NBitpayClient; using System; using System.Threading; using Xunit; using Xunit.Abstractions; using Xunit.Sdk; using BTCPayServer.Services.Invoices; using Newtonsoft.Json; using System.IO; usin...
332a1da167d836c1a34cd1bb496598d6f8299b69
POS: Updates from code review
POS: Updates from code review
btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver
BTCPayServer/Controllers/AppsPublicController.cs
mit
1,590,649,188
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Security.Claims; using System.Threading; using System.Threading.Tasks; using BTCPayServer.Configuration; using BTCPayServer.Data; using BTCPayServer.Filters; using BTCPayServer.ModelBinders; using BTCPayServer.M...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Security.Claims; using System.Threading; using System.Threading.Tasks; using BTCPayServer.Configuration; using BTCPayServer.Data; using BTCPayServer.Filters; using BTCPayServer.ModelBinders; using BTCPayServer.M...
ff30a2769733db85e9f48dfcf8ee7523adf06e5a
adding missing nullchecks.
adding missing nullchecks.
madsoulswe/Umbraco-CMS,mattbrailsford/Umbraco-CMS,tcmorris/Umbraco-CMS,mattbrailsford/Umbraco-CMS,bjarnef/Umbraco-CMS,leekelleher/Umbraco-CMS,tcmorris/Umbraco-CMS,tcmorris/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,umbraco/Umbraco-CMS,dawoe/Umbraco-CMS,leekelleher/Umbraco-CMS,tcmorris/Umbraco-CMS,arknu/Umbraco-CMS,dawoe...
src/Umbraco.Web/Compose/NestedContentPropertyComponent.cs
mit
1,590,648,092
using System; using System.Linq; using Newtonsoft.Json.Linq; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Core.Services.Implement; using Umbraco.Web.PropertyEditors; namespace Umbraco.Web.Compose { public class N...
using System; using System.Linq; using Newtonsoft.Json.Linq; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Core.Services.Implement; using Umbraco.Web.PropertyEditors; namespace Umbraco.Web.Compose { public class N...
b2f7411f3aaaa0ab170c4c376a94263f6722e4d1
Add standard demo sites setup as a test
Add standard demo sites setup as a test
webprofusion/Certify
src/Certify.Tests/Certify.Service.Tests.Integration/ManagedSitesTests.cs
mit
1,590,645,362
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Threading.Tasks; using Certify.Models; using System.Collections.Generic; namespace Certify.Service.Tests.Integration { [TestClass] public class ManagedCertificateTests : ServiceTestBase { [TestMethod] public asy...
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Threading.Tasks; using Certify.Models; namespace Certify.Service.Tests.Integration { [TestClass] public class ManagedCertificateTests : ServiceTestBase { [TestMethod] public async Task TestGetManagedCertificates...
8dab321912d6a9110d703b011bf40c5ca277cc9d
Add powershell version check to app diagnostics
Add powershell version check to app diagnostics
webprofusion/Certify
src/Certify.Shared/Utils/Util.cs
mit
1,590,645,297
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.Sockets; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; using Certify.Locales; ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Net; using System.Net.Http; using System.Net.Sockets; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; using Certify.Locales; using Certify.Model...
c14061cbed9945927cd648fb819679061f862c52
Update Visma.net/lib/ShipmentActionResult.cs
Update Visma.net/lib/ShipmentActionResult.cs Co-authored-by: Ole Melhus <56d6cf41a1013b10c0a70ef7558478d852ff28bb@on-it.no>
ON-IT/Visma.Net,ON-IT/Visma.Net
Visma.net/lib/ShipmentActionResult.cs
mit
1,590,642,863
using Newtonsoft.Json; using System; namespace ONIT.VismaNetApi.Lib { public class CreateShipmentActionResult : VismaActionResult { [JsonProperty("referenceNumber")] public string referenceNumber { get; internal set; } [JsonProperty("shipmentDto")] public Models.Shipment shipme...
using Newtonsoft.Json; using System; namespace ONIT.VismaNetApi.Lib { public class CreateShipmentActionResult : VismaActionResult { [JsonProperty("referenceNumber")] public string ReferenceNumber { get; internal set; } [JsonProperty("shipmentDto")] public Models.Shipment shipme...
4097fef8db4923f6768cc5659f0c8e925113b470
Remove blank line
Remove blank line
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Hwi/HwiClient.cs
mit
1,590,640,393
using NBitcoin; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Helpers; usin...
using NBitcoin; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Helpers; usin...
f0976ae9240a4071ca02bfe2cb108fbdad3fe853
Added implicit conversion operator to SafeCoTaskMemStruct and SafeHGlobalStruct from nullable struct.
Added implicit conversion operator to SafeCoTaskMemStruct and SafeHGlobalStruct from nullable struct.
dahall/vanara
Core/InteropServices/SafeMemStruct.cs
mit
1,590,639,264
using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.PInvoke; #if ALLOWSPAN using System.Buffers; #endif namespace Vanara.InteropServices { /// <summary>Base abstract class for a structure handler based on ...
using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.PInvoke; #if ALLOWSPAN using System.Buffers; #endif namespace Vanara.InteropServices { /// <summary>Base abstract class for a structure handler based on ...
a76f009ad943caf41b1784719e0a316fc7a967b0
Added test to enum Recycle Bin contents
Added test to enum Recycle Bin contents
dahall/vanara
UnitTests/PInvoke/Shell32/Methods.cs
mit
1,590,639,131
using NUnit.Framework; using System; using System.Linq; using System.Runtime.InteropServices; using Vanara.InteropServices; using static Vanara.PInvoke.Shell32; namespace Vanara.PInvoke.Tests { [TestFixture] public class Shell32Methods { [Test] public void CommandLineToArgvWTest() { const string cmd = "-d...
using NUnit.Framework; using System; using System.Linq; using System.Runtime.InteropServices; using static Vanara.PInvoke.Shell32; namespace Vanara.PInvoke.Tests { [TestFixture] public class Shell32Methods { [Test] public void CommandLineToArgvWTest() { const string cmd = "-d -s \"Str\" --hog"; var h =...
efdd8da0d1c3288dd40291dd6c12ac7c33fc41c9
To ShellItemChangeWatcher, added attributes to properties, added Path property tied to Item property for use in designer, error handling if registration fails, and fixed bug with PIDLs and memory reads (#124).
To ShellItemChangeWatcher, added attributes to properties, added Path property tied to Item property for use in designer, error handling if registration fails, and fixed bug with PIDLs and memory reads (#124).
dahall/vanara
Windows.Shell/ShellItemChangeWatcher.cs
mit
1,590,639,096
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing.Design; using System.Linq; using System.Runtime.InteropServices; using System.Windows.Forms; using System.Windows.Forms.Design; using Vanara.PInvoke; using static Vanara.PInvoke.Shell32; namespace Vanara.Windows.Shell { ...
using System; using System.ComponentModel; using System.Linq; using System.Windows.Forms; using Vanara.PInvoke; using static Vanara.PInvoke.Shell32; namespace Vanara.Windows.Shell { /// <summary>Changes that might occur to a shell item or folder.</summary> [Flags] public enum ChangeFilters : uint { /// <summary...
baa14249ca6f1104309fad28948164d89ea3dba7
Added TypeConverter to TrackBarEx.TickPositions property
Added TypeConverter to TrackBarEx.TickPositions property
dahall/vanara
WIndows.Forms/Controls/TrackBarEx.cs
mit
1,590,638,911
using System; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Reflection; using System.Windows.Forms; using Vanara.Extensions; using Vanara.PInvoke; using static Vanara.PInvoke.ComCtl32; using static Vanara.PInvoke.Macros; using static Vanara.PInvoke.User32;...
using System; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Reflection; using System.Windows.Forms; using Vanara.Extensions; using Vanara.PInvoke; using static Vanara.PInvoke.ComCtl32; using static Vanara.PInvoke.Macros; using static Vanara.PInvoke.User32;...
b8b98a8620a8d3144d413c5dc19b48e8e92bc0f0
Don't require authorization for default export
Don't require authorization for default export
roman-yagodin/R7.University,roman-yagodin/R7.University
R7.University.Employees/Services/EmployeeController.cs
agpl-3.0
1,590,637,177
// // EmployeeController.cs // // Author: // Roman M. Yagodin <roman.yagodin@gmail.com> // // Copyright (c) 2020 Roman M. Yagodin // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Fou...
// // EmployeeController.cs // // Author: // Roman M. Yagodin <roman.yagodin@gmail.com> // // Copyright (c) 2020 Roman M. Yagodin // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Fou...
a2a657487ad3e36fc07a50e4c076fc73028c0f99
fix stack frame duplication bug
fix stack frame duplication bug
google/EtwToPprof
ProfileWriter.cs
apache-2.0
1,590,636,896
// Copyright 2020 Google LLC // // 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 applicable law or agre...
// Copyright 2020 Google LLC // // 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 applicable law or agreed to in ...
564867ff12ddaf8067285a314b55447a6e6d95fe
Refactoring: * add "string varname" as an option * update codes that sets bUseFile
Refactoring: * add "string varname" as an option * update codes that sets bUseFile
htna/HCsbLib,htna/HCsbLib,htna/HCsbLib,htna/HCsbLib
HCsbLib/HCsbLib/HTLib2.Matlab/Matlab.SaveLoad.cs
mit
1,590,635,921
using System; using System.Collections.Generic; using System.Text; namespace HTLib2 { public partial class Matlab { public static void SaveMatrix(string filename, double[,] matrix, string varname=null, bool bUseFile=false) { if(varname == null) varname = "htlib2...
using System; using System.Collections.Generic; using System.Text; namespace HTLib2 { public partial class Matlab { public static void SaveMatrix(string filename, double[,] matrix, bool bUseFile=false) { PutMatrix("htlib2matlab_SavMat", matrix, bUseFile); Execute("s...
c741e9df4740dc8afa0ad324b272f2ad9f30ecb8
Add `AuthenticationFlow` in `ChargePaymentMethodDetailsCardThreeDSecure`
Add `AuthenticationFlow` in `ChargePaymentMethodDetailsCardThreeDSecure`
stripe/stripe-dotnet
src/Stripe.net/Entities/Charges/ChargePaymentMethodDetails/ChargePaymentMethodDetailsCardThreeDSecure.cs
apache-2.0
1,590,635,469
namespace Stripe { using Newtonsoft.Json; using Stripe.Infrastructure; public class ChargePaymentMethodDetailsCardThreeDSecure : StripeEntity<ChargePaymentMethodDetailsCardThreeDSecure> { /// <summary> /// Whether or not authentication was performed. 3D Secure will succeed without ...
namespace Stripe { using Newtonsoft.Json; using Stripe.Infrastructure; public class ChargePaymentMethodDetailsCardThreeDSecure : StripeEntity<ChargePaymentMethodDetailsCardThreeDSecure> { /// <summary> /// Whether or not authentication was performed. 3D Secure will succeed without ...
cf9bb8cd9c1ebae09183436d4c57e117ade72520
Static library to modify Arrayx
Static library to modify Arrayx
alvivar/Hasten
Gigas/Arrayx.cs
mit
1,590,633,200
// Arrayx is the simples array list. // The idea is to use 'Length' as index when 'Elements' change, so we can resize // the array as much as we like, and also be able to iterate on 'Length' for the // real subset. using System; using System.Collections.Generic; public class Arrayx<T> { public T[] Elements = ne...
// Arrayx is the simples array list. // The idea is to use 'Length' as index when 'Elements' change, so we can resize // the array as much as we like, and also be able to iterate on 'Length' for the // real subset. public class Arrayx<T> { public T[] Elements; public int Size; public int Length; }
b93a57a2586948f5abc694b34075edc560a4ae0d
[ci skip] Updating ServerBuildInfo_Dynamic.cs
[ci skip] Updating ServerBuildInfo_Dynamic.cs 1.3.3397.20200528020513-master-4ce49bc
LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE
Source/ACE.Server/ServerBuildInfo_Dynamic.cs
agpl-3.0
1,590,631,641
namespace ACE.Server { public static partial class ServerBuildInfo { public static string Branch = "master"; public static string Commit = "4ce49bccc3cd0186c4eec67e72fde4dd27eb7299"; public static string Version = "1.3"; public static string Build = "3397"; ...
namespace ACE.Server { public static partial class ServerBuildInfo { public static string Branch = "master"; public static string Commit = "a523a27ca8ebd5c78e56fbe00a3a772df510a9a3"; public static string Version = "1.3"; public static string Build = "3396"; ...
e725c71dbd19d1b8165e779dff15581158f1905f
made non parallelizable
made non parallelizable
SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments
src/CommitmentsV2/SFA.DAS.CommitmentsV2.UnitTests/Services/UlnUtilisationServiceTests.cs
mit
1,590,631,509
using Moq; using NUnit.Framework; using SFA.DAS.CommitmentsV2.Data; using SFA.DAS.CommitmentsV2.Domain.Entities; using SFA.DAS.CommitmentsV2.Models; using SFA.DAS.CommitmentsV2.Services; using SFA.DAS.CommitmentsV2.Types; using System; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace...
using Moq; using NUnit.Framework; using SFA.DAS.CommitmentsV2.Data; using SFA.DAS.CommitmentsV2.Domain.Entities; using SFA.DAS.CommitmentsV2.Models; using SFA.DAS.CommitmentsV2.Services; using SFA.DAS.CommitmentsV2.Types; using System; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace...
4ce49bccc3cd0186c4eec67e72fde4dd27eb7299
improving AuditItemSpells (#3001)
improving AuditItemSpells (#3001)
ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE
Source/ACE.Server/WorldObjects/Player_Spells.cs
agpl-3.0
1,590,631,497
using System; using System.Collections.Generic; using System.Linq; using ACE.Database; using ACE.Database.Models.Shard; using ACE.DatLoader; using ACE.Entity; using ACE.Entity.Enum; using ACE.Entity.Models; using ACE.Server.Entity; using ACE.Server.Entity.Actions; using ACE.Server.Managers; using ACE.Server.Network.St...
using System; using System.Collections.Generic; using System.Linq; using ACE.Database; using ACE.Database.Models.Shard; using ACE.DatLoader; using ACE.Entity; using ACE.Entity.Enum; using ACE.Entity.Models; using ACE.Server.Entity; using ACE.Server.Entity.Actions; using ACE.Server.Managers; using ACE.Server.Network.St...
3850637af4a751a1180e2d6a8601d8a2591e6762
Update Qtum.cs
Update Qtum.cs
NicolasDorier/NBitcoin,MetacoSA/NBitcoin,MetacoSA/NBitcoin,MetacoSA/NBitcoin,NicolasDorier/NBitcoin
NBitcoin.Altcoins/Qtum.cs
mit
1,590,629,182
using NBitcoin; using NBitcoin.DataEncoders; using NBitcoin.Protocol; using NBitcoin.RPC; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Threading.Tasks; namespace NBitcoin.Altcoins { // Reference: https://github.com/qtumproject/qtum/blob/f925e854a8...
using NBitcoin; using NBitcoin.DataEncoders; using NBitcoin.Protocol; using NBitcoin.RPC; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Threading.Tasks; namespace NBitcoin.Altcoins { // Reference: https://github.com/qtumproject/qtum/blob/f925e854a8...
0d17e498d2b32ac8b974751e15107121f67a4cf3
New clientlib ver
New clientlib ver
kaltura/KalturaGeneratedAPIClientsCsharp
KalturaClient/Client.cs
agpl-3.0
1,590,627,579
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
9673cc665c65e594a3aa8a8c56bc450d993f8253
Handle sync events. (#658)
Handle sync events. (#658)
tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools
tools/check-enforcer/Azure.Sdk.Tools.CheckEnforcer/Handlers/PullRequestHandler.cs
mit
1,590,627,359
using Azure.Sdk.Tools.CheckEnforcer.Configuration; using Azure.Sdk.Tools.CheckEnforcer.Integrations.GitHub; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Primitives; using Microsoft.Identity.Client; using Octokit; using System; using System.Collections.Generic; using System.Linq; using System.Text; us...
using Azure.Sdk.Tools.CheckEnforcer.Configuration; using Azure.Sdk.Tools.CheckEnforcer.Integrations.GitHub; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Primitives; using Microsoft.Identity.Client; using Octokit; using System; using System.Collections.Generic; using System.Linq; using System.Text; us...
8e3ee88c5635eae0e9bf26fd9b62b3c7e177aa07
add test case for #163
add test case for #163
runceel/ReactiveProperty,runceel/ReactiveProperty
Test/ReactiveProperty.Tests/ReadOnlyReactivePropertyTest.cs
mit
1,590,625,676
using System; using System.Collections.Generic; using System.Linq; using System.Reactive.Concurrency; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Reactive.Subjects; using Microsoft.Reactive.Testing; using Microsoft.VisualStudio.TestTools.UnitTesting; using Reactive.Bindings; namespace ...
using System; using System.Collections.Generic; using System.Reactive.Concurrency; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Reactive.Subjects; using Microsoft.VisualStudio.TestTools.UnitTesting; using Reactive.Bindings; namespace ReactiveProperty.Tests { [TestClass] public c...
7a66cc03812b80109f6860f3f97b18942a1c77a5
Added features to Trait class
Added features to Trait class
Nikey646/VndbSharp
VndbSharp/Models/Dumps/Trait.cs
mit
1,590,625,387
using System; using System.Collections.ObjectModel; using Newtonsoft.Json; namespace VndbSharp.Models.Dumps { /// <summary> /// Represents a Trait Object from the Traits Dump /// </summary> public class Trait { /// <summary> /// The Id of the trait /// </summary> public UInt32 Id { get; private set; } ...
using System; using System.Collections.ObjectModel; using Newtonsoft.Json; namespace VndbSharp.Models.Dumps { /// <summary> /// Represents a Trait Object from the Traits Dump /// </summary> public class Trait { /// <summary> /// The Id of the trait /// </summary> public UInt32 Id { get; private set; } ...
bf8c4f1513e736c0209e772c31bfe80396b8b828
Add test to make sure batched requests can partially succeed (#864)
Add test to make sure batched requests can partially succeed (#864)
NicolasDorier/NBitcoin,MetacoSA/NBitcoin,MetacoSA/NBitcoin,NicolasDorier/NBitcoin,MetacoSA/NBitcoin
NBitcoin.Tests/RPCClientTests.cs
mit
1,590,624,978
using NBitcoin.DataEncoders; using NBitcoin.RPC; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading; using System.Threading.Tasks; using NBitcoin.Logging; us...
using NBitcoin.DataEncoders; using NBitcoin.RPC; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading; using System.Threading.Tasks; using NBitcoin.Logging; us...
492ffdc4eeb15e31758e8f981c8746e7d1bcc97c
Fix bug where actor would appears in wrong room for one frame after floor switch
Fix bug where actor would appears in wrong room for one frame after floor switch
tigrouind/AITD-roomviewer
Assets/Scripts/Room/RoomLoader.cs
mit
1,590,623,924
using UnityEngine; using System.Collections; using System; using System.Linq; using System.IO; using System.Text; using System.Collections.Generic; using UnityEngine.UI; using UnityEngine.EventSystems; using UnityEngine.SceneManagement; public class RoomLoader : MonoBehaviour { private int floor = 0; private int ro...
using UnityEngine; using System.Collections; using System; using System.Linq; using System.IO; using System.Text; using System.Collections.Generic; using UnityEngine.UI; using UnityEngine.EventSystems; using UnityEngine.SceneManagement; public class RoomLoader : MonoBehaviour { private int floor = 0; private int ro...
48e5837cc6afbd46c78d8ec018119af873dfc336
Removed lolban as it wasn't working for months/years?
Removed lolban as it wasn't working for months/years?
ShadowNoire/NadekoBot,ShadowNoire/NadekoBot
NadekoBot.Core/Modules/Searches/LoLCommands.cs
mit
1,590,623,917
using Discord; using NadekoBot.Extensions; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using NadekoBot.Common; using NadekoBot.Common.Attributes; namespace NadekoBot.Modules.Searches { public p...
using Discord; using NadekoBot.Extensions; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using NadekoBot.Common; using NadekoBot.Common.Attributes; namespace NadekoBot.Modules.Searches { public p...
4603c28aa16b0b1921701a2c468dfbf4776ac07c
adding better perm for yoink
adding better perm for yoink
gngrninja/NinjaBotCore
src/Modules/Wow/WowCommands.cs
mit
1,590,622,504
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
14fdbe964fdf0522d98fb0421d4018f7daffe405
Fix for pull request issue resetting pull requests. (#655)
Fix for pull request issue resetting pull requests. (#655) * Fix for pull request issue resetting pull requests. * Added special case reopened logic.
tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools
tools/check-enforcer/Azure.Sdk.Tools.CheckEnforcer/Handlers/PullRequestHandler.cs
mit
1,590,621,909
using Azure.Sdk.Tools.CheckEnforcer.Configuration; using Azure.Sdk.Tools.CheckEnforcer.Integrations.GitHub; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Primitives; using Microsoft.Identity.Client; using Octokit; using System; using System.Collections.Generic; using System.Linq; using System.Text; us...
using Azure.Sdk.Tools.CheckEnforcer.Configuration; using Azure.Sdk.Tools.CheckEnforcer.Integrations.GitHub; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Primitives; using Microsoft.Identity.Client; using Octokit; using System; using System.Collections.Generic; using System.Linq; using System.Text; us...
648ffaaed1aa1c87209feb26c0b6ba1879ab1d27
TestHelper change
TestHelper change
SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments
src/CommitmentsV2/SFA.DAS.CommitmentsV2.UnitTests/TestHelper.cs
mit
1,590,620,356
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Diagnostics; using Microsoft.EntityFrameworkCore.Storage; using Newtonsoft.Json; using SFA.DAS.CommitmentsV2.Data; using System; namespace SFA.DAS.CommitmentsV2.UnitTests { public class TestHelper { public static T Clone<T>(T sou...
using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Diagnostics; using Newtonsoft.Json; using SFA.DAS.CommitmentsV2.Data; namespace SFA.DAS.CommitmentsV2.UnitTests { public class TestHelper { public static T Clone<T>(T source) { var settings = new...
9e185e27b2a1882bc371aa7201b14e9369b2fdc3
Added new check on the string passed to StrToByteArray
Added new check on the string passed to StrToByteArray StrToByteArray had unsafe, unchecked case in which str in not in a number format. Passing non-numerical string to byte.Parse makes it throw the "System.FormatException: Input string was not in a correct format." exception. Added new condition, to check if the str...
zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos
source/Cosmos.Common/ByteToString.cs
bsd-3-clause
1,590,619,588
using System; using System.Collections.Generic; using System.Text; namespace Cosmos.Common { static public class ByteToString { public static byte[] StrToByteArray(string str) { if (str.Length == 0 || !StringHelper.IsNumeric(str)) throw new Exception("Invalid string...
using System; using System.Collections.Generic; using System.Text; namespace Cosmos.Common { static public class ByteToString { public static byte[] StrToByteArray(string str) { if (str.Length == 0) throw new Exception("Invalid string value in StrToByteArray"); ...
0137920d89b821040b370976c97dfc22fa3f3d69
Make module formatting not generate error with strict mode (#11943)
Make module formatting not generate error with strict mode (#11943)
PaulHigin/PowerShell,daxian-dbw/PowerShell,JamesWTruher/PowerShell-1,TravisEz13/PowerShell,TravisEz13/PowerShell,PaulHigin/PowerShell,JamesWTruher/PowerShell-1,TravisEz13/PowerShell,JamesWTruher/PowerShell-1,daxian-dbw/PowerShell,PaulHigin/PowerShell,daxian-dbw/PowerShell,PaulHigin/PowerShell,daxian-dbw/PowerShell,Trav...
src/System.Management.Automation/FormatAndOutput/DefaultFormatters/PowerShellCore_format_ps1xml.cs
mit
1,590,619,381
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections.Generic; namespace System.Management.Automation.Runspaces { internal sealed class PowerShellCore_Format_Ps1Xml { internal static IEnumerable<ExtendedTypeDefinition> GetFormatData() { ...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections.Generic; namespace System.Management.Automation.Runspaces { internal sealed class PowerShellCore_Format_Ps1Xml { internal static IEnumerable<ExtendedTypeDefinition> GetFormatData() { ...
21864f6aad64807be0edd7f451f8345217c1e83f
Added IsNumeric function
Added IsNumeric function
zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos
source/Cosmos.Common/StringHelper.cs
bsd-3-clause
1,590,619,129
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
//#define COSMOSDEBUG using System; using Cosmos.Debug.Kernel; namespace Cosmos.Common { public static class StringHelper { private static Debugger mDebugger = new Debugger("Common", "StringHelper"); internal enum StringComparisonResultEnum { Less = -1, Equal = 0, ...
51a0eb28dd1766aec22e329de51549b9a286294f
#2292 fix the issue
#2292 fix the issue
ermshiperete/GitVersion,GitTools/GitVersion,asbjornu/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,asbjornu/GitVersion,ParticularLabs/GitVersion,GitTools/GitVersion,gep13/GitVersion,ParticularLabs/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,ermshiperete/Gi...
src/GitVersionCore/Configuration/ConfigExtensions.cs
mit
1,590,618,390
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model.Configuration; using GitVersion.VersionCalculation; namespace GitVersion.Configuration { public static class ConfigExtensions { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model.Configuration; using GitVersion.VersionCalculation; namespace GitVersion.Configuration { public static class ConfigExtensions { ...
0cb577ae8c19737233031bf9c72f1cb6312ae1bb
#2292 fix formatting
#2292 fix formatting
asbjornu/GitVersion,ParticularLabs/GitVersion,asbjornu/GitVersion,asbjornu/GitVersion,gep13/GitVersion,ParticularLabs/GitVersion,GitTools/GitVersion,ermshiperete/GitVersion,GitTools/GitVersion,ermshiperete/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,ermshiperete/GitVersion,GitTools/Git...
src/GitVersionCore.Tests/Configuration/ConfigProviderTests.cs
mit
1,590,617,717
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using GitVersion; using GitVersion.Configuration; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model.Configuration; using GitVersion.VersionCalcu...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using GitVersion; using GitVersion.Configuration; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model.Configuration; using GitVersion.VersionCalcu...
f35097fbe75fad497b04de32b83b8bbe5769e2c2
adding proper emote
adding proper emote
gngrninja/NinjaBotCore
src/Modules/Wow/WowCommands.cs
mit
1,590,617,421
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
ecc7c568685a987359fceeded4e9380f1ab5f6e3
#2292 add tests for config overrides
#2292 add tests for config overrides
ParticularLabs/GitVersion,ermshiperete/GitVersion,gep13/GitVersion,asbjornu/GitVersion,ermshiperete/GitVersion,ermshiperete/GitVersion,ermshiperete/GitVersion,asbjornu/GitVersion,gep13/GitVersion,GitTools/GitVersion,GitTools/GitVersion,GitTools/GitVersion,asbjornu/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,Par...
src/GitVersionCore.Tests/Configuration/ConfigProviderTests.cs
mit
1,590,616,955
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using GitVersion; using GitVersion.Configuration; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model.Configuration; using GitVersion.VersionCalcu...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using GitVersion; using GitVersion.Configuration; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model.Configuration; using GitVersion.VersionCalcu...
bded80ad3fc54d8b827edd2e51ae4b58794705b6
Action tooltip hotfix
Action tooltip hotfix
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation
UnityProject/Assets/Scripts/UI/Action/UIAction.cs
agpl-3.0
1,590,616,913
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public class UIAction : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler { public SpriteSheetAndData DefaultIconBackground; public SpriteHandler IconBackground; public SpriteHandler ...
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public class UIAction : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler { public SpriteSheetAndData DefaultIconBackground; public SpriteHandler IconBackground; public SpriteHandler ...
224429e9598a3de0da4d13044386dd215907f633
Increase the time we give DD to reboot
Increase the time we give DD to reboot
tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server-tools,tgstation/tgstation-server
tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs
agpl-3.0
1,590,616,456
using Byond.TopicSender; using Microsoft.Extensions.Logging; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using System; using System.IO; using System.Linq; using System.Net; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Client; using T...
using Byond.TopicSender; using Microsoft.Extensions.Logging; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using System; using System.IO; using System.Linq; using System.Net; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Client; using T...
2f96f2d1f40f24ea5646f17d358a8d747ff2fc79
Do not cache recipes when using addressables
Do not cache recipes when using addressables
umasteeringgroup/UMA
UMAProject/Assets/UMA/Core/StandardAssets/UMA/Scripts/UMARecipeBase.cs
mit
1,590,615,816
using System; using UnityEngine; using System.Collections.Generic; namespace UMA { /// <summary> /// Base class for serialized UMA recipes. /// </summary> public abstract class UMARecipeBase : ScriptableObject { /// <summary> /// Load data into the specified umaRecipe. /// </summary> /// <param name="umaR...
using System; using UnityEngine; using System.Collections.Generic; namespace UMA { /// <summary> /// Base class for serialized UMA recipes. /// </summary> public abstract class UMARecipeBase : ScriptableObject { /// <summary> /// Load data into the specified umaRecipe. /// </summary> /// <param name="umaR...
f953577a3f3d96f7b1eba487df4e6c01ec00e8c9
Has to have all c4 struct properties matching with LiteCore and use IntPtr for callback
Has to have all c4 struct properties matching with LiteCore and use IntPtr for callback
couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net
src/LiteCore/src/LiteCore.Shared/Interop/C4Listener_defs.cs
apache-2.0
1,590,615,761
// // C4Listener_defs.cs // // Copyright (c) 2020 Couchbase, Inc All rights reserved. // // 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 // /...
// // C4Listener_defs.cs // // Copyright (c) 2020 Couchbase, Inc All rights reserved. // // 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 // /...
c69d798dddc2cb56838720f02e74dca22a6763d2
adding role commands!
adding role commands!
gngrninja/NinjaBotCore
src/Modules/Wow/WowCommands.cs
mit
1,590,615,675
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
27a76bc815f26cd6a581733a3ade2dbb2ecdb310
Fix test (use correct today variable)
Fix test (use correct today variable)
jgraber/ForgetTheMilk,jgraber/ForgetTheMilk
ForgetTheMilk/ConsoleVerification/CreateTaskTests.cs
apache-2.0
1,590,615,061
using System; using System.Collections.Generic; using System.Linq; using System.Text; using ForgetTheMilk.Controllers; using NUnit.Framework; namespace ConsoleVerification { public class CreateTaskTests : AssertionHelper { [Test] public void DescriptionAndNoDueDate() { var ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using ForgetTheMilk.Controllers; using NUnit.Framework; namespace ConsoleVerification { public class CreateTaskTests : AssertionHelper { [Test] public void DescriptionAndNoDueDate() { var ...
2904f65b2d76fa51f45cdb39abafdd212d622739
Log request completion
Log request completion
tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools
src/Tgstation.Server.Host/Controllers/ApiController.cs
agpl-3.0
1,590,614,529
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; using Microsoft.Extensions.Logging; using System; using System.Globalization; using System.Linq; using System.Net; using System.Threading.Tasks; using Tgstation.Server.Api; using Tgstation.Server.Api.Models; using ...
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; using Microsoft.Extensions.Logging; using System; using System.Globalization; using System.Linq; using System.Net; using System.Threading.Tasks; using Tgstation.Server.Api; using Tgstation.Server.Api.Models; using ...
076b9997efc2ab47c7cee69dee41a6f6885fe2d0
Try to reconnect on SocketException
Try to reconnect on SocketException
manesiotise/serilog-sinks-splunk,manesiotise/serilog-sinks-splunk,manesiotise/serilog-sinks-splunk,serilog/serilog-sinks-splunk,serilog/serilog-sinks-splunk,serilog/serilog-sinks-splunk
src/Serilog.Sinks.UDP/Sinks/Splunk/UdpSink.cs
apache-2.0
1,590,613,641
// Copyright 2016 Serilog Contributors // // 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 applicable law or ...
// Copyright 2016 Serilog Contributors // // 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 applicable law or ...
50aea02fc73f32f3b22fcde4a30610f56d7e84bb
Always write it.
Always write it.
ucdavis/CRP,ucdavis/CRP
CRP.Mvc/Controllers/PaymentsController.cs
mit
1,590,612,604
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Web.Mvc; using CRP.Controllers.Helpers; using CRP.Controllers.ViewModels; using CRP.Core.Abstractions; using CRP.Core.Domain; using CRP.Core.Helpers;...
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Web.Mvc; using CRP.Controllers.Helpers; using CRP.Controllers.ViewModels; using CRP.Core.Abstractions; using CRP.Core.Domain; using CRP.Core.Helpers;...
8ba377cbdce5c43e237e8a6ffe3a4ef482850d0c
Fixed spacing and grammar
Fixed spacing and grammar
Willster419/RelicModManager,Willster419/RelhaxModpack
RelhaxModpack/RelhaxModpack/Utils/Translations.cs
apache-2.0
1,590,611,066
using RelhaxModpack.Windows; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media; namespace RelhaxModpack { ///...
using RelhaxModpack.Windows; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media; namespace RelhaxModpack { ///...
3c64a51328ace81efa2a6a0696926a29a53a7261
Fix documentation of default (#429)
Fix documentation of default (#429) - Fix documentation of default - move init to properties
NLog/NLog.Extensions.Logging,NLog/NLog.Extensions.Logging,NLog/NLog.Framework.Logging,NLog/NLog.Framework.Logging
src/NLog.Extensions.Logging/Logging/NLogProviderOptions.cs
bsd-2-clause
1,590,610,953
namespace NLog.Extensions.Logging { /// <summary> /// Options for logging to NLog with /// </summary> public class NLogProviderOptions { /// <summary> /// Separator between for EventId.Id and EventId.Name. Default to _ /// </summary> public string EventIdSeparator {...
namespace NLog.Extensions.Logging { /// <summary> /// Options for logging to NLog with /// </summary> public class NLogProviderOptions { /// <summary> /// Separator between for EventId.Id and EventId.Name. Default to . /// </summary> public string EventIdSeparator {...
f35920c111e60b2b647e882d724a71c4bdb1b328
wrapping type emitter exceptions
wrapping type emitter exceptions
6bee/aqua-core
src/Aqua/TypeSystem/TypeResolver.cs
mit
1,590,610,059
// Copyright (c) Christof Senn. All rights reserved. See license.txt in the project root for license information. namespace Aqua.TypeSystem { using Aqua.Extensions; using Aqua.Utils; using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; u...
// Copyright (c) Christof Senn. All rights reserved. See license.txt in the project root for license information. namespace Aqua.TypeSystem { using Aqua.Extensions; using Aqua.Utils; using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; u...
86eebf70d249eaf396f5fb65c3f38499e218c2ee
Updating localization package: applying updates
Updating localization package: applying updates Added translation for "moveAppOutOfDownloads" and "selectionFormatOldV2" lines. Also fixed "and and" in English string for "moveAppOutOfDownloads".
Willster419/RelhaxModpack,Willster419/RelicModManager
RelhaxModpack/RelhaxModpack/Utils/Translations.cs
apache-2.0
1,590,610,033
using RelhaxModpack.Windows; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media; namespace RelhaxModpack { ///...
using RelhaxModpack.Windows; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media; namespace RelhaxModpack { ///...
2949edcd6f5154abd439764ad254b66591c7f8cc
bugfix: deducciones -> descuento
bugfix: deducciones -> descuento
mictlanix/profact-client
test/TestProgram.cs
mit
1,590,609,107
// // TestProgram.cs // // Author: // Eddy Zavaleta <eddy@mictlanix.com> // // Copyright (c) 2016 Eddy Zavaleta, Mictlanix, and contributors. // // 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 t...
// // TestProgram.cs // // Author: // Eddy Zavaleta <eddy@mictlanix.com> // // Copyright (c) 2016 Eddy Zavaleta, Mictlanix, and contributors. // // 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 t...
3452a625895bf0ec67dfa16fa087e33a9da13d89
Fix a minor async delayer issue
Fix a minor async delayer issue
tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server
tests/Tgstation.Server.Host.Tests/Core/TestAsyncDelayer.cs
agpl-3.0
1,590,606,839
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Threading; using System.Threading.Tasks; namespace Tgstation.Server.Host.Core.Tests { [TestClass] public sealed class TestAsyncDelayer { [TestMethod] public async Task TestDelay() { var delayer = new AsyncDelayer(); var star...
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Threading; using System.Threading.Tasks; namespace Tgstation.Server.Host.Core.Tests { [TestClass] public sealed class TestAsyncDelayer { [TestMethod] public async Task TestDelay() { var delayer = new AsyncDelayer(); var star...
132e350ec6326968be26d08353e848fba665bea0
enabled nested odata expand in GetExpandedProperties of ODataQueryOptionsExtensions
enabled nested odata expand in GetExpandedProperties of ODataQueryOptionsExtensions
bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework
src/Server/Bit.Server.OData/Extensions/ODataQueryOptionsExtensions.cs
mit
1,590,606,375
using Microsoft.OData.UriParser; using System; using System.Collections.Generic; using System.Linq; namespace Microsoft.AspNet.OData.Query { public static class ODataQueryOptionsExtensions { public static string[] GetExpandedProperties(this ODataQueryOptions oDataQueryOptions) { if...
using Microsoft.OData.UriParser; using System; using System.Linq; namespace Microsoft.AspNet.OData.Query { public static class ODataQueryOptionsExtensions { public static string[] GetExpandedProperties(this ODataQueryOptions oDataQueryOptions) { if (oDataQueryOptions == null) ...
ac194f44aead71ff825778999928edcabd96c6cd
Updated version to 5.0.1
Updated version to 5.0.1
Phrynohyas/eve-o-preview
Eve-O-Preview/Properties/AssemblyInfo.cs
mit
1,590,605,842
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("EVE-O Preview")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("EVE-O Preview")] [assembly: AssemblyCopyright("")] [as...
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("EVE-O Preview")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("EVE-O Preview")] [assembly: AssemblyCopyright("")] [as...
f65712d27908f6bce488e072336fbefa8fdd78bf
Adds IsPullRequest
Adds IsPullRequest
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Context/BuildServers/Jenkins.cs
bsd-2-clause
1,590,605,421
using System; namespace FlubuCore.Context.BuildServers { public class Jenkins { public static bool RunningOnJenkins => !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("JENKINS_HOME")); /// <summary> /// Indicates whether build is running on Jenkins build server. /// </...
using System; namespace FlubuCore.Context.BuildServers { public class Jenkins { public static bool RunningOnJenkins => !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("JENKINS_HOME")); /// <summary> /// Indicates whether build is running on Jenkins build server. /// <...
8e3a2c2ecf487c3f8e1b881793cc4ff29c1f2ab3
Adds SkipDuplicate option
Adds SkipDuplicate option
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Tasks/NetCore/DotnetNugetPushTask.cs
bsd-2-clause
1,590,604,969
using System; using System.Collections.Generic; using System.Text; using FlubuCore.Context; using FlubuCore.Tasks.Attributes; namespace FlubuCore.Tasks.NetCore { public class DotnetNugetPushTask : ExecuteDotnetTaskBase<DotnetNugetPushTask> { private string _description; private bool _skipPushOn...
using System; using System.Collections.Generic; using System.Text; using FlubuCore.Context; using FlubuCore.Tasks.Attributes; namespace FlubuCore.Tasks.NetCore { public class DotnetNugetPushTask : ExecuteDotnetTaskBase<DotnetNugetPushTask> { private string _description; private bool _skipPushO...
9733e7442577c725b422cd2f2fbc6f6986df3f0c
Added test for blobToBlob compare
Added test for blobToBlob compare
libgit2/libgit2sharp,PKRoma/libgit2sharp
LibGit2Sharp.Tests/DiffBlobToBlobFixture.cs
mit
1,590,604,523
using LibGit2Sharp.Tests.TestHelpers; using System.IO; using System.Linq; using System.Text; using Xunit; namespace LibGit2Sharp.Tests { public class DiffBlobToBlobFixture : BaseFixture { [Fact] public void ComparingABlobAgainstItselfReturnsNoDifference() { var path = Sandb...
using System.IO; using System.Linq; using System.Text; using LibGit2Sharp.Tests.TestHelpers; using Xunit; namespace LibGit2Sharp.Tests { public class DiffBlobToBlobFixture : BaseFixture { [Fact] public void ComparingABlobAgainstItselfReturnsNoDifference() { var path = Sandb...
d0a37e5bce030fded75342421082ddc8e66e7191
adding yoink command
adding yoink command
gngrninja/NinjaBotCore
src/Modules/Wow/WowCommands.cs
mit
1,590,604,363
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
ee5afb48df4831fd4c972c22b6616dae6e7d4ffb
adding yoink command beginnings
adding yoink command beginnings
gngrninja/NinjaBotCore
src/Modules/Wow/WowCommands.cs
mit
1,590,604,021
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
using NinjaBotCore.Database; using NinjaBotCore.Models.Wow; using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Discord.Net; using Discord.WebSocket; using System.Text.RegularExpressions; using Microsoft.Extensi...
fd874841f667313db13ac8bee0d3a889146520f7
profeshunal softwere dafelobmend
profeshunal softwere dafelobmend
BeowulfStratOps/BSU.Sync
Hash.cs
mit
1,590,603,394
using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Security.Cryptography; using BSU.Sync.FileTypes; using NLog; namespace BSU.Sync { public static class Hash { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); ...
using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Security.Cryptography; using BSU.Sync.FileTypes; using NLog; namespace BSU.Sync { public static class Hash { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); ...
50757b2aee722491d2698ca6be49e3723c072466
Wrap the notification in a try catch just in case
Wrap the notification in a try catch just in case
ucdavis/CRP,ucdavis/CRP
CRP.Mvc/Controllers/PaymentsController.cs
mit
1,590,603,290
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Web.Mvc; using CRP.Controllers.Helpers; using CRP.Controllers.ViewModels; using CRP.Core.Abstractions; using CRP.Core.Domain; using CRP.Core.Resource...
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Web.Mvc; using CRP.Controllers.Helpers; using CRP.Controllers.ViewModels; using CRP.Core.Abstractions; using CRP.Core.Domain; using CRP.Core.Resource...
5219251f5eceb155d0e3641ecf5f5d89f9eb1e02
Search runtimes/(win|linux|osx)-(x86|x64)/native directory for DLL as well.
Search runtimes/(win|linux|osx)-(x86|x64)/native directory for DLL as well.
imazen/imageflow-dotnet
src/Imageflow/Bindings/NativeLibraryLoading.cs
agpl-3.0
1,590,602,750
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading; namespace Imageflow.Bindings { inte...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading; namespace Imageflow.Bindings { inte...
bddd92b5039fae085ac8bfd6413d05165f7ad896
Fix typo in event
Fix typo in event
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Web/Services/EvaluationService.cs
mit
1,590,600,330
using Microsoft.EntityFrameworkCore; using Stateless; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; namespace BatteryCommander.Web.Models { public class EvaluationService { public static IEnumerable<Evaluation> Filter(Database db, Query...
using Microsoft.EntityFrameworkCore; using Stateless; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; namespace BatteryCommander.Web.Models { public class EvaluationService { public static IEnumerable<Evaluation> Filter(Database db, Query...
8046ef6aec8545bcea1fa5d2aef40b870287eb44
Ajuste o GovDigital usa o SOAP 11
Ajuste o GovDigital usa o SOAP 11 Como conversado no https://github.com/ACBrNet/ACBr.Net.NFSe/issues/98
ACBrNet/ACBr.Net.NFSe
src/ACBr.Net.NFSe/Providers/GovDigital/GovDigitalServiceClient.cs
mit
1,590,600,245
// *********************************************************************** // Assembly : ACBr.Net.NFSe // Author : Rafael Dias // Created : 05-22-2018 // // Last Modified By : Rafael Dias // Last Modified On : 07-11-2018 // ********************************************************************...
// *********************************************************************** // Assembly : ACBr.Net.NFSe // Author : Rafael Dias // Created : 05-22-2018 // // Last Modified By : Rafael Dias // Last Modified On : 07-11-2018 // ********************************************************************...
3618d43ceaf71436fd7b9574f26fbc24ffec20a4
Ajuste para o GovDigital
Ajuste para o GovDigital Ajuste para o GovDigital
ACBrNet/ACBr.Net.NFSe
src/ACBr.Net.NFSe/Providers/GovDigital/ProviderGovDigital.cs
mit
1,590,600,181
// *********************************************************************** // Assembly : ACBr.Net.NFSe // Author : Rafael Dias // Created : 05-22-2018 // // Last Modified By : Rafael Dias // Last Modified On : 07-11-2018 // ********************************************************************...
// *********************************************************************** // Assembly : ACBr.Net.NFSe // Author : Rafael Dias // Created : 05-22-2018 // // Last Modified By : Rafael Dias // Last Modified On : 07-11-2018 // ********************************************************************...
fd3dfef467c5add0b85e85cfcbc8621d429b500c
Replace hack implementation of "sort rules" with tree edit implementation. https://github.com/kaby76/AntlrVSIX/issues/40
Replace hack implementation of "sort rules" with tree edit implementation. https://github.com/kaby76/AntlrVSIX/issues/40
kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX
LanguageServer/Transform.cs
mit
1,590,600,087
namespace LanguageServer { using Algorithms; using Antlr4.Runtime; using Antlr4.Runtime.Misc; using Antlr4.Runtime.Tree; using GrammarGrammar; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using System; using Syste...
namespace LanguageServer { using Algorithms; using Antlr4.Runtime; using Antlr4.Runtime.Misc; using Antlr4.Runtime.Tree; using GrammarGrammar; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using System; using Syste...
d8f7132a2e89061fd9cbbf12c7c6b54a3770776a
Fix hashing of small broken pbo files
Fix hashing of small broken pbo files
BeowulfStratOps/BSU.Sync
Hash.cs
mit
1,590,599,684
using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Security.Cryptography; using BSU.Sync.FileTypes; using NLog; namespace BSU.Sync { public static class Hash { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); ...
using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Security.Cryptography; using BSU.Sync.FileTypes; using NLog; namespace BSU.Sync { public static class Hash { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); ...
5b5c3f3934fdb657131aeea02bb59f4fe1a753a3
Modify the path error in the comment. (#22168)
Modify the path error in the comment. (#22168)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Components/Components/src/ComponentBase.cs
apache-2.0
1,590,598,321
// 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; using System.Threading.Tasks; using Microsoft.AspNetCore.Components.Rendering; namespace Microsoft.AspNetCore.Components { // IMPORTA...
// 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; using System.Threading.Tasks; using Microsoft.AspNetCore.Components.Rendering; namespace Microsoft.AspNetCore.Components { // IMPORTA...
33d59b9dff1f5226cb2d20ec8666bb33fe3dd6b9
Fix issue 163 (#183)
Fix issue 163 (#183)
googleads/google-ads-dotnet,googleads/google-ads-dotnet,googleads/google-ads-dotnet
examples/BasicOperations/UpdateExpandedTextAd.cs
apache-2.0
1,590,598,116
// Copyright 2019 Google LLC // // 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 applicable law or agreed to in ...
// Copyright 2019 Google LLC // // 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 applicable law or agreed to in ...
33bb856dc113259e64d5ecb0e80ffef1b736e601
Fix build
Fix build
Tlaster/iHentai
src/iHentai/RootView.xaml.cs
mit
1,590,598,084
using System; using System.Collections.Specialized; using System.ComponentModel; using System.Net.Http; using System.Runtime.CompilerServices; using Windows.ApplicationModel.Core; using Windows.ApplicationModel.DataTransfer.DragDrop.Core; using Windows.System; using Windows.UI; using Windows.UI.Core; using Windows.UI....
using System; using System.Collections.Specialized; using System.ComponentModel; using System.Net.Http; using System.Runtime.CompilerServices; using Windows.ApplicationModel.Core; using Windows.ApplicationModel.DataTransfer.DragDrop.Core; using Windows.System; using Windows.UI; using Windows.UI.Core; using Windows.UI....
a0628c2362872aa35c1544865a2322ae445cc36f
nested hireling diff
nested hireling diff
Zutatensuppe/DiabloInterface,Zutatensuppe/DiabloInterface,Zutatensuppe/DiabloInterface
src/DiabloInterface.Plugin.HttpClient/Plugin.cs
mit
1,590,596,720
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; using Zutatensuppe.D2Reader; using Zutatensuppe.D2Reader.Models; using Zutatensuppe.D2Reader.Struct.Item; using Newtonsoft.Json; using Zutatensuppe.DiabloInterface.Core.Logging; usi...
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; using Zutatensuppe.D2Reader; using Zutatensuppe.D2Reader.Models; using Zutatensuppe.D2Reader.Struct.Item; using Newtonsoft.Json; using Zutatensuppe.DiabloInterface.Core.Logging; usi...
504e0f13cf11ecf4ded95cf619b80308420a9da9
Implemented check to ensure network streams have data available before Reading.
Implemented check to ensure network streams have data available before Reading. Implemented potential fix for integration test failures.
neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver
Neo4j.Driver/Neo4j.Driver/Internal/IO/ChunkReader.cs
apache-2.0
1,590,595,982
// Copyright (c) 2002-2020 "Neo4j," // Neo4j Sweden AB [http://neo4j.com] // // This file is part of Neo4j. // // 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...
// Copyright (c) 2002-2020 "Neo4j," // Neo4j Sweden AB [http://neo4j.com] // // This file is part of Neo4j. // // 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...