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 |
|---|---|---|---|---|---|---|---|---|
53db2df3907eabf76c1117a7d40a260ec1dcfb58 | Fix for PerformScheduledPublishInternal, don't use yield returns within a using! this will not work and transactions/connections will be lost | Fix for PerformScheduledPublishInternal, don't use yield returns within a using! this will not work and transactions/connections will be lost
| abjerner/Umbraco-CMS,leekelleher/Umbraco-CMS,hfloyd/Umbraco-CMS,arknu/Umbraco-CMS,arknu/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,KevinJump/Umbraco-CMS,abjerner/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,hfloyd/Umbraco-CMS,abryukhov/Umbraco-CMS,abryukhov/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,leekelleher/Umbrac... | src/Umbraco.Core/Services/Implement/ContentService.cs | mit | 1,594,179,800 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using Umbraco.Core.Events;
using Umbraco.Core.Exceptions;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Membership;
using Umbraco.Core.Persistence.DatabaseModel... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using Umbraco.Core.Events;
using Umbraco.Core.Exceptions;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Membership;
using Umbraco.Core.Persistence.DatabaseModel... |
a233264c8e3abaa935dfb7d6f43b9a22642cff73 | Ensure index rebuilding doesn't short circuit if one of the populators fails | Ensure index rebuilding doesn't short circuit if one of the populators fails
| tcmorris/Umbraco-CMS,leekelleher/Umbraco-CMS,dawoe/Umbraco-CMS,madsoulswe/Umbraco-CMS,robertjf/Umbraco-CMS,bjarnef/Umbraco-CMS,mattbrailsford/Umbraco-CMS,KevinJump/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,tcmorris/Umbraco-CMS,arknu/Umbraco-CMS,madsoulswe/Umbraco-CMS,abjerner/Umbraco-CMS,KevinJump/Umbraco-CMS,hfloyd/Um... | src/Umbraco.Examine/IndexRebuilder.cs | mit | 1,594,179,800 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Examine;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
namespace Umbraco.Examine
{
/// <summary>
/// Utility to rebuild all indexes ensuring minimal data queries
/// </summary>
public... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Examine;
namespace Umbraco.Examine
{
/// <summary>
/// Utility to rebuild all indexes ensuring minimal data queries
/// </summary>
public class IndexRebuilder
{
private readonly IEnum... |
37243beef3a61ed9afe75696722775a2d32b543e | Fix RearrangeableListContainer attempting to async load children before loaded | Fix RearrangeableListContainer attempting to async load children before loaded
| EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-fram... | osu.Framework/Graphics/Containers/RearrangeableListContainer.cs | mit | 1,594,178,760 | // 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.Bindables;
using os... | // 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.Bindables;
using os... |
1b4101319c9029dd20868abbb8a2a032a87d95c3 | Add a test for well-known source-branches | Add a test for well-known source-branches
These two tests work together to prove success and failure scenarios work as expected.
| gep13/GitVersion,GitTools/GitVersion,asbjornu/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,ermshiperete/GitVersion,ermshiperete/GitVersion,GitTools/GitVersion,ParticularLabs/GitVersion,ermshiperete/GitVersion,gep13/GitVersion,asbjornu/GitVersion,asbjornu/GitVersion,ParticularLabs/GitVersion,ParticularLabs/GitVer... | src/GitVersionCore.Tests/Configuration/ConfigProviderTests.cs | mit | 1,594,175,690 | 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... |
43ad3cf20dccb78a8d2f3b18100dba3251b199bb | Use the same lookup for source-branches validation | Use the same lookup for source-branches validation
config.Branches.ContainsKey(x) does a fuzzy-ish match.
In https://github.com/GitTools/GitVersion/blob/master/src/GitVersionCore/Core/RepositoryMetadataProvider.cs#L475 it does a dictionary index lookup.
I've changed the test to use the same approach which is more stri... | ermshiperete/GitVersion,GitTools/GitVersion,gep13/GitVersion,GitTools/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,GitTools/GitVersion,asbjornu/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,ermshiperete/GitVersion,asbjornu... | src/GitVersionCore/Configuration/ConfigurationBuilder.cs | mit | 1,594,175,615 | using System;
using System.Collections.Generic;
using System.Linq;
using GitVersion.Extensions;
using GitVersion.Model.Configuration;
using GitVersion.VersionCalculation;
using JetBrains.Annotations;
namespace GitVersion.Configuration
{
public class ConfigurationBuilder
{
private const int DefaultTagPr... | using System;
using System.Collections.Generic;
using System.Linq;
using GitVersion.Extensions;
using GitVersion.Model.Configuration;
using GitVersion.VersionCalculation;
using JetBrains.Annotations;
namespace GitVersion.Configuration
{
public class ConfigurationBuilder
{
private const int DefaultTagPr... |
9237b4129bf48e2a2943681bc0331bb13956d19f | Use a non masked grad. | Use a non masked grad.
| harujoh/KelpNet,harujoh/KelpNet | KelpNet.Sample/Sample/Sample21.cs | apache-2.0 | 1,594,175,443 | using System;
using System.Collections.Generic;
using System.Linq;
using KelpNet.CL;
using KelpNet.Tools;
#if DOUBLE
#elif NETCOREAPP2_0
using Math = System.MathF;
#else
using Math = KelpNet.MathF;
#endif
//using Real = System.Double;
using Real = System.Single;
namespace KelpNet.Sample
{
//Rigging the Lottery:... | using System;
using System.Collections.Generic;
using System.Linq;
using KelpNet.CL;
using KelpNet.Tools;
#if DOUBLE
#elif NETCOREAPP2_0
using Math = System.MathF;
#else
using Math = KelpNet.MathF;
#endif
//using Real = System.Double;
using Real = System.Single;
namespace KelpNet.Sample
{
//Rigging the Lottery:... |
f6ff9544b71485e2ae7e94610cf55294a489eca0 | Update IntrospectToken to immediately return an error when introspection fails and match ValidateIdentityModelToken | Update IntrospectToken to immediately return an error when introspection fails and match ValidateIdentityModelToken
| openiddict/openiddict-core,openiddict/openiddict-core,openiddict/openiddict-core,openiddict/openiddict-core,openiddict/openiddict-core | src/OpenIddict.Validation/OpenIddictValidationHandlers.cs | apache-2.0 | 1,594,174,969 | /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Collections.Immutable;
using System.C... | /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Collections.Immutable;
using System.C... |
c992e9f76e385ad373fbc683a4d84ee2053d921f | Remove source before testing resoration of inheritance breaks. | Remove source before testing resoration of inheritance breaks.
This will be a better check for the restoration of inheritance breaks,
and also allow us to expect zero warnings as a result.
| duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati | Duplicati/UnitTest/RestoreHandlerTests.cs | lgpl-2.1 | 1,594,174,895 | using Duplicati.Library.Common;
using Duplicati.Library.Main;
using NUnit.Framework;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.AccessControl;
using Duplicati.Library.Interface;
namespace Duplicati.UnitTest
{
public class RestoreHandlerTests : BasicSetupHelper
{... | using System;
using Duplicati.Library.Common;
using Duplicati.Library.Main;
using NUnit.Framework;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.AccessControl;
using Duplicati.Library.Interface;
namespace Duplicati.UnitTest
{
public class RestoreHandlerTests : BasicSet... |
e71deee6c0763a8c5e900394fa1ed57de5a9f188 | BUG:Fixing typo of 'Warning' | BUG:Fixing typo of 'Warning'
| glav/CognitiveServicesFluentApi,glav/CognitiveServicesFluentApi | Glav.CognitiveServices.FluentApi.Core/Diagnostics/DiagnosticLoggerBase.cs | mit | 1,594,174,885 | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Glav.CognitiveServices.FluentApi.Core.Diagnostics
{
public abstract class DiagnosticLoggerBase : IDiagnosticLogger
{
const string MessageType_Error = "Error";
const string Messa... | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Glav.CognitiveServices.FluentApi.Core.Diagnostics
{
public abstract class DiagnosticLoggerBase : IDiagnosticLogger
{
const string MessageType_Error = "Error";
const string Messa... |
d23a0996b025adca3f088d4a412fdd18dc2caaf0 | Use ambient SqliteTransaction if available | Use ambient SqliteTransaction if available
Also remove code relating to the creation of a new nested transaction and the committing of said transaction
| borisdj/EFCore.BulkExtensions | EFCore.BulkExtensions/SqlBulkOperation.cs | mit | 1,594,172,651 | using FastMember;
using Microsoft.Data.SqlClient;
using Microsoft.Data.Sqlite;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using System.Linq.Exp... | using FastMember;
using Microsoft.Data.SqlClient;
using Microsoft.Data.Sqlite;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using System.Linq.Exp... |
48c9759539e7ac170f648809b7274793409843c1 | Add failing test | Add failing test
| EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-fram... | osu.Framework.Tests/Visual/UserInterface/TestSceneRearrangeableListContainer.cs | mit | 1,594,172,114 | // 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.Linq;
using NUnit.Framework;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework... | // 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.Linq;
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu... |
d98a64dfbc67b0689a9ca8a044b3d9954d232dcb | Make seeding # bg black and white text color | Make seeding # bg black and white text color
Makes it consistent with TournamentSpriteTextWithBackground
| NeoAdonis/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,UselessToucan/osu,peppy/osu,ppy/osu,NeoAdonis/osu | osu.Game.Tournament/Screens/TeamIntro/SeedingScreen.cs | mit | 1,594,171,754 | // 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 osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;... | // 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 osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;... |
4721fd203535e08f5fbbcf8f8c6a442cd7103e16 | The fix was inside us all along. | The fix was inside us all along.
| space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,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,space-wizards/space-station-14 | Content.Shared/GameObjects/Components/Movement/SharedPlayerInputMoverComponent.cs | mit | 1,594,169,947 | #nullable enable
using System;
using Content.Shared.GameObjects.Components.Mobs;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components;
using Robust.Shared.Interfaces.Configuration;
using Robust.Shared.Interfaces.Timing;
using Robust.Shared.IoC;
using Robust.Shared.Log;
using Robust.Shared.Map;
u... | #nullable enable
using System;
using Content.Shared.GameObjects.Components.Mobs;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components;
using Robust.Shared.Interfaces.Configuration;
using Robust.Shared.Interfaces.Timing;
using Robust.Shared.IoC;
using Robust.Shared.Log;
using Robust.Shared.Map;
u... |
d0d93a64ee102b3241cfb7086fdaed575e43e738 | Reverse encouragement of self-signed cert (#813) | Reverse encouragement of self-signed cert (#813)
| bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core | util/Setup/CertBuilder.cs | agpl-3.0 | 1,594,169,925 | using System;
using System.IO;
namespace Bit.Setup
{
public class CertBuilder
{
private readonly Context _context;
public CertBuilder(Context context)
{
_context = context;
}
public void BuildForInstall()
{
if (_context.Stub)
... | using System;
using System.IO;
namespace Bit.Setup
{
public class CertBuilder
{
private readonly Context _context;
public CertBuilder(Context context)
{
_context = context;
}
public void BuildForInstall()
{
if (_context.Stub)
... |
5d0b86c6590dbde8ebe989dbd94ea7cfce0f5cb9 | Hide transfer verbs when right clicking reagent container in active hand. | Hide transfer verbs when right clicking reagent container in active hand.
Fixes #1313
| space-wizards/space-station-14-content,space-wizards/space-station-14,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 | Content.Server/GameObjects/Components/Chemistry/SolutionComponent.cs | mit | 1,594,169,694 | using Content.Server.Chemistry;
using Content.Server.Interfaces.GameObjects.Components.Interaction;
using Content.Shared.Chemistry;
using Content.Shared.GameObjects;
using Content.Shared.GameObjects.Components.Chemistry;
using Content.Shared.Utility;
using Robust.Server.GameObjects;
using Robust.Server.GameObjects.Ent... | using Content.Server.Chemistry;
using Content.Server.Interfaces.GameObjects.Components.Interaction;
using Content.Shared.Chemistry;
using Content.Shared.GameObjects;
using Content.Shared.GameObjects.Components.Chemistry;
using Content.Shared.Utility;
using Robust.Server.GameObjects;
using Robust.Server.GameObjects.Ent... |
83fa12606bb58871a21557d60de98a73d653495b | Fixed a typo in a comment. | Fixed a typo in a comment.
| csdahlberg/CodeTiger.CodeAnalysis,csdahlberg/CodeTiger.CodeAnalysis | CodeTiger.CodeAnalysis/Analyzers/Reliability/AssignmentReliabilityAnalyzer.cs | mit | 1,594,168,498 | using System.Collections.Immutable;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace CodeTiger.CodeAnalysis.Analyzers.Reliability
{
/// <summary>
/// Analyzes assignments for potential reliability... | using System.Collections.Immutable;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace CodeTiger.CodeAnalysis.Analyzers.Reliability
{
/// <summary>
/// Analyzess assignments for potential reliabilit... |
893ee170a36c03300e418a7b57da9e594919f61e | fixing transparent rendering of last object | fixing transparent rendering of last object
issue: MatterHackers/MatterControl#4800
Last transparent object to draw not drawing correctly
| larsbrubaker/agg-sharp,MatterHackers/agg-sharp | RenderOpenGl/RenderMeshToGl.cs | bsd-2-clause | 1,594,166,740 | /*
Copyright (c) 2014, Lars Brubaker
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the followi... | /*
Copyright (c) 2014, Lars Brubaker
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the followi... |
a00a4d13a0b8f43cfef215339cce1c8e61f470e3 | try to work around an android auth issue right now | try to work around an android auth issue right now
| AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us | src/auth/Models/Config.cs | mit | 1,594,166,385 | using System;
using System.Collections.Generic;
using IdentityServer4.Models;
using IdentityServer4;
using IdentityModel;
namespace MawAuth.Models
{
public class Config
{
readonly string _wwwUrl;
readonly string _wwwSecret;
readonly string _photosUrl;
readonly string _filesUrl;... | using System;
using System.Collections.Generic;
using IdentityServer4.Models;
using IdentityServer4;
using IdentityModel;
namespace MawAuth.Models
{
public class Config
{
readonly string _wwwUrl;
readonly string _wwwSecret;
readonly string _photosUrl;
readonly string _filesUrl;... |
b252486d002e8846f90b2178448bd9b8c79fe9a0 | fixed crash when .config file was not xml. | fixed crash when .config file was not xml.
| pumasecurity/puma-scan,pumasecurity/puma-scan,pumasecurity/puma-scan | Puma.Security.Rules/Core/ConfigurationFileAnalyzerRegisterService.cs | mpl-2.0 | 1,594,165,927 | /*
* Copyright(c) 2016 - 2019 Puma Security, LLC (https://www.pumascan.com)
*
* Project Leader: Eric Johnson (eric.johnson@pumascan.com)
* Lead Developer: Eric Mead (eric.mead@pumascan.com)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not ... | /*
* Copyright(c) 2016 - 2019 Puma Security, LLC (https://www.pumascan.com)
*
* Project Leader: Eric Johnson (eric.johnson@pumascan.com)
* Lead Developer: Eric Mead (eric.mead@pumascan.com)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not ... |
8a46fcd30109ba4241b851b39f9d99bfc9b7168f | Resolve host to check for private IP address (#812) | Resolve host to check for private IP address (#812)
| bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core | src/Icons/Services/IconFetchingService.cs | agpl-3.0 | 1,594,165,632 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Bit.Icons.Models;
using Microsoft.Extensions.Logging;
using System.Text.RegularExpressions;
using System.Text;
using AngleSharp.Html.Parser;
namespace Bit.Ic... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Bit.Icons.Models;
using Microsoft.Extensions.Logging;
using System.Text.RegularExpressions;
using System.Text;
using AngleSharp.Html.Parser;
namespace Bit.Ic... |
8c712360a6ccc0a44066682a42ebb8228fd8d78c | Additional REST/Doc implementations | Additional REST/Doc implementations
Refactors and simplified implementation and unit-tests.
| grecosoft/NetFusion,grecosoft/NetFusion | netfusion/test/WebTests/Rest/DocGeneration/DocGenerationTests.cs | mit | 1,594,164,826 | using System.Threading.Tasks;
using WebTests.Hosting;
using WebTests.Rest.DocGeneration.Server;
using Xunit;
using System.Linq;
using FluentAssertions;
using Microsoft.AspNetCore.Http;
using NetFusion.Rest.Resources;
namespace WebTests.Rest.DocGeneration
{
public class DocGenerationTests
{
// The com... | using System.Threading.Tasks;
using WebTests.Hosting;
using WebTests.Rest.DocGeneration.Server;
using Xunit;
using System.Linq;
using FluentAssertions;
using Microsoft.AspNetCore.Http;
using NetFusion.Rest.Resources;
namespace WebTests.Rest.DocGeneration
{
public class DocGenerationTests
{
// The com... |
c25c1e10944d1ac3a445dc88eed4959d8d58d51d | Probably fix moonwalking? | Probably fix moonwalking?
| 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,space-wizards/space-station-14,space-wizards/space-station-14-content | Content.Shared/GameObjects/Components/Movement/SharedPlayerInputMoverComponent.cs | mit | 1,594,164,667 | using System;
using Content.Shared.GameObjects.Components.Mobs;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components;
using Robust.Shared.Interfaces.Configuration;
using Robust.Shared.Interfaces.Timing;
using Robust.Shared.IoC;
using Robust.Shared.Log;
using Robust.Shared.Map;
using Robust.Share... | using System;
using Content.Shared.GameObjects.Components.Mobs;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components;
using Robust.Shared.Interfaces.Configuration;
using Robust.Shared.Interfaces.Timing;
using Robust.Shared.IoC;
using Robust.Shared.Log;
using Robust.Shared.Map;
using Robust.Share... |
c24c68f9cc6e651dfdab88755e355692619e4867 | Fixed #1961 - duplicate key on GetProbeResult(). | Fixed #1961 - duplicate key on GetProbeResult().
| phatboyg/MassTransit,MassTransit/MassTransit,MassTransit/MassTransit,MassTransit/MassTransit,phatboyg/MassTransit,phatboyg/MassTransit | src/Transports/MassTransit.AmazonSqsTransport/Transport/SqsReceiveTransport.cs | apache-2.0 | 1,594,160,847 | namespace MassTransit.AmazonSqsTransport.Transport
{
using System;
using System.Threading;
using System.Threading.Tasks;
using Configuration;
using Context;
using Contexts;
using Events;
using Exceptions;
using GreenPipes;
using GreenPipes.Agents;
using Policies;... | namespace MassTransit.AmazonSqsTransport.Transport
{
using System;
using System.Threading;
using System.Threading.Tasks;
using Configuration;
using Context;
using Contexts;
using Events;
using Exceptions;
using GreenPipes;
using GreenPipes.Agents;
using Policies;... |
ef24590338ee8c903d1eef1d518b146ef702b297 | Fixed a bug with folder storage deletes not handling missing directories. | Fixed a bug with folder storage deletes not handling missing directories.
| exceptionless/Foundatio,FoundatioFx/Foundatio,FoundatioFx/Foundatio,exceptionless/Foundatio | src/Foundatio/Storage/FolderFileStorage.cs | apache-2.0 | 1,594,159,793 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Foundatio.Extensions;
using Foundatio.Serializer;
using Foundatio.Utility;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
namespace Foun... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Foundatio.Extensions;
using Foundatio.Serializer;
using Foundatio.Utility;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
namespace Foun... |
a7d71b1197dfc41a8f1ad8a8c665bf50d34d3bc0 | SecurityNativeIdMessageAdapter. Fix send out native id messages. | SecurityNativeIdMessageAdapter. Fix send out native id messages.
| StockSharp/StockSharp | Algo/SecurityNativeIdMessageAdapter.cs | apache-2.0 | 1,594,158,853 | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Algo.Storages;
using StockSharp.Localization;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Security native id message adapte... | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Algo.Storages;
using StockSharp.Localization;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Security native id message adapte... |
e27e4ed2b166abbda74801e892c43c298517a71c | Fix overlays not being applied after reentering an entity | Fix overlays not being applied after reentering an entity
| 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,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Client/GameObjects/Components/Mobs/ClientOverlayEffectsComponent.cs | mit | 1,594,157,496 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Content.Shared.GameObjects.Components.Mobs;
using Content.Shared.Interfaces;
using Robust.Client.GameObjects;
using Robust.Client.Graphics.Overlays;
using Robust.Client.Interfaces.Graphics.Overlays;
using Robust.Client.Pl... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Content.Shared.GameObjects.Components.Mobs;
using Content.Shared.Interfaces;
using Robust.Client.GameObjects;
using Robust.Client.Graphics.Overlays;
using Robust.Client.Interfaces.Graphics.Overlays;
using Robust.Client.Pl... |
9c0ca9c44f53b8a78f20e7d459a9f2adf7a58d5f | Add epub 2.0 metadata for cover image for WorldReader (BL-8639) | Add epub 2.0 metadata for cover image for WorldReader (BL-8639)
| StephenMcConnel/BloomDesktop,gmartin7/myBloomFork,BloomBooks/BloomDesktop,gmartin7/myBloomFork,StephenMcConnel/BloomDesktop,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,BloomBooks/BloomDesktop,gmartin7/myBloomFork,BloomBooks/BloomDesktop,BloomBooks/BloomDesktop,StephenMcConnel/BloomDesktop,gmartin7/myBloomFork,... | src/BloomExe/Publish/Epub/EpubMaker.cs | mit | 1,594,157,445 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Linq;
using Bloom.Book;
using Bloom.ToPalaso... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Linq;
using Bloom.Book;
using Bloom.ToPalaso... |
872731f72685a8284940117b29be2b4a24cd1c81 | Update HasValue obsolete message | Update HasValue obsolete message | dawoe/Umbraco-CMS,madsoulswe/Umbraco-CMS,leekelleher/Umbraco-CMS,bjarnef/Umbraco-CMS,leekelleher/Umbraco-CMS,robertjf/Umbraco-CMS,tcmorris/Umbraco-CMS,leekelleher/Umbraco-CMS,dawoe/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,umbraco/Umbraco-CMS,tcmorris/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,JimBobSquarePants/Um... | src/Umbraco.Core/PropertyEditors/PropertyValueConverterBase.cs | mit | 1,594,157,434 | using System;
using Umbraco.Core.Models.PublishedContent;
namespace Umbraco.Core.PropertyEditors
{
/// <summary>
/// Provides a default implementation for <see cref="IPropertyValueConverter" />.
/// </summary>
/// <seealso cref="Umbraco.Core.PropertyEditors.IPropertyValueConverter" />
public abstr... | using System;
using Umbraco.Core.Models.PublishedContent;
namespace Umbraco.Core.PropertyEditors
{
/// <summary>
/// Provides a default implementation for <see cref="IPropertyValueConverter" />.
/// </summary>
/// <seealso cref="Umbraco.Core.PropertyEditors.IPropertyValueConverter" />
public abstr... |
e3d6de2582b84c93774f5938b4f055c40db89261 | Fixed ResultHelper ItemType & ListType properties | Fixed ResultHelper ItemType & ListType properties
| xirqlz/blueprint41 | Blueprint41/Query/ResultHelper.cs | mit | 1,594,157,167 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using Blueprint41.Core;
using Blueprint41.Neo4j.Model;
namespace Blueprint41.Query
{
internal abstract class ResultHelper
{
#region Result Info
public... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using Blueprint41.Core;
using Blueprint41.Neo4j.Model;
namespace Blueprint41.Query
{
internal abstract class ResultHelper
{
#region Result Info
public... |
a7565b7651393ac5af429a94b846bd260c43d935 | Fix stunbaton issues | Fix stunbaton issues
| 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,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content | Content.Server/GameObjects/Components/Weapon/Melee/StunbatonComponent.cs | mit | 1,594,156,332 | using System.Collections.Generic;
using Content.Server.GameObjects.Components.Mobs;
using Content.Server.GameObjects.Components.Power;
using Content.Server.GameObjects.EntitySystems.Click;
using Content.Server.Interfaces.GameObjects.Components.Interaction;
using Content.Server.Interfaces.GameObjects;
using Content.Sha... | using System.Collections.Generic;
using Content.Server.GameObjects.Components.Mobs;
using Content.Server.GameObjects.Components.Power;
using Content.Server.GameObjects.EntitySystems.Click;
using Content.Server.Interfaces.GameObjects.Components.Interaction;
using Content.Server.Interfaces.GameObjects;
using Content.Sha... |
e02ed3dceb6bd84c6f0fb263900ca2cb646fca33 | BUGFIX: Use GetBySignatureIndex over direct indexer in GetParameter. | BUGFIX: Use GetBySignatureIndex over direct indexer in GetParameter.
| Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver | src/AsmResolver.DotNet/Code/Cil/CilInstructionExtensions.cs | mit | 1,594,155,903 | using System;
using System.Collections.Generic;
using AsmResolver.DotNet.Collections;
using AsmResolver.DotNet.Signatures;
using AsmResolver.PE.DotNet.Cil;
namespace AsmResolver.DotNet.Code.Cil
{
/// <summary>
/// Provides extensions to the <see cref="CilInstruction"/> class.
/// </summary>
public sta... | using System;
using System.Collections.Generic;
using AsmResolver.DotNet.Collections;
using AsmResolver.DotNet.Signatures;
using AsmResolver.PE.DotNet.Cil;
namespace AsmResolver.DotNet.Code.Cil
{
/// <summary>
/// Provides extensions to the <see cref="CilInstruction"/> class.
/// </summary>
public sta... |
c88a802b05b1ad2f13ad2c559e79af377444f50b | Adjust font size to match web design | Adjust font size to match web design
| NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu-new,peppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,ppy/osu,smoogipooo/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu | osu.Game/Overlays/News/NewsCard.cs | mit | 1,594,155,879 | // 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 osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
usi... | // 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 osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
usi... |
96a6d690220e5e9ed26c44ca4f9a2ffba8e0ef6c | Remaining Ubuntu hashes for Vorbis 1.3.7. | Remaining Ubuntu hashes for Vorbis 1.3.7.
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Api.Tests/DataSources/EncodeValidFileDataSource.cs | agpl-3.0 | 1,594,155,693 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... |
2652e4d0e82692619e0ac94669d00bf9bbafac0b | Fix commit 7e791719f05767ac4b03c5ff48df7c4e28263fdc | Fix commit 7e791719f05767ac4b03c5ff48df7c4e28263fdc
| StockSharp/StockSharp | Algo/Strategies/Strategy.cs | apache-2.0 | 1,594,155,160 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
6a8243402763f7b58117ab90fa8a0871270c5422 | Add List<T>.Shuffle() extension | Add List<T>.Shuffle() extension
| lucas-miranda/Raccoon | Raccoon/Core/Definitions/Extensions.cs | mit | 1,594,155,096 | using System.Text;
using System.Collections.Generic;
using System.Reflection;
using Raccoon.Util;
public static class Extensions {
#region Enums
public static int GetUnderlyingNumericSize(this System.Enum e) {
return System.Runtime.InteropServices.Marshal.SizeOf(System.Enum.GetUnderlyingType(e.GetTy... | using System.Text;
using System.Collections.Generic;
using System.Reflection;
using Raccoon.Util;
public static class Extensions {
#region Enums
public static int GetUnderlyingNumericSize(this System.Enum e) {
return System.Runtime.InteropServices.Marshal.SizeOf(System.Enum.GetUnderlyingType(e.GetTy... |
9da728317e50b12fb9f3c96395412b3d5417bc20 | PG-1386: Fixed problem with using out-of-date reference. | PG-1386: Fixed problem with using out-of-date reference.
| sillsdev/Glyssen | GlyssenEngine/ReferenceText.cs | mit | 1,594,154,088 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using Glyssen.Shared;
using Glyssen.Shared.Bundle;
using GlyssenEngine.Character;
using GlyssenEngine.Script;
using GlyssenEngine.Utilities;
using SIL.Extensions;
using SIL.Reporting;
using SIL.Scriptur... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using Glyssen.Shared;
using Glyssen.Shared.Bundle;
using GlyssenEngine.Character;
using GlyssenEngine.Script;
using GlyssenEngine.Utilities;
using SIL.Extensions;
using SIL.Reporting;
using SIL.Scriptur... |
3833d1af5fa1eb931fe5d8e8f0bf42a2b8e706c4 | Fix overlays applying EVERY overlay of EVERY overlay component | Fix overlays applying EVERY overlay of EVERY overlay component
Cluster moment
| space-wizards/space-station-14-content,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,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content | Content.Client/GameObjects/Components/Mobs/ClientOverlayEffectsComponent.cs | mit | 1,594,154,060 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Content.Shared.GameObjects.Components.Mobs;
using Content.Shared.Interfaces;
using Robust.Client.GameObjects;
using Robust.Client.Graphics.Overlays;
using Robust.Client.Interfaces.Graphics.Overlays;
using Robust.Client.Pl... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Content.Shared.GameObjects.Components.Mobs;
using Content.Shared.Interfaces;
using Robust.Client.GameObjects;
using Robust.Client.Graphics.Overlays;
using Robust.Client.Interfaces.Graphics.Overlays;
using Robust.Shared.Ga... |
c84b32b3845b58f06fe8a3a24807c4b50622ae2f | Fix for crash when deleting characters | Fix for crash when deleting characters
| Slazanger/SMT,Slazanger/SMT | MainWindow.xaml.cs | mit | 1,594,153,510 | using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.... | using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.... |
3d5ced8d1c4876491b71f1a6c832064870056981 | Add Enumerable.ForEach | Add Enumerable.ForEach
| meziantou/Meziantou.Framework,meziantou/Meziantou.Framework,meziantou/Meziantou.Framework,meziantou/Meziantou.Framework | src/Meziantou.Framework/EnumerableExtensions.cs | mit | 1,594,152,617 | using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace Meziantou.Framework
{
public static class EnumerableExtensions
{
publ... | using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace Meziantou.Framework
{
public static class EnumerableExtensions
{
publ... |
be1af1aaf4bd0667c05913d72c4c27f7993c622b | Updated hashes for Ubuntu | Updated hashes for Ubuntu
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Api.Tests/DataSources/SaveMetadataValidFileSource.cs | agpl-3.0 | 1,594,152,409 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... |
df1bfd60b5f5c15cc34db6c1cf1f3aa2fbf7ecfc | skip test. | skip test.
| jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,grokys/Perspex,jkoritzinsky/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,Perspex/Perspex,akrisiun/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,Perspex/Perspex,wieslawsoltes/Perspex,grokys/Perspex,grokys/Perspex,P... | tests/Avalonia.Controls.UnitTests/RelativePanelTests.cs | mit | 1,594,150,937 | using Avalonia.Controls.Shapes;
using Xunit;
namespace Avalonia.Controls.UnitTests
{
public class RelativePanelTests
{
[Fact]
public void Lays_Out_1_Child_Below_the_other()
{
var rect1 = new Rectangle { Height = 20, Width = 20 };
var rect2 = new Rectangle { Heig... | using Avalonia.Controls.Shapes;
using Xunit;
namespace Avalonia.Controls.UnitTests
{
public class RelativePanelTests
{
[Fact]
public void Lays_Out_1_Child_Below_the_other()
{
var rect1 = new Rectangle { Height = 20, Width = 20 };
var rect2 = new Rectangle { Heig... |
835e87e8cdb46629666be214505d0cc0a61e588d | add a failing relative panel test. | add a failing relative panel test.
| akrisiun/Perspex,AvaloniaUI/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,akrisiun/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Perspex,SuperJMN/Avalonia,jkoritzinsky/Avalonia,Perspex/Perspex,SuperJMN/Ava... | tests/Avalonia.Controls.UnitTests/RelativePanelTests.cs | mit | 1,594,150,070 | using Avalonia.Controls.Shapes;
using Xunit;
namespace Avalonia.Controls.UnitTests
{
public class RelativePanelTests
{
[Fact]
public void Lays_Out_1_Child_Below_the_other()
{
var rect1 = new Rectangle { Height = 20, Width = 20 };
var rect2 = new Rectangle { Heig... | using Avalonia.Controls.Shapes;
using Xunit;
namespace Avalonia.Controls.UnitTests
{
public class RelativePanelTests
{
[Fact]
public void Lays_Out_1_Child_Below_the_other()
{
var rect1 = new Rectangle { Height = 20, Width = 20 };
var rect2 = new Rectangle { Heig... |
830d7bc02d970588dff4cbd6c4f026a4ffc73ebc | Fixes MsgSelectCharacter not being registered | Fixes MsgSelectCharacter not being registered
| 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,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Client/ClientPreferencesManager.cs | mit | 1,594,150,052 | using System;
using System.Linq;
using Content.Client.Interfaces;
using Content.Shared.Preferences;
using Robust.Shared.Interfaces.Network;
using Robust.Shared.IoC;
namespace Content.Client
{
/// <summary>
/// Receives <see cref="PlayerPreferences" /> and <see cref="GameSettings" /> from the server during ... | using System;
using System.Linq;
using Content.Client.Interfaces;
using Content.Shared.Preferences;
using Robust.Shared.Interfaces.Network;
using Robust.Shared.IoC;
namespace Content.Client
{
/// <summary>
/// Receives <see cref="PlayerPreferences" /> and <see cref="GameSettings" /> from the server during ... |
c76d3d9547bfe1e83d5a13c18089f1fd8ece9c4a | Updated hash values for Vorbis 1.3.7 on Ubuntu. | Updated hash values for Vorbis 1.3.7 on Ubuntu.
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Api.Tests/DataSources/EncodeValidFileDataSource.cs | agpl-3.0 | 1,594,150,025 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... |
6e998b290657641a8f8605cdecbb66fb009eb3b8 | Fixed ResolveByNameExtension | Fixed ResolveByNameExtension
| wieslawsoltes/Perspex,akrisiun/Perspex,jkoritzinsky/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,grokys/Perspex,SuperJMN/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,Pe... | src/Markup/Avalonia.Markup.Xaml/MarkupExtensions/ResolveByNameExtension.cs | mit | 1,594,148,767 | using System;
using Avalonia.Controls;
using Avalonia.Data.Core;
namespace Avalonia.Markup.Xaml.MarkupExtensions
{
public class ResolveByNameExtension
{
public ResolveByNameExtension(string name)
{
Name = name;
}
public string Name { get; }
public object P... | using System;
using Avalonia.Controls;
namespace Avalonia.Markup.Xaml.MarkupExtensions
{
public class ResolveByNameExtension
{
public ResolveByNameExtension(string name)
{
Name = name;
}
public string Name { get; }
public object ProvideValue(IServiceProvid... |
e7847d1555639e71b0137b2849e6b469997bb986 | fixing lobby (#1297) | fixing lobby (#1297)
| 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,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14 | Content.Client/GameObjects/Components/MagicMirrorBoundUserInterface.cs | mit | 1,594,148,667 | using System;
using System.Linq;
using Content.Client.UserInterface;
using Content.Client.UserInterface.Stylesheets;
using Content.Shared.Preferences.Appearance;
using JetBrains.Annotations;
using Robust.Client.GameObjects.Components.UserInterface;
using Robust.Client.ResourceManagement;
using Robust.Client.UserInterfa... | using System;
using System.Linq;
using Content.Client.UserInterface;
using Content.Client.UserInterface.Stylesheets;
using Content.Shared.Preferences.Appearance;
using JetBrains.Annotations;
using Robust.Client.GameObjects.Components.UserInterface;
using Robust.Client.ResourceManagement;
using Robust.Client.UserInterfa... |
5a006f563d7b50ff976d05fd9b5271fdb0082d94 | Update GetNamedParameters()/GetUnnamedParameters() to use cached empty instances | Update GetNamedParameters()/GetUnnamedParameters() to use cached empty instances
| openiddict/openiddict-core,openiddict/openiddict-core,openiddict/openiddict-core,openiddict/openiddict-core,openiddict/openiddict-core | src/OpenIddict.Abstractions/Primitives/OpenIddictParameter.cs | apache-2.0 | 1,594,147,944 | /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Collections.Generic;
using System.Col... | /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Collections.Generic;
using System.Com... |
cc7db2acc9c4b27a332bf4e8270ea8e6816be93c | Add support for the Wallet property of the CreditCardPaymentResponseDetails class | Add support for the Wallet property of the CreditCardPaymentResponseDetails class
| Viincenttt/MollieApi | Mollie.Api/Models/Payment/Response/Specific/CreditCardPaymentResponse.cs | mit | 1,594,147,655 | namespace Mollie.Api.Models.Payment.Response {
public class CreditCardPaymentResponse : PaymentResponse {
/// <summary>
/// An object with credit card details.
/// </summary>
public CreditCardPaymentResponseDetails Details { get; set; }
}
public class CreditCardPaymentRespo... | namespace Mollie.Api.Models.Payment.Response {
public class CreditCardPaymentResponse : PaymentResponse {
/// <summary>
/// An object with credit card details.
/// </summary>
public CreditCardPaymentResponseDetails Details { get; set; }
}
public class CreditCardPaymentRespo... |
87bce451ab004c28b259ff929af77c81b91a1b54 | Mark the CardFingerprint property of BancontactPaymentResponse as deprecated | Mark the CardFingerprint property of BancontactPaymentResponse as deprecated
| Viincenttt/MollieApi | Mollie.Api/Models/Payment/Response/Specific/BancontactPaymentResponse.cs | mit | 1,594,147,534 | using System;
namespace Mollie.Api.Models.Payment.Response.Specific {
public class BancontactPaymentResponse : PaymentResponse {
public BancontactPaymentResponseDetails Details { get; set; }
}
public class BancontactPaymentResponseDetails {
/// <summary>
/// Only available if the ... | namespace Mollie.Api.Models.Payment.Response.Specific {
public class BancontactPaymentResponse : PaymentResponse {
public BancontactPaymentResponseDetails Details { get; set; }
}
public class BancontactPaymentResponseDetails {
/// <summary>
/// Only available if the payment is comp... |
b298a093708e6bab209fa81a2abc94fd1f7c459d | Add support for the RestrictPaymentMethodsToCountry property in the PaymentRequest class | Add support for the RestrictPaymentMethodsToCountry property in the PaymentRequest class
| Viincenttt/MollieApi | Mollie.Api/Models/Payment/Request/PaymentRequest.cs | mit | 1,594,147,343 | using Mollie.Api.JsonConverters;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Linq;
namespace Mollie.Api.Models.Payment.Request {
public class PaymentRequest {
public PaymentRequest() {
this.Methods = new List<string>();
}
/// <summary>
/// The... | using Mollie.Api.JsonConverters;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Linq;
namespace Mollie.Api.Models.Payment.Request {
public class PaymentRequest {
public PaymentRequest() {
this.Methods = new List<string>();
}
/// <summary>
/// The... |
c354bc50dbe3ab13e9a40047d7e15f8b12451fc1 | relative panel should clip to bounds by default. | relative panel should clip to bounds by default.
| AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,grokys/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,wiesla... | src/Avalonia.Controls/RelativePanel.AttachedProperties.cs | mit | 1,594,146,336 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using Avalonia.Layout;
namespace Avalonia.Controls
{
public partial class RelativePanel
{
private static void OnAlignPropertiesChanged(AvaloniaObject d, AvaloniaPropertyChangedEventArgs e)
{
... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using Avalonia.Layout;
namespace Avalonia.Controls
{
public partial class RelativePanel
{
private static void OnAlignPropertiesChanged(AvaloniaObject d, AvaloniaPropertyChangedEventArgs e)
{
... |
85c63914ed588da026a9b686fcbb45406de8c303 | fix relative panel measure / arrange. | fix relative panel measure / arrange.
| jkoritzinsky/Avalonia,wieslawsoltes/Perspex,grokys/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jko... | src/Avalonia.Controls/RelativePanel.cs | mit | 1,594,146,310 | using System;
using System.Collections.Generic;
using System.Linq;
using Avalonia.Layout;
namespace Avalonia.Controls
{
/// <summary>
/// Defines an area within which you can position and align child objects in relation
/// to each other or the parent panel.
/// </summary>
/// <remarks>
/// <p... | using System;
using System.Collections.Generic;
using System.Linq;
using Avalonia.Layout;
namespace Avalonia.Controls
{
/// <summary>
/// Defines an area within which you can position and align child objects in relation
/// to each other or the parent panel.
/// </summary>
/// <remarks>
/// <p... |
f00a7e137d2267306368de1ac6463550563c0f48 | Add debugmode to test runner ui | Add debugmode to test runner ui
| CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos | Tests/Cosmos.TestRunner.UI/ViewModels/SettingsDialogViewModel.cs | bsd-3-clause | 1,594,145,707 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Windows.Input;
using Avalonia.Controls;
using ReactiveUI;
using Cosmos.Build.Common;
using Cosmos.TestRunner.Core;
using Cosmos.TestR... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Windows.Input;
using Avalonia.Controls;
using ReactiveUI;
using Cosmos.Build.Common;
using Cosmos.TestRunner.Core;
using Cosmos.TestR... |
845013b2bb4e8713092449bfca01d7813340b307 | Add extra debugger display strings | Add extra debugger display strings
| JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | debugger/debugger-worker/src/Values/Render/ValuePresenters/ExternalDebuggerDisplayObjectPresenter.cs | apache-2.0 | 1,594,145,125 | using System;
using System.Collections.Generic;
using System.Threading;
using JetBrains.Util;
using MetadataLite.API;
using Mono.Debugging.Autofac;
using Mono.Debugging.Backend;
using Mono.Debugging.Backend.Values.Render.ValuePresenters;
using Mono.Debugging.Backend.Values.ValueRoles;
using Mono.Debugging.Client.Debugg... | using System;
using System.Collections.Generic;
using System.Threading;
using JetBrains.Util;
using MetadataLite.API;
using Mono.Debugging.Autofac;
using Mono.Debugging.Backend;
using Mono.Debugging.Backend.Values.Render.ValuePresenters;
using Mono.Debugging.Backend.Values.ValueRoles;
using Mono.Debugging.Client.Debugg... |
4a6afa33d3cfcb44bf9d3a44e933ca316774b20a | #164 - Refactoring PaymentClientTests | #164 - Refactoring PaymentClientTests
| Viincenttt/MollieApi | Mollie.Tests.Unit/Client/PaymentClientTests.cs | mit | 1,594,145,015 | using Mollie.Api.Client;
using Mollie.Api.Models;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.Payment.Request;
using Mollie.Api.Models.Payment.Response;
using NUnit.Framework;
using RichardSzalay.MockHttp;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
namespace Mo... | using Mollie.Api.Client;
using Mollie.Api.Models;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.Payment.Request;
using Mollie.Api.Models.Payment.Response;
using NUnit.Framework;
using RichardSzalay.MockHttp;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
namespace Mo... |
2c9b65ef02d697e53c713a98860ab79e72441ed6 | Whoops, fix these from the rename | Whoops, fix these from the rename
Promote to: 3.3.0
| GoCarrot/teak-unity,GoCarrot/teak-unity,GoCarrot/teak-unity,GoCarrot/teak-unity,GoCarrot/teak-unity | Assets/Teak/TeakNotification.cs | apache-2.0 | 1,594,144,805 | #region References
/// @cond hide_from_doxygen
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using MiniJSON.Teak;
#if UNITY_EDITOR
using System.IO;
using System.Net;
using System.Text;
#endif
/// @endcond
#endregion
/// <summary>
/... | #region References
/// @cond hide_from_doxygen
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using MiniJSON.Teak;
#if UNITY_EDITOR
using System.IO;
using System.Net;
using System.Text;
#endif
/// @endcond
#endregion
/// <summary>
/... |
eaf5a15c8a8d603186490e339e8628a26cac15c3 | Corrected hash values on Vorbis 1.3.7 (Legacy .NET / MacOS) | Corrected hash values on Vorbis 1.3.7 (Legacy .NET / MacOS)
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Api.Tests/DataSources/EncodeValidFileDataSource.cs | agpl-3.0 | 1,594,144,743 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... |
070aecf12176d019b763d0f39820c0963a89e43b | Remove obsolete Vorbis 1.3.5 results. | Remove obsolete Vorbis 1.3.5 results.
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Api.Tests/DataSources/SaveMetadataValidFileSource.cs | agpl-3.0 | 1,594,144,628 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... |
8bb424ead145cde367e7b7c916a20831c1f1150e | Minor fix to the ShardRegion buffer capacity log (#4498) | Minor fix to the ShardRegion buffer capacity log (#4498)
| simonlaroche/akka.net,simonlaroche/akka.net | src/contrib/cluster/Akka.Cluster.Sharding/ShardRegion.cs | apache-2.0 | 1,594,144,565 | //-----------------------------------------------------------------------
// <copyright file="ShardRegion.cs" company="Akka.NET Project">
// Copyright (C) 2009-2020 Lightbend Inc. <http://www.lightbend.com>
// Copyright (C) 2013-2020 .NET Foundation <https://github.com/akkadotnet/akka.net>
// </copyright>
//--... | //-----------------------------------------------------------------------
// <copyright file="ShardRegion.cs" company="Akka.NET Project">
// Copyright (C) 2009-2020 Lightbend Inc. <http://www.lightbend.com>
// Copyright (C) 2013-2020 .NET Foundation <https://github.com/akkadotnet/akka.net>
// </copyright>
//--... |
21ef47d3801e019de64872c7e3669c270c4b6860 | Remove Vorbis / Windows / Intel results as AMD now generates same output. | Remove Vorbis / Windows / Intel results as AMD now generates same output.
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Api.Tests/DataSources/EncodeValidFileDataSource.cs | agpl-3.0 | 1,594,144,451 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks 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 later
version.
Au... |
773f3a3584b218c4c3580e2accd34cb474172d9e | Just code style things | Just code style things
| wieslawsoltes/Perspex,grokys/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,Perspex/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,... | src/Avalonia.Controls/ToggleSwitch.cs | mit | 1,594,144,305 | using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Templates;
using Avalonia.LogicalTree;
namespace Avalonia.Controls
{
/// <summary>
/// A Toggle Switch control.
/// </summary>
public class ToggleSwitch : ToggleButton
{
Panel _knobsPanel;
... | using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Templates;
using Avalonia.LogicalTree;
namespace Avalonia.Controls
{
/// <summary>
/// A Toggle Switch control.
/// </summary>
public class ToggleSwitch : ToggleButton
{
static ToggleSwitch()
... |
788beff8d61f2feab409b39c23a635e242d61b26 | Only add Scene Path to the most derived instance | Only add Scene Path to the most derived instance
| JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | debugger/debugger-worker/src/Values/Render/ChildrenRenderers/ComponentChildrenRenderer.cs | apache-2.0 | 1,594,144,118 | using System.Collections.Generic;
using System.Threading;
using JetBrains.Annotations;
using JetBrains.Util;
using MetadataLite.API;
using Mono.Debugging.Autofac;
using Mono.Debugging.Backend.Values.ValueReferences;
using Mono.Debugging.Backend.Values.ValueRoles;
using Mono.Debugging.Client.Values;
using Mono.Debugging... | using System.Collections.Generic;
using System.Threading;
using JetBrains.Annotations;
using JetBrains.Util;
using MetadataLite.API;
using Mono.Debugging.Autofac;
using Mono.Debugging.Backend.Values.ValueReferences;
using Mono.Debugging.Backend.Values.ValueRoles;
using Mono.Debugging.Client.Values;
using Mono.Debugging... |
809e205e397a3712b3895c70a53e5ec29b057126 | Cosmetics. | Cosmetics.
| quartz-software/kephas,quartz-software/kephas,quartz-software/kephas | src/Kephas.Core.Endpoints/HashMessageHandler.cs | mit | 1,594,142,045 | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="HashMessageHandler.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="HashMessageHandler.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the pro... |
d6ce7908de43299a7dbaf1aed5d65c57a0ea0a2b | Fixed HashMessageHandler. | Fixed HashMessageHandler.
| quartz-software/kephas,quartz-software/kephas,quartz-software/kephas | src/Kephas.Core.Endpoints/HashMessageHandler.cs | mit | 1,594,142,014 | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="HashMessageHandler.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="HashMessageHandler.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the pro... |
afa1575fa03f03d39358ae76f769fb8804f1e62f | #164 - Create integration test to verify that creating an order with a single payment methods still works | #164 - Create integration test to verify that creating an order with a single payment methods still works
| Viincenttt/MollieApi | Mollie.Tests.Integration/Api/PaymentTests.cs | mit | 1,594,140,719 | using System;
using System.Net.Http;
using System.Threading.Tasks;
using Mollie.Api.Client;
using Mollie.Api.Models;
using Mollie.Api.Models.List;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.Payment.Request;
using Mollie.Api.Models.Payment.Response;
using Mollie.Api.Models.Payment.Response.Specific;
using... | using System;
using System.Net.Http;
using System.Threading.Tasks;
using Mollie.Api.Client;
using Mollie.Api.Models;
using Mollie.Api.Models.List;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.Payment.Request;
using Mollie.Api.Models.Payment.Response;
using Mollie.Api.Models.Payment.Response.Specific;
using... |
2ff1b7d12fed89e99020e2215c50389cf73ca10a | Add null currency check in CreateHolding | Add null currency check in CreateHolding
| JKarathiya/Lean,AlexCatarino/Lean,StefanoRaggi/Lean,StefanoRaggi/Lean,StefanoRaggi/Lean,jameschch/Lean,QuantConnect/Lean,jameschch/Lean,AlexCatarino/Lean,QuantConnect/Lean,QuantConnect/Lean,AlexCatarino/Lean,JKarathiya/Lean,jameschch/Lean,jameschch/Lean,StefanoRaggi/Lean,JKarathiya/Lean | Brokerages/InteractiveBrokers/InteractiveBrokersBrokerage.cs | apache-2.0 | 1,594,140,596 | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* 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 ... | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* 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 ... |
3940e3fdd780c43675cafb7153a77ffbf3e09fbd | fixed #18: XPathException on extension static error | fixed #18: XPathException on extension static error
| maxtoroq/XCST,maxtoroq/XCST | src/Xcst.Compiler/XcstCompilerFactory.cs | apache-2.0 | 1,594,140,596 | // Copyright 2015 Max Toro Q.
//
// 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 2015 Max Toro Q.
//
// 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... |
706776e923c4be2cfe1e937ad6ba5c7711b9c2c3 | #164 - Create integration test to verify that creating an order with multiple payment methods works | #164 - Create integration test to verify that creating an order with multiple payment methods works
| Viincenttt/MollieApi | Mollie.Tests.Integration/Api/PaymentTests.cs | mit | 1,594,140,342 | using System;
using System.Net.Http;
using System.Threading.Tasks;
using Mollie.Api.Client;
using Mollie.Api.Models;
using Mollie.Api.Models.List;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.Payment.Request;
using Mollie.Api.Models.Payment.Response;
using Mollie.Api.Models.Payment.Response.Specific;
using... | using System;
using System.Net.Http;
using System.Threading.Tasks;
using Mollie.Api.Client;
using Mollie.Api.Models;
using Mollie.Api.Models.List;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.Payment.Request;
using Mollie.Api.Models.Payment.Response;
using Mollie.Api.Models.Payment.Response.Specific;
using... |
061cda41e3fb2a415be3b4c94f87abf2cf373724 | Add unit test | Add unit test
| fredatgithub/UsefulFunctions | UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs | mit | 1,594,140,211 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto;
namespace UnitTestUsefullFunctions
{
[TestClass]
public class UnitTestFunctionCrypto
{
#region Crypto
... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto;
namespace UnitTestUsefullFunctions
{
[TestClass]
public class UnitTestFunctionCrypto
{
#region Crypto
... |
a24209f1a6a97b82939d4cf324400f05409504f4 | Add ExposureNotificationCallbackBroadcastReceiver (#920) | Add ExposureNotificationCallbackBroadcastReceiver (#920)
Co-authored-by: Kazumi Hirose <5392f311bb8d37f0f661a5860e90a3357f2a0295@hotmail.com> | xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents | XPlat/ExposureNotification/source/Xamarin.ExposureNotification/CallbackService.android.cs | mit | 1,594,139,601 | using System.Collections.Generic;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Android.Gms.Nearby.ExposureNotification;
using Android.Runtime;
using AndroidX.Core.App;
namespace Xamarin.ExposureNotifications
{
[BroadcastReceiver(Permission = permissionExposureCallback, Exported = tru... | using System.Collections.Generic;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Android.Gms.Nearby.ExposureNotification;
using Android.Runtime;
using AndroidX.Core.App;
namespace Xamarin.ExposureNotifications
{
[BroadcastReceiver(
Permission = "com.google.android.gms.nearby.exposure... |
18088baae6f1289615c4edc408d0fb584dc5c7dc | Get process list | Get process list
| KankuruSQL/KMO | KServer.cs | mit | 1,594,139,375 | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using static KMO.Enums;
using smo = Microsoft.SqlServer.Management.Smo;
namespace KMO
{
public static class KServer
{
#region General informations
/// <summary>
/// ... | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using static KMO.Enums;
using smo = Microsoft.SqlServer.Management.Smo;
namespace KMO
{
public static class KServer
{
#region General informations
/// <summary>
/// ... |
8d25fdceae43b3c5f9f4e510a5d0ffe2beea1397 | Colors: added ColorSetting.ToString | Colors: added ColorSetting.ToString
| allista/AT_Utils | Unity/UI/Colors.cs | mit | 1,594,138,600 | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... |
3e435c16b1d900434c3abd7cc280d0edb19cd06e | Colors: operator ColorSetting=>Color always returns a Color | Colors: operator ColorSetting=>Color always returns a Color
Even when its argument is null
| allista/AT_Utils | Unity/UI/Colors.cs | mit | 1,594,138,600 | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... |
ddd5d0f466bf5c64e07908c76a199a454e6b0080 | Colors: removed unused Instance prop+field | Colors: removed unused Instance prop+field
| allista/AT_Utils | Unity/UI/Colors.cs | mit | 1,594,138,600 | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... |
bdddb696ad9c4aab8379bc7ee5c830709ae5d054 | Tooltip: refactoring | Tooltip: refactoring
| allista/AT_Utils | Unity/UI/TooltipTrigger.cs | mit | 1,594,138,600 | // TooltipTrigger.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2019 Allis Tauri
using UnityEngine;
using UnityEngine.EventSystems;
namespace AT_Utils.UI
{
public class TooltipTrigger : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
{
public string text;
... | // TooltipTrigger.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2019 Allis Tauri
using UnityEngine;
using UnityEngine.EventSystems;
namespace AT_Utils.UI
{
public class TooltipTrigger : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
{
public string text;
... |
681a889e464ef702265f4cc0f37ca4d43154cd19 | Colors: refactoring | Colors: refactoring
| allista/AT_Utils | Unity/UI/Colors.cs | mit | 1,594,138,600 | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChange... | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... |
22f79c74a5964fcc465556d377ae91f3c3183c35 | Colors: FractionGradient is initialized in static constructor | Colors: FractionGradient is initialized in static constructor
| allista/AT_Utils | Unity/UI/Colors.cs | mit | 1,594,138,600 | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... | // Colors.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System;
using System.Reflection;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using System.Linq;
namespace AT_Utils.UI
{
[Serializable]
public class ColorChanged... |
a5582b165d331af8620ad2676a53863c1b110fc3 | Colorizers: added SetColor method that accepts either name or ColorSetting | Colorizers: added SetColor method that accepts either name or ColorSetting
| allista/AT_Utils | Unity/UI/Colorizers/ColorizerBase.cs | mit | 1,594,138,600 | // Colorizer.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using UnityEngine;
namespace AT_Utils.UI
{
public abstract class ColorizerBase : MonoBehaviour
{
public string Color;
protected ColorSetting setting { get; private set; }
p... | // Colorizer.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using UnityEngine;
namespace AT_Utils.UI
{
public abstract class ColorizerBase : MonoBehaviour
{
public string Color;
protected ColorSetting setting { get; private set; }
p... |
cddfa629807571918182b8490285622402603c3f | Fix MsgSandboxRespawn not being registered client-side. | Fix MsgSandboxRespawn not being registered client-side.
| 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-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Client/Sandbox/SandboxManager.cs | mit | 1,594,138,235 | using System;
using Content.Client.UserInterface;
using Content.Shared.Input;
using Content.Shared.Sandbox;
using Robust.Client.Interfaces.Input;
using Robust.Client.Interfaces.Placement;
using Robust.Client.Interfaces.ResourceManagement;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.Cu... | using System;
using Content.Client.UserInterface;
using Content.Shared.Input;
using Content.Shared.Sandbox;
using Robust.Client.Interfaces.Input;
using Robust.Client.Interfaces.Placement;
using Robust.Client.Interfaces.ResourceManagement;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.Cu... |
b8ded7acfa54cf9e5fd6ffcc647c1375195dd411 | [XCode] Fix XCode Scheme option, missing template declaration | [XCode] Fix XCode Scheme option, missing template declaration
| ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake | Sharpmake.Generators/Apple/XCodeProj.cs | apache-2.0 | 1,594,137,847 | // Copyright (c) 2017 Ubisoft Entertainment
//
// 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 la... | // Copyright (c) 2017 Ubisoft Entertainment
//
// 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 la... |
7ada4fcf035258ff570435e7acb1878a2cfa5ccf | Fixed ATGroundAnchor.Update in Editor | Fixed ATGroundAnchor.Update in Editor
Probably related to #218
| allista/AT_Utils | Modules/ATGroundAnchor.cs | mit | 1,594,137,288 | // ModuleGroundAnchor.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using JetBrains.Annotations;
using UnityEngine;
namespace AT_Utils
{
[SuppressMessage("ReSharper", "... | // ModuleGroundAnchor.cs
//
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2018 Allis Tauri
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using JetBrains.Annotations;
using UnityEngine;
namespace AT_Utils
{
[SuppressMessage("ReSharper", "... |
0cb683f112a7aa6e0c7305ce56d52ed5858b8e10 | Refactorings | Refactorings
| Vanaheimr/Styx | Styx/Illias/ExtensionMethods/XElementExtensions.cs | apache-2.0 | 1,594,136,763 | /*
* Copyright (c) 2010-2020 Achim 'ahzf' Friedland <achim.friedland@graphdefined.com>
* This file is part of Illias <http://www.github.com/Vanaheimr/Illias>
*
* 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 c... | /*
* Copyright (c) 2010-2020 Achim 'ahzf' Friedland <achim.friedland@graphdefined.com>
* This file is part of Illias <http://www.github.com/Vanaheimr/Illias>
*
* 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 c... |
de34a192705b34e81f92be0f6228884144c00542 | 565: TextServiceClient | 565: TextServiceClient
| LayoutFarm/PixelFarm | src/PixelFarm/PixelFarm.Drawing.GLES/TextPrinter/GLBitmapGlyphTextPrinter.cs | bsd-2-clause | 1,594,136,575 | //MIT, 2016-present, WinterDev
using System;
using System.Collections.Generic;
//
using PixelFarm.CpuBlit;
using PixelFarm.CpuBlit.BitmapAtlas;
using PixelFarm.Drawing;
using Typography.TextLayout;
using Typography.OpenFont;
using Typography.TextBreak;
using Typography.FontManagement;
using Typography.OpenFont.Extens... | //MIT, 2016-present, WinterDev
using System;
using System.Collections.Generic;
//
using PixelFarm.CpuBlit;
using PixelFarm.CpuBlit.BitmapAtlas;
using PixelFarm.Drawing;
using Typography.TextLayout;
using Typography.OpenFont;
using Typography.TextBreak;
using Typography.FontManagement;
using Typography.OpenFont.Extens... |
e35c2ab80168ead1d51f5cec3238edf92c0cfbbd | Adding code to cleanup the removed SurveyConfigurations, QuestionSets, Questions and Options. | Adding code to cleanup the removed SurveyConfigurations, QuestionSets, Questions and Options.
| microting/eform-sdk-dotnet,microting/eform-sdk-dotnet | eFormCore/Core.cs | mit | 1,594,136,449 | /*
The MIT License (MIT)
Copyright (c) 2007 - 2020 Microting A/S
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify... | /*
The MIT License (MIT)
Copyright (c) 2007 - 2020 Microting A/S
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify... |
5489d00d94a0dedb55528214b1486eb9051622a9 | Fix - Box richieste, sistemato conteggio | Fix - Box richieste, sistemato conteggio
| vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Persistence.MongoDB/Box/GetBoxRichieste.cs | agpl-3.0 | 1,594,136,075 | //-----------------------------------------------------------------------
// <copyright file="GetRichieste.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License... | //-----------------------------------------------------------------------
// <copyright file="GetRichieste.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License... |
31016ff0090250b3a2832327f0f6b9f88f04abfc | Add units for carbon calculation | Add units for carbon calculation
modified: Nucleus/Nucleus/Units/MeasurementUnit.cs
| pnjeffries/freebuild,pnjeffries/Nucleus | Nucleus/Nucleus/Units/MeasurementUnit.cs | mit | 1,594,135,712 | using System;
namespace Nucleus.Units
{
/// <summary>
/// Class which may be used to represent a unit of measurement
/// </summary>
[Serializable]
public class MeasurementUnit
{
#region Constants
/// <summary>
/// Percent, a number or ratio expressed as a fraction of 1... | using System;
namespace Nucleus.Units
{
/// <summary>
/// Class which may be used to represent a unit of measurement
/// </summary>
[Serializable]
public class MeasurementUnit
{
#region Constants
/// <summary>
/// Percent, a number or ratio expressed as a fraction of 1... |
db661b51c4b613754d289082c6536e4008fe09c0 | Adding changes to set removed sites, workers, units as removed if they have been removed on server side. | Adding changes to set removed sites, workers, units as removed if they have been removed on server side.
| microting/eform-sdk-dotnet,microting/eform-sdk-dotnet | eFormCore/AdminTools.cs | mit | 1,594,135,198 | /*
The MIT License (MIT)
Copyright (c) 2007 - 2020 Microting A/S
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify... | /*
The MIT License (MIT)
Copyright (c) 2007 - 2020 Microting A/S
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify... |
ce6ec13f915af19c683312cd60e9cc1fae46ab40 | Fix CirclePritimive filled draw | Fix CirclePritimive filled draw
| lucas-miranda/Raccoon | Raccoon/Graphics/Drawables/Primitives/CirclePrimitive.cs | mit | 1,594,134,430 | using Raccoon.Util;
namespace Raccoon.Graphics.Primitives {
public class CirclePrimitive : PrimitiveGraphic {
#region Private Members
private Vector2[] _vertices;
private int[] _indices;
private int _segments;
private float _radius;
private bool _filled;
... | using Raccoon.Util;
namespace Raccoon.Graphics.Primitives {
public class CirclePrimitive : PrimitiveGraphic {
#region Private Members
private Vector2[] _vertices;
private int[] _indices;
private int _segments;
private float _radius;
private bool _filled;
... |
5c584126eb09d62d648ef6e20db5f3dad8992c77 | Make wrapped array private | Make wrapped array private
| ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,s... | osu.Framework/Graphics/Containers/GridContainerContent.cs | mit | 1,594,134,429 | // 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;
namespace osu.Framework.Graphics.Containers
{
/// <summary>
/// Implements a jagged ar... | // 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;
namespace osu.Framework.Graphics.Containers
{
/// <summary>
/// Implements a jagged ar... |
018141fd77745650efe3275a0c9e57d9766dc7c6 | Strategy. RestoreChildOrders option. | Strategy. RestoreChildOrders option.
| StockSharp/StockSharp | Algo/Strategies/Strategy.cs | apache-2.0 | 1,594,134,262 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
a2b0fce7be6ccfb9c1b71ba0bae54e724eef2892 | Remove unnecessary code | Remove unnecessary code
| PerfectXL/XLParser,PerfectXL/XLParser,PerfectXL/XLParser | src/XLParser/ParserReference.cs | mpl-2.0 | 1,594,133,993 | using System.Linq;
using Irony.Parsing;
namespace XLParser
{
public enum ReferenceType
{
Cell,
CellRange,
UserDefinedName,
HorizontalRange,
VerticalRange,
RefError,
Table
}
public class ParserReference
{
public const int MaxRangeHeig... | using System.Linq;
using Irony.Parsing;
namespace XLParser
{
public enum ReferenceType
{
Cell,
CellRange,
UserDefinedName,
HorizontalRange,
VerticalRange,
RefError,
Table
}
public class ParserReference
{
public const int MaxRangeHeig... |
866a790019307a0343ef7d5f5271c1f6d019ce43 | fix codefactor | fix codefactor
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/TransactionDetails/ViewModels/TransactionDetailsViewModel.cs | mit | 1,594,132,933 | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
using WalletWasabi.Stores;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : Re... | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
using WalletWasabi.Stores;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : Re... |
92fee479cacc95ff0f8b1dc738b5b3bd298d0697 | emit empty AddressAmountTuple if txn is not found on BitcoinStore | emit empty AddressAmountTuple if txn is not found on BitcoinStore
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/TransactionDetails/ViewModels/TransactionDetailsViewModel.cs | mit | 1,594,132,754 | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
using WalletWasabi.Stores;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : Re... | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
using WalletWasabi.Stores;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : Re... |
d2bad3b16b1531108c206c55f0a49f4fb1072896 | emit empty AddressAmountTuple if txn is not found on BitcoinStore | emit empty AddressAmountTuple if txn is not found on BitcoinStore
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/TransactionDetails/ViewModels/TransactionDetailsViewModel.cs | mit | 1,594,132,576 | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
using WalletWasabi.Stores;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : Re... | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
using WalletWasabi.Stores;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : Re... |
8f01e366d6fbe449d0a08befaaafd399ff588a87 | DiagosticSource is not CLSCompliant. | DiagosticSource is not CLSCompliant.
| autofac/Autofac,autofac/Autofac | src/Autofac/Properties/AssemblyInfo.cs | mit | 1,594,132,429 | using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Autofac")]
[assembly: InternalsVisibleTo("Autofac.Test, PublicKey=00240000048000009400000006020000002400005253413100040000010001008728425885ef385e049261... | using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Autofac")]
[assembly: InternalsVisibleTo("Autofac.Test, PublicKey=00240000048000009400000006020000002400005253413100040000010001008728425885ef385e049261... |
6b521c6781347bb23e84e95c56130a9227a1eba0 | bump version to 3.0.2 | bump version to 3.0.2
| FatturaElettronicaPA/FatturaElettronicaPA.Forms | Properties/AssemblyInfo.cs | bsd-3-clause | 1,594,132,331 | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("FatturaElettronica.Forms")]
[assembly: As... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("FatturaElettronica.Forms")]
[assembly: As... |
25368ca5e8fe2c237ed9704bc8ae9ab2d7297634 | #113 - Remove unnecessery ToString() call and handle null values for SequencyType parameter | #113 - Remove unnecessery ToString() call and handle null values for SequencyType parameter
| Viincenttt/MollieApi | Mollie.Api/Client/PaymentMethodClient.cs | mit | 1,594,131,570 | using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Mollie.Api.Client.Abstract;
using Mollie.Api.Extensions;
using Mollie.Api.Models;
using Mollie.Api.Models.List;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.PaymentMethod;
using Mollie.Api.Models... | using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Mollie.Api.Client.Abstract;
using Mollie.Api.Extensions;
using Mollie.Api.Models;
using Mollie.Api.Models.List;
using Mollie.Api.Models.Payment;
using Mollie.Api.Models.PaymentMethod;
using Mollie.Api.Models... |
8ff5b62536c76fc149b4c6aca22c936517096185 | Format suggestions | Format suggestions
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/TransactionDetails/ViewModels/TransactionDetailsViewModel.cs | mit | 1,594,129,779 | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : ReactiveObject
{
private i... | using System;
using System.Linq;
using NBitcoin;
using ReactiveUI;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Gui.Controls.TransactionDetails.Models;
namespace WalletWasabi.Gui.Controls.TransactionDetails.ViewModels
{
public class TransactionDetailsViewModel : ReactiveObject
{
private ... |
89c5294c367c3688011f936cc486f2f8a1410954 | Format suggestions | Format suggestions
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/TransactionDetails/Models/InOutInfoTuple.cs | mit | 1,594,129,743 | using System;
namespace WalletWasabi.Gui.Controls.TransactionDetails.Models
{
public readonly struct InOutInfoTuple : IEquatable<InOutInfoTuple>
{
public InOutInfoTuple(AddressAmountTuple input, AddressAmountTuple output)
{
Input = input;
Output = output;
}
public AddressAmountTuple Input { get; }
p... | using System;
namespace WalletWasabi.Gui.Controls.TransactionDetails.Models
{
public readonly struct InOutInfoTuple : IEquatable<InOutInfoTuple>
{
public InOutInfoTuple(AddressAmountTuple input, AddressAmountTuple output)
{
Input = input;
Output = output;
}
public AddressAmountTuple Input { get; }
p... |
0096a21f6099571dc0b50e5bf60887b383d6d9a2 | Format suggestions | Format suggestions
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/TransactionDetails/Models/AddressAmountTuple.cs | mit | 1,594,129,702 | using NBitcoin;
using System;
namespace WalletWasabi.Gui.Controls.TransactionDetails.Models
{
public readonly struct AddressAmountTuple : IEquatable<AddressAmountTuple>
{
public AddressAmountTuple(string address = default, Money amount = default, bool isEmpty = true)
{
Address = address;
Amount = amount;
... | using NBitcoin;
using System;
namespace WalletWasabi.Gui.Controls.TransactionDetails.Models
{
public readonly struct AddressAmountTuple : IEquatable<AddressAmountTuple>
{
public AddressAmountTuple(string address = default(string), Money amount = default(Money), bool isEmpty = true)
{
Address = address;
Am... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.