commit stringlengths 40 40 | subject stringlengths 4 1.73k | repos stringlengths 5 127k | old_file stringlengths 2 751 | new_file stringlengths 2 751 | new_contents stringlengths 1 8.98k | old_contents stringlengths 0 6.59k | license stringclasses 13
values | lang stringclasses 23
values |
|---|---|---|---|---|---|---|---|---|
2f2c13edba681bd2557d6ff929cf557306e7e783 | add tests for DigitCount() | martinlindhe/Punku | PunkuTests/Extensions/IntExtensions.cs | PunkuTests/Extensions/IntExtensions.cs | using System;
using NUnit.Framework;
using Punku;
[TestFixture]
[Category ("Extensions")]
public class Extensions_Int
{
[Test]
public void Negative01 ()
{
int x = 1;
Assert.AreEqual (x.IsNegative (), false);
}
[Test]
public void Negative02 ()
{
int x = 0;
Assert.AreEqual (x.IsNegative (), false);
}
... | using System;
using NUnit.Framework;
using Punku;
[TestFixture]
[Category ("Extensions")]
public class Extensions_Int
{
[Test]
public void Negative01 ()
{
int x = 1;
Assert.AreEqual (x.IsNegative (), false);
}
[Test]
public void Negative02 ()
{
int x = 0;
Assert.AreEqual (x.IsNegative (), false);
}
... | mit | C# |
de1aeb2eddbb0f944f2cac7f953882c4ef4961e8 | Increment version to 1.5.0 | ewrogers/SleepHunter4,ewrogers/SleepHunter | SleepHunter/Properties/AssemblyInfo.cs | SleepHunter/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
// 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("SleepHunter")]
[ass... | using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
// 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("SleepHunter")]
[ass... | mit | C# |
7785850622cb0efc72bf449c766440738be0f589 | Enable multi-core JIT. | JeffreyZhao/SeeJit | src/SeeJit/Program.cs | src/SeeJit/Program.cs | namespace SeeJit
{
using System;
using System.IO;
using System.Linq;
using System.Runtime;
using CommandLine;
class Program
{
static void Main(string[] args)
{
ProfileOptimization.SetProfileRoot(Path.GetDirectoryName(typeof(Program).Assembly.Location... | namespace SeeJit
{
using System;
using System.Linq;
using CommandLine;
class Program
{
static void Main(string[] args)
{
var parseResult = Parser.Default.ParseArguments<Options>(args);
if (parseResult.Errors.Any())
return;
... | mit | C# |
4c6b962aa75113cad5835288cef8fb6e8e039683 | Update PersonGender.cs | LordMike/TMDbLib | TMDbLib/Objects/People/PersonGender.cs | TMDbLib/Objects/People/PersonGender.cs | using TMDbLib.Utilities;
namespace TMDbLib.Objects.People
{
public enum PersonGender
{
[EnumValue(null)]
Unknown = 0,
Female = 1,
Male = 2,
NonBinary = 3
}
}
| using TMDbLib.Utilities;
namespace TMDbLib.Objects.People
{
public enum PersonGender
{
[EnumValue(null)]
Unknown = 0,
Female = 1,
Male = 2
}
} | mit | C# |
3354db9a5144e4a281a849948c8904c85fe53404 | Scale summary video to 720p | chadly/vlc-rtsp,chadly/cams,chadly/vlc-rtsp,chadly/vlc-rtsp | src/VideoConverter.cs | src/VideoConverter.cs | using System.Diagnostics;
namespace Cams
{
public static class VideoConverter
{
public static bool CodecCopy(string inputFile, string outputFile)
{
return Run($"-y -i {inputFile} -codec copy {outputFile}");
}
public static bool Concat(string listFilePath, string outputFile)
{
return Run($"-y -safe ... | using System.Diagnostics;
namespace Cams
{
public static class VideoConverter
{
public static bool CodecCopy(string inputFile, string outputFile)
{
return Run($"-y -i {inputFile} -codec copy {outputFile}");
}
public static bool Concat(string listFilePath, string outputFile)
{
return Run($"-y -safe ... | mit | C# |
2245b10022bf60ee87eaaeb09e64eff1c814ce8d | Update IAppEnvironment.cs | ivan-prodanov/DotNet.Startup | Contracts/IAppEnvironment.cs | Contracts/IAppEnvironment.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotNet.Startup.Contracts
{
public interface IAppEnvironment
{
string EnvironmentName { get; }
IReadOnlyList<string> EnvironmentTags { get; }
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotNet.Startup.Contracts
{
public interface IAppEnvironment
{
string EnvironmentName { get; }
IReadOnlyList<string> EnvironmentTags { get; }
}
}
| unlicense | C# |
03911d60cd07f6fafdf191203435ea915bad1bc2 | fix path given changes to dir structure | AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us | mikeandwan.us/Views/About/Index.cshtml | mikeandwan.us/Views/About/Index.cshtml | @{
Layout = "_LayoutSidebar";
ViewBag.Title = "about";
}
@section header {
@Html.Partial("_PageHeader", "About Us")
}
@section sidebar {
@Html.Partial("_AboutSidebar", "index")
}
<img class="img-responsive center-block" src="/images/2011/dinner_with_friends/md/DSC_7713.jpg" />
Hello and welcome to our ... | @{
Layout = "_LayoutSidebar";
ViewBag.Title = "about";
}
@section header {
@Html.Partial("_PageHeader", "About Us")
}
@section sidebar {
@Html.Partial("_AboutSidebar", "index")
}
<img class="img-responsive center-block" src="/images/2011/dinner_with_friends/fullsize/DSC_7713.jpg" />
Hello and welcome... | mit | C# |
de5b6f6cdf6134879cd638952cf80f9a95795278 | clean up | RogerKratz/mbcache | MbCache/Configuration/FluentBuilder.cs | MbCache/Configuration/FluentBuilder.cs | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using MbCache.Logic;
namespace MbCache.Configuration
{
public class FluentBuilder<T> : IFluentBuilder<T>
{
private readonly CacheBuilder _cacheBuilder;
private readonly IDictionary<Type, ImplementationAndMethods> _cachedMeth... | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using MbCache.Logic;
namespace MbCache.Configuration
{
public class FluentBuilder<T> : IFluentBuilder<T>
{
private readonly CacheBuilder _cacheBuilder;
private readonly IDictionary<Type, ImplementationAndMethods> _cachedMeth... | mit | C# |
29045964d53db989f709f2b321b561ab14e3bc14 | Update Result.cs | nmarazov/Team-Sazerac | OOPTeamwork/OOPTeamwork/Core/Result.cs | OOPTeamwork/OOPTeamwork/Core/Result.cs | using System;
namespace OOPTeamwork.Core
{
public class Result
{
private int playerOneNumOfWins;
private int playerTwoNumOfWins;
public int PlayerOneNumOfWins
{
get { return playerOneNumOfWins; }
private set { playerOneNumOfWins = value; }
}
... | namespace OOPTeamwork.Core
{
public class Result
{
}
}
| mit | C# |
5924ebb71e922d608aaef7ccd6d6ac02a761b95f | Add UpdateEventImageUrlHandlerShould unit test | c0g1t8/allReady,JowenMei/allReady,arst/allReady,jonatwabash/allReady,GProulx/allReady,pranap/allReady,binaryjanitor/allReady,bcbeatty/allReady,bcbeatty/allReady,forestcheng/allReady,HTBox/allReady,colhountech/allReady,anobleperson/allReady,mgmccarthy/allReady,colhountech/allReady,gitChuckD/allReady,JowenMei/allReady,HT... | AllReadyApp/Web-App/AllReady.UnitTest/Areas/Admin/Features/Events/UpdateEventImageUrlHandlerShould.cs | AllReadyApp/Web-App/AllReady.UnitTest/Areas/Admin/Features/Events/UpdateEventImageUrlHandlerShould.cs | using System.Linq;
using System.Threading.Tasks;
using AllReady.Areas.Admin.Features.Events;
using AllReady.Models;
using Xunit;
namespace AllReady.UnitTest.Areas.Admin.Features.Events
{
public class UpdateEventImageUrlHandlerShould : InMemoryContextTest
{
[Fact]
public async Task U... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AllReady.UnitTest.Areas.Admin.Features.Events
{
public class UpdateEventImageUrlHandlerShould
{
}
}
| mit | C# |
d05f24b78b4873239067132da757bd99f98e7387 | Bump version to 3.2.3.0. | adjackura/compute-image-windows,ning-yang/compute-image-windows,ning-yang/compute-image-windows,GoogleCloudPlatform/compute-image-windows,adjackura/compute-image-windows,illfelder/compute-image-windows,GoogleCloudPlatform/compute-image-windows,illfelder/compute-image-windows | agent/Common/Properties/VersionInfo.cs | agent/Common/Properties/VersionInfo.cs | /*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | /*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | apache-2.0 | C# |
5763e3cca50f48acf66f2ee65efd4f4f62a2b8e0 | Make Benchmark class a bit more flexible. | ppy/osu-framework,ppy/osu-framework,Tom94/osu-framework,smoogipooo/osu-framework,Tom94/osu-framework,ZLima12/osu-framework,peppy/osu-framework,NeoAdonis/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,DrabWeb/osu-framework,RedNesto/osu-framework,naoey/osu-framework,default0/osu-framework,Nab... | osu.Framework.VisualTests/Benchmark.cs | osu.Framework.VisualTests/Benchmark.cs | // Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using System.Diagnostics;
using osu.Framework.GameModes.Testing;
namespace osu.Framework.VisualTests
{
public class Benchmark : Ga... | // Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using osu.Framework.GameModes.Testing;
using osu.Framework.VisualTests.Tests;
namespace osu.Framework.VisualTests
{
public class Benchmark : Game... | mit | C# |
6b734c8e6a6d8e59e9bfb236d2d70832bd672bc8 | Bump version to 8.2. For Sitecore 8.1. | kamsar/Synthesis | Source/SharedAssemblyInfo.cs | Source/SharedAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
using System;
[assembly: AssemblyCompany("Connective DX")]
[assembly: AssemblyProduct("Synthesis")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("8.2.0.0")]
[assembly: AssemblyFileVersion("8.2.0.0")]
[assembly: AssemblyInformationalVersion("8.... | using System.Reflection;
using System.Runtime.InteropServices;
using System;
[assembly: AssemblyCompany("Connective DX")]
[assembly: AssemblyProduct("Synthesis")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("8.1.1.0")]
[assembly: AssemblyFileVersion("8.1.1.0")]
[assembly: AssemblyInformationalVersion("8.... | mit | C# |
58d3f2653382baf65fb91e210717264dd0d111fc | update test | AspectCore/AspectCore-Framework,AspectCore/Lite,AspectCore/Abstractions,AspectCore/AspectCore-Framework | extras/test/AspectCore.Extensions.DependencyInjection.Test/Use_Built_In_ContainerSpecificationTests.cs | extras/test/AspectCore.Extensions.DependencyInjection.Test/Use_Built_In_ContainerSpecificationTests.cs | using System;
using AspectCore.Configuration;
using AspectCore.Injector;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Specification;
namespace AspectCore.Extensions.DependencyInjection.Test
{
// public class Use_Built_In_ContainerSpecificationTests : DependencyInje... | using System;
using AspectCore.Configuration;
using AspectCore.Injector;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Specification;
namespace AspectCore.Extensions.DependencyInjection.Test
{
public class Use_Built_In_ContainerSpecificationTests : DependencyInject... | mit | C# |
639a843b625c4f46eb09ab8974085d506eebf0f4 | Update MFractor feed and product description (#353) | planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin | src/Firehose.Web/Authors/MFractor.cs | src/Firehose.Web/Authors/MFractor.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MFractor : IAmACommunityMember
{
public string FirstName => "MFractor";
public string LastName => "";
public string Stat... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MFractor : IAmACommunityMember
{
public string FirstName => "MFractor";
public string LastName => "";
public string Stat... | mit | C# |
c702be7a0ff8d23ce7d01163494aeb8fa70df90c | move to version 1.4.1 | noelbundick/Formo,Moulde/Formo,ChrisMissal/Formo,madhon/Formo | src/Formo/Properties/AssemblyInfo.cs | src/Formo/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
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: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
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: AssemblyTi... | mit | C# |
0ea37723d5c66a933d9b43f899e27ba2b1dceaae | Move Content API over to V3 | marska/habitrpg-api-dotnet-client | src/HabitRPG.Client/Model/Content.cs | src/HabitRPG.Client/Model/Content.cs | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace HabitRPG.Client.Model
{
public class Content
{
[JsonProperty("eggs")]
public Dictionary<String, Egg> Eggs { get; set; }
[JsonProperty("dropEggs")]
public Dictionary<String, Egg> DropEggs { get; se... | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace HabitRPG.Client.Model
{
public class Content
{
[JsonProperty("eggs")]
public Dictionary<String, Egg> Eggs { get; set; }
[JsonProperty("dropEggs")]
public Dictionary<String, Egg> DropEggs { get; set; }
[JsonProperty("questEg... | apache-2.0 | C# |
f631f2e9324f1bfee847ce35111a415f2ae742a8 | Add support for specifying that -lgcc_eh is needed. | cwensley/maccore,mono/maccore,jorik041/maccore | src/ObjCRuntime/LinkWithAttribute.cs | src/ObjCRuntime/LinkWithAttribute.cs | //
// Authors: Jeffrey Stedfast
//
// Copyright 2011 Xamarin Inc.
//
// 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,... | //
// Authors: Jeffrey Stedfast
//
// Copyright 2011 Xamarin Inc.
//
// 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,... | apache-2.0 | C# |
672933310089a18b594205d4b463b854f6bde053 | Add documentation to ImageOrientation | mono/taglib-sharp,CamargoR/taglib-sharp,punker76/taglib-sharp,archrival/taglib-sharp,punker76/taglib-sharp,Clancey/taglib-sharp,archrival/taglib-sharp,CamargoR/taglib-sharp,hwahrmann/taglib-sharp,Clancey/taglib-sharp,Clancey/taglib-sharp,hwahrmann/taglib-sharp | src/TagLib/Image/ImageOrientation.cs | src/TagLib/Image/ImageOrientation.cs | using System;
namespace TagLib.Image
{
/// <summary>
/// Describes the orientation of an image.
/// Values are from http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/EXIF.html
/// </summary>
public enum ImageOrientation : uint
{
Unknown = 0,
Horizontal = 1,
MirrorHorizontal = 2,
Rotate180Degrees = 3,... | using System;
namespace TagLib.Image
{
public enum ImageOrientation : uint
{
Unknown = 0,
Horizontal = 1,
MirrorHorizontal = 2,
Rotate180Degrees = 3,
MirrorVertical = 4,
MirrorHorizontalAndRotate270DegreesClockwise = 5,
Rotate90DegreesClockwise = 6,
MirrorHorizontalAndRotate90DegreesClockwise = 7,
... | lgpl-2.1 | C# |
221c51c5d5ee1e47973e5d2604d800926c922b26 | Add more animeseason methods | dukemiller/anime-downloader | anime-downloader/Models/AnimeSeason.cs | anime-downloader/Models/AnimeSeason.cs | using System;
using System.Xml.Serialization;
using anime_downloader.Classes;
using anime_downloader.Enums;
namespace anime_downloader.Models
{
[Serializable]
public class AnimeSeason
{
[XmlAttribute("Year")]
public int Year { get; set; }
[XmlAttribute("Season")]
public Se... | using System;
using System.Xml.Serialization;
using anime_downloader.Classes;
using anime_downloader.Enums;
namespace anime_downloader.Models
{
[Serializable]
public class AnimeSeason
{
[XmlAttribute("Year")]
public int Year { get; set; }
[XmlAttribute("Season")]
public Se... | apache-2.0 | C# |
1f1cd8dae245fa595255940f6a7bdf9808454fbf | Set active to null (true) by default | repometric/linterhub-cli,binore/linterhub-cli,repometric/linterhub-cli,binore/linterhub-cli,repometric/linterhub-cli,binore/linterhub-cli | src/cli/Strategy/ActivateStrategy.cs | src/cli/Strategy/ActivateStrategy.cs | namespace Linterhub.Cli.Strategy
{
using System.IO;
using System.Linq;
using Runtime;
using Engine;
using Engine.Exceptions;
using Linterhub.Engine.Extensions;
public class ActivateStrategy : IStrategy
{
public object Run(RunContext context, LinterEngine engine, LogManager log)
... | namespace Linterhub.Cli.Strategy
{
using System.IO;
using System.Linq;
using Runtime;
using Engine;
using Engine.Exceptions;
using Linterhub.Engine.Extensions;
public class ActivateStrategy : IStrategy
{
public object Run(RunContext context, LinterEngine engine, LogManager log)
... | mit | C# |
ff4362ef2b831377f632a1d346abb50f79fdb54c | Remove one more async-await pair | ppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,Tom94/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,ZLima12/osu-fram... | osu.Framework/Graphics/Textures/RawTextureLoaderStore.cs | osu.Framework/Graphics/Textures/RawTextureLoaderStore.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System.Threading.Tasks;
using osu.Framework.IO.Stores;
namespace osu.Framework.Graphics.Textures
{
public class RawTextureLoaderStore : ResourceSto... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System.Threading.Tasks;
using osu.Framework.IO.Stores;
namespace osu.Framework.Graphics.Textures
{
public class RawTextureLoaderStore : ResourceSto... | mit | C# |
a6420def9909b6e375c57f6f43e1b9f05edb401f | Make hyperdash test automatic | smoogipoo/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu-new,johnneijzen/osu,peppy/osu,ppy/osu,UselessToucan/osu,EVAST9919/osu,peppy/osu,smoogipoo/osu,ppy/osu,EVAST9919/osu,ppy/osu,2yangk23/osu,2yangk23/osu,ZLima12/osu,ZLima12/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,johnneijzen/osu,Neo... | osu.Game.Rulesets.Catch.Tests/TestSceneHyperDash.cs | osu.Game.Rulesets.Catch.Tests/TestSceneHyperDash.cs | // 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 NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Catch.Tests
{
[TestF... | // 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 NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Catch.Tests
{
[TestF... | mit | C# |
c9d352a1aba9fe75cd460193d0e7285e0c85276a | Add AccessAdminPanel to other roles than administrator (#1678) | OrchardCMS/Brochard,stevetayloruk/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Or... | src/OrchardCore.Modules/OrchardCore.Admin/Permissions.cs | src/OrchardCore.Modules/OrchardCore.Admin/Permissions.cs | using System.Collections.Generic;
using OrchardCore.Security.Permissions;
namespace OrchardCore.Admin
{
public class Permissions : IPermissionProvider
{
public static readonly Permission AccessAdminPanel = new Permission("AccessAdminPanel", "Access admin panel");
public IEnumerable<Permission>... | using System.Collections.Generic;
using OrchardCore.Security.Permissions;
namespace OrchardCore.Admin
{
public class Permissions : IPermissionProvider
{
public static readonly Permission AccessAdminPanel = new Permission("AccessAdminPanel", "Access admin panel");
public IEnumerable<Permission... | bsd-3-clause | C# |
859035ce5d210a4dd0dd01ccfb71a7141d537573 | Add support for `product` on the Plan Update API | richardlawley/stripe.net,stripe/stripe-dotnet | src/Stripe.net/Services/Plans/StripePlanUpdateOptions.cs | src/Stripe.net/Services/Plans/StripePlanUpdateOptions.cs | using System.Collections.Generic;
using Newtonsoft.Json;
namespace Stripe
{
public class StripePlanUpdateOptions : StripeBaseOptions, ISupportMetadata
{
[JsonProperty("active")]
public bool? Active { get; set; }
[JsonProperty("metadata")]
public Dictionary<string, string> Meta... | using System.Collections.Generic;
using Newtonsoft.Json;
namespace Stripe
{
public class StripePlanUpdateOptions : StripeBaseOptions, ISupportMetadata
{
[JsonProperty("active")]
public bool? Active { get; set; }
[JsonProperty("metadata")]
public Dictionary<string, string> Meta... | apache-2.0 | C# |
9e7fd98d1dc1249b4280923ee66718d0c25806eb | Remove clashing mnemonic from Unity Usages | JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | resharper/resharper-unity/src/CSharp/Feature/Services/Navigation/GoToUnityUsages/GoToUnityUsagesProvider.cs | resharper/resharper-unity/src/CSharp/Feature/Services/Navigation/GoToUnityUsages/GoToUnityUsagesProvider.cs | using System.Collections.Generic;
using JetBrains.Application;
using JetBrains.Application.DataContext;
using JetBrains.Collections.Viewable;
using JetBrains.ProjectModel;
using JetBrains.ProjectModel.DataContext;
using JetBrains.ReSharper.Feature.Services.Navigation.ContextNavigation;
using JetBrains.ReSharper.Feature... | using System;
using System.Collections.Generic;
using JetBrains.Application;
using JetBrains.Application.DataContext;
using JetBrains.Collections.Viewable;
using JetBrains.ProjectModel;
using JetBrains.ProjectModel.DataContext;
using JetBrains.ReSharper.Feature.Services.Navigation.ContextNavigation;
using JetBrains.ReS... | apache-2.0 | C# |
45c42c3ca274496c5b0cc7218d28acd114523c62 | fix a bug | akrisiun/npoi,jcridev/npoi,Yijtx/npoi,stuartwmurray/npoi,JesseQin/npoi,vinod1988/npoi,xl1/npoi,tkalubi/npoi-1,tonyqus/npoi,antony-liu/npoi | main/SS/Formula/Udf/DefaultUDFFinder.cs | main/SS/Formula/Udf/DefaultUDFFinder.cs | /* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for Additional information regarding copyright ownership.
The ASF licenses this file ... | /* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for Additional information regarding copyright ownership.
The ASF licenses this file ... | apache-2.0 | C# |
1fa5b5c74115dca13fcee46e15cbbea7f0dafcc6 | Update INotifyPropertyChangedEx.shared.cs (#918) | FormsCommunityToolkit/FormsCommunityToolkit | src/CommunityToolkit/Xamarin.CommunityToolkit/ObjectModel/Extensions/INotifyPropertyChangedExtension.shared.cs | src/CommunityToolkit/Xamarin.CommunityToolkit/ObjectModel/Extensions/INotifyPropertyChangedExtension.shared.cs | using System;
using System.ComponentModel;
namespace Xamarin.CommunityToolkit.ObjectModel.Extensions
{
public static class INotifyPropertyChangedExtension
{
public static void WeakSubscribe<T>(this INotifyPropertyChanged target, T subscriber, Action<T, object, PropertyChangedEventArgs> action)
{
_ = target ?... | using System;
using System.ComponentModel;
namespace Xamarin.CommunityToolkit.ObjectModel.Extensions
{
public static class INotifyPropertyChangedExtension
{
public static void WeakSubscribe<T>(this INotifyPropertyChanged target, T subscriber, Action<T, object, EventArgs> action)
{
_ = target ?? throw new Arg... | mit | C# |
710a7524a14f6ffc5791311c5eac79bfced68246 | Kill subprocess if it doesn't exit after the app is closed | chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck | subprocess/Program.cs | subprocess/Program.cs | using System;
using System.Diagnostics;
using System.Threading.Tasks;
using CefSharp.BrowserSubprocess;
namespace TweetDuck.Browser{
static class Program{
internal const string Version = "1.4.1.0";
private static int Main(string[] args){
SubProcess.EnableHighDPISupport();
... | using System;
using CefSharp.BrowserSubprocess;
namespace TweetDuck.Browser{
static class Program{
internal const string Version = "1.4.1.0";
private static int Main(string[] args){
SubProcess.EnableHighDPISupport();
const string typePrefix = "--type=";
... | mit | C# |
fc9b04d1f3c15bb088d9028f33dcaa998478d8dd | 完成了目录系统的WebAPI的代码。 | Zongsoft/Zongsoft.Web | src/Controllers/DirectoryController.cs | src/Controllers/DirectoryController.cs | /*
* Authors:
* 钟峰(Popeye Zhong) <zongsoft@gmail.com>
*
* Copyright (C) 2015 Zongsoft Corporation <http://www.zongsoft.com>
*
* This file is part of Zongsoft.Web.
*
* Zongsoft.Web is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as publ... | /*
* Authors:
* 钟峰(Popeye Zhong) <zongsoft@gmail.com>
*
* Copyright (C) 2015 Zongsoft Corporation <http://www.zongsoft.com>
*
* This file is part of Zongsoft.Web.
*
* Zongsoft.Web is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as publ... | lgpl-2.1 | C# |
6dd905fc641faafa49d6a1c36f57aaf62e4dfe45 | Fix comment about the patch path. | neitsa/PrepareLanding,neitsa/PrepareLanding | src/Defs/MainButtonWorkerToggleWorld.cs | src/Defs/MainButtonWorkerToggleWorld.cs | using RimWorld;
using Verse;
namespace PrepareLanding.Defs
{
/// <summary>
/// This class is called from a definition file when clicking the "World" button on the bottom menu bar while playing
/// (see "\PrepareLanding\Patches\MainButtonDef_Patch.xml").
/// </summary>
public class MainButtonWorke... | using RimWorld;
using Verse;
namespace PrepareLanding.Defs
{
/// <summary>
/// This class is called from a definition file when clicking the "World" button on the bottom menu bar while playing
/// (see "PrepareLanding/Defs/Misc/MainButtonDefs/MainButtons.xml").
/// </summary>
public class MainBut... | mit | C# |
b1639123b029db0653cb8ef3ac90a51a4c46bf97 | Update FarisMalaeb.cs | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/FarisMalaeb.cs | src/Firehose.Web/Authors/FarisMalaeb.cs | public class BruceWayne : IAmACommunityMember
{
public string FirstName => "Faris";
public string LastName => "Malaeb";
public string ShortBioOrTagLine => "System Automation and integration using PowerShell";
public string StateOrRegion => "Abu Dhabi";
public string EmailAddr... | public class BruceWayne : IAmACommunityMember
{
public string FirstName => "Faris";
public string LastName => "Malaeb";
public string ShortBioOrTagLine => "System Automation and integration using PowerShell";
public string StateOrRegion => "Abu Dhabi";
public string EmailAddr... | mit | C# |
2895692100988f55e35c084492a9443b94fa8c76 | stop hunger bar when dying | DutchBeastman/ProefBekwaamheidIceCubeGames | Assets/Scripts/UI/HungerMeter.cs | Assets/Scripts/UI/HungerMeter.cs | // Created by: Jeremy Bond
// Date: 24/05/2016
using UnityEngine;
using UnityEngine.UI;
using System.Collections.Generic;
public class HungerMeter : MonoBehaviour
{
[SerializeField] private Image hungerBar;
private float hungerPercent = 100;
private bool refill = true;
private bool death = false;
protected vo... | // Created by: Jeremy Bond
// Date: 24/05/2016
using UnityEngine;
using UnityEngine.UI;
using System.Collections.Generic;
public class HungerMeter : MonoBehaviour
{
[SerializeField] private Image hungerBar;
private float hungerPercent = 100;
private bool refill = true;
protected void Awake ()
{
UpdateUIArt... | mit | C# |
3bf1058969c881588e0e801b4917cd56ea6b250a | Add category service constructor validation | Branimir123/ZobShop,Branimir123/ZobShop,Branimir123/ZobShop | src/ZobShop.Services/CategoryService.cs | src/ZobShop.Services/CategoryService.cs | using System;
using System.Linq;
using ZobShop.Data.Contracts;
using ZobShop.Factories;
using ZobShop.Models;
using ZobShop.Services.Contracts;
namespace ZobShop.Services
{
public class CategoryService : ICategoryService
{
private readonly IRepository<Category> repository;
private readonly IUn... | using System.Linq;
using ZobShop.Data.Contracts;
using ZobShop.Factories;
using ZobShop.Models;
using ZobShop.Services.Contracts;
namespace ZobShop.Services
{
public class CategoryService : ICategoryService
{
private readonly IRepository<Category> repository;
private readonly IUnitOfWork unitO... | mit | C# |
78e23478e8f9300d873afdb6fc422d311b9fc0a8 | Add definition helper methods. | FacilityApi/Facility,ejball/Facility | src/Facility.Definition/ServiceDefinitionUtility.cs | src/Facility.Definition/ServiceDefinitionUtility.cs | using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text.RegularExpressions;
namespace Facility.Definition
{
/// <summary>
/// Helper methods for working with service definitions.
/// </summary>
public static class ServiceDefinitionUtility
{
/// <summary>
/... | using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text.RegularExpressions;
namespace Facility.Definition
{
internal static class ServiceDefinitionUtility
{
internal static void ValidateName(string name, ServiceTextPosition position)
{
if (!s_validNameRege... | mit | C# |
0b7e45135f544857adecec11f1c076e7bcfc5a7a | Check for B sent, not A | SanSYS/MassTransit,MassTransit/MassTransit,SanSYS/MassTransit,jacobpovar/MassTransit,MassTransit/MassTransit,phatboyg/MassTransit,phatboyg/MassTransit,jacobpovar/MassTransit | src/MassTransit.Tests/Testing/ConsumerTest_Specs.cs | src/MassTransit.Tests/Testing/ConsumerTest_Specs.cs | // Copyright 2007-2011 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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... | // Copyright 2007-2011 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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... | apache-2.0 | C# |
8b8d8591961ac1efae21d57fc1fc19332b5a3afc | Reduce running time of Bulkhead specs | michael-wolfenden/Polly | src/Polly.SharedSpecs/Bulkhead/BulkheadScenarios.cs | src/Polly.SharedSpecs/Bulkhead/BulkheadScenarios.cs | using System.Collections;
using System.Collections.Generic;
namespace Polly.Specs.Bulkhead
{
/// <summary>
/// A set of test scenarios used in all BulkheadPolicy tests.
/// </summary>
public class BulkheadScenarios : IEnumerable<object[]>
{
public IEnumerator<object[]> GetEnumerator()
... | using System.Collections;
using System.Collections.Generic;
namespace Polly.Specs.Bulkhead
{
/// <summary>
/// A set of test scenarios used in all BulkheadPolicy tests.
/// </summary>
public class BulkheadScenarios : IEnumerable<object[]>
{
private readonly List<object[]> _data = new List<... | bsd-3-clause | C# |
fc4c48ea8c3a03c1303f24627b1990e07ab46b50 | Fix typo in succeed command output | InEngine-NET/InEngine.NET,InEngine-NET/InEngine.NET,InEngine-NET/InEngine.NET | src/InEngine.Commands/AlwaysSucceed.cs | src/InEngine.Commands/AlwaysSucceed.cs | using InEngine.Core;
namespace InEngine.Commands
{
/// <summary>
/// Dummy command for testing and sample code.
/// </summary>
public class AlwaysSucceed : AbstractCommand
{
public override void Run()
{
Info("This command always succeeds.");
}
}
}
| using InEngine.Core;
namespace InEngine.Commands
{
/// <summary>
/// Dummy command for testing and sample code.
/// </summary>
public class AlwaysSucceed : AbstractCommand
{
public override void Run()
{
Info("Ths command always succeeds.");
}
}
}
| mit | C# |
e3340982da4bb02dd8cf0c10445f8cebf1848b5f | Rename argument | appharbor/appharbor-cli | src/AppHarbor/Commands/LoginCommand.cs | src/AppHarbor/Commands/LoginCommand.cs | using System;
namespace AppHarbor.Commands
{
public class LoginCommand : ICommand
{
private readonly AccessTokenConfiguration _accessTokenConfiguration;
public LoginCommand(AccessTokenConfiguration accessTokenConfiguration)
{
_accessTokenConfiguration = accessTokenConfiguration;
}
public void Execute... | using System;
namespace AppHarbor.Commands
{
public class LoginCommand : ICommand
{
private readonly AccessTokenConfiguration _accessTokenConfiguration;
public LoginCommand(AccessTokenConfiguration accessTokenFetcher)
{
_accessTokenConfiguration = accessTokenFetcher;
}
public void Execute(string[] ar... | mit | C# |
c8bcd071b0c4c40bcf1508f12a817c4836287ef9 | test fix | Novakov/HighLevelCodeAnalysis,Novakov/HighLevelCodeAnalysis | src/Tests/ExportFinalGraphAttribute.cs | src/Tests/ExportFinalGraphAttribute.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CodeModel.Builder;
using CodeModel.Extensions.DgmlExport;
using CodeModel.Graphs;
using NUnit.Framework;
namespace Tests
{
class ExportFinalGraphAttribute : NUnit... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CodeModel.Builder;
using CodeModel.Extensions.DgmlExport;
using CodeModel.Graphs;
using NUnit.Framework;
namespace Tests
{
class ExportFinalGraphAttribute : NUnit... | apache-2.0 | C# |
2b0cdfe4016577c130506c11e3c4e10e29a3466d | Use field over property | damianh/SqlStreamStore,SQLStreamStore/SQLStreamStore,SQLStreamStore/SQLStreamStore,damianh/Cedar.EventStore,danbarua/Cedar.EventStore | src/Cedar.EventStore/Checkpoint.cs | src/Cedar.EventStore/Checkpoint.cs | namespace Cedar.EventStore
{
using EnsureThat;
public class Checkpoint
{
public static readonly Checkpoint Start = new StartCheckpoint();
public static readonly Checkpoint End = new EndCheckpoint();
public readonly string Value;
public Checkpoint(string value)
{
... | namespace Cedar.EventStore
{
using EnsureThat;
public class Checkpoint
{
public static readonly Checkpoint Start = new StartCheckpoint();
public static readonly Checkpoint End = new EndCheckpoint();
private readonly string _value;
public Checkpoint(string value)
{
... | mit | C# |
b11d88787b9b7966e2ecc45696161301102232d0 | Move treewatcher event ignoring to a local thing, which allows us to ignore the thread-unsafety of FileSystemWatcher | MacDennis76/Rainbow,PetersonDave/Rainbow,kamsar/Rainbow | src/Rainbow/Storage/TreeWatcher.cs | src/Rainbow/Storage/TreeWatcher.cs | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Threading;
namespace Rainbow.Storage
{
public class TreeWatcher : IDisposable
{
private const int DebounceInMs = 1000;
private readonly Action<string, WatcherChangeTypes> _actionOnChange;
private... | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Threading;
namespace Rainbow.Storage
{
public class TreeWatcher : IDisposable
{
private const int DebounceInMs = 1000;
private readonly Action<string, WatcherChangeTypes> _actionOnChange;
private... | mit | C# |
7f09d340499ca9797e953a9d0bd83aa73eda853e | bump ver | AntonyCorbett/OnlyT,AntonyCorbett/OnlyT | SolutionInfo.cs | SolutionInfo.cs | using System.Reflection;
[assembly: AssemblyCompany("SoundBox")]
[assembly: AssemblyProduct("OnlyT")]
[assembly: AssemblyCopyright("Copyright © 2019 Antony Corbett")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.1.0.67")] | using System.Reflection;
[assembly: AssemblyCompany("SoundBox")]
[assembly: AssemblyProduct("OnlyT")]
[assembly: AssemblyCopyright("Copyright © 2018 Antony Corbett")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.1.0.66")] | mit | C# |
9af846ab271aa75c4310dddddb41617195157590 | update test | WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common | test/WeihanLi.Common.Test/DependencyResolverTest.cs | test/WeihanLi.Common.Test/DependencyResolverTest.cs | using Microsoft.Extensions.DependencyInjection;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Common;
using System.Data.SqlClient;
using System.Threading.Tasks;
using WeihanLi.Common.Data;
using WeihanLi.Common.Helpers;
using Xunit;
na... | using Microsoft.Extensions.DependencyInjection;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Common;
using System.Data.SqlClient;
using System.Threading.Tasks;
using WeihanLi.Common.Data;
using WeihanLi.Common.Helpers;
using Xunit;
na... | mit | C# |
2391035974cde868a5b9b749f610fefcc2f8307e | correct exception node name | jmptrader/LogMaster4Net,jmptrader/LogMaster4Net,kerryjiang/LogMaster4Net,kerryjiang/LogMaster4Net | NLogAdapter/NLogLoggingDeserializer.cs | NLogAdapter/NLogLoggingDeserializer.cs | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel.Composition;
using System.Linq;
using System.Text;
using System.Xml;
using AnyLog;
using LogMaster4Net.Base;
namespace LogMaster4Net.NLogAdapter
{
[Export(typeof(ILoggingDeserializer))]
[LoggingDe... | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel.Composition;
using System.Linq;
using System.Text;
using System.Xml;
using AnyLog;
using LogMaster4Net.Base;
namespace LogMaster4Net.NLogAdapter
{
[Export(typeof(ILoggingDeserializer))]
[LoggingDe... | apache-2.0 | C# |
a90974b844613519542e585a9e0176ae3df077fd | Rephrase Text.Advance's columnDelta calculation, reducing the number of times it has to seek backwards for a preceding '\n' and ensuring that all such backwards seeking can be phased out in the next commit. | plioi/parsley | src/Parsley/Text.cs | src/Parsley/Text.cs | namespace Parsley;
public ref struct Text
{
int index;
readonly ReadOnlySpan<char> input;
int line;
public Text(ReadOnlySpan<char> input)
: this(input, 0, 1) { }
Text(ReadOnlySpan<char> input, int index, int line)
{
this.input = input;
this.index = index;
if (... | namespace Parsley;
public ref struct Text
{
int index;
readonly ReadOnlySpan<char> input;
int line;
public Text(ReadOnlySpan<char> input)
: this(input, 0, 1) { }
Text(ReadOnlySpan<char> input, int index, int line)
{
this.input = input;
this.index = index;
if (... | mit | C# |
9a9f864eb12e6d4f4098cc1b2f7b52e2b83e7649 | add data transmission level | DMagic1/Orbital-Science,Kerbas-ad-astra/Orbital-Science | Source/Contracts/DMScienceContainer.cs | Source/Contracts/DMScienceContainer.cs | #region license
/* DMagic Orbital Science - DMScienceContainer
* Object to store experiment properties
*
* Copyright (c) 2014, David Grandy <david.grandy@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the fol... | #region license
/* DMagic Orbital Science - DMScienceContainer
* Object to store experiment properties
*
* Copyright (c) 2014, David Grandy <david.grandy@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the fol... | bsd-3-clause | C# |
26d081ca5771189661580d78277e3ba97ab5ccd4 | correct way to check iOS version | ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,DrabWeb/osu-framework,peppy/osu-frame... | osu.Framework.iOS/GameUIApplication.cs | osu.Framework.iOS/GameUIApplication.cs | using Foundation;
using ObjCRuntime;
using UIKit;
using osu.Framework.Logging;
using osu.Framework.Input;
using System;
namespace osu.Framework.iOS {
[Register("GameUIApplication")]
public class GameUIApplication : UIApplication {
private static bool IS_IOS7 = new NSProcessInfo().IsOperatingSystemAt... | using Foundation;
using ObjCRuntime;
using UIKit;
using osu.Framework.Logging;
using osu.Framework.Input;
using System;
namespace osu.Framework.iOS {
[Register("GameUIApplication")]
public class GameUIApplication : UIApplication {
private static bool IS_IOS7 = int.Parse(UIDevice.CurrentDevice.System... | mit | C# |
e9a86e30c6b9fcb9a7b19b05bbddc784ef6770ef | change to right key size | IdentityModel/AuthorizationServer,yfann/AuthorizationServer,yfann/AuthorizationServer,s093294/Thinktecture.AuthorizationServer,IdentityModel/AuthorizationServer,s093294/Thinktecture.AuthorizationServer | source/WebHost/Areas/Admin/Api/SymmetricKeysController.cs | source/WebHost/Areas/Admin/Api/SymmetricKeysController.cs | using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using Thinktecture.AuthorizationServer.Interfaces;
using Thinktecture.AuthorizationServer.Models;
using Thinktecture.AuthorizationServer.WebHost.Areas.Admin.Models;
using Thinktecture.IdentityModel.Authorization.WebApi;
n... | using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using Thinktecture.AuthorizationServer.Interfaces;
using Thinktecture.AuthorizationServer.Models;
using Thinktecture.AuthorizationServer.WebHost.Areas.Admin.Models;
using Thinktecture.IdentityModel.Authorization.WebApi;
n... | bsd-3-clause | C# |
ec7770607dea466ae10ae776beb889912c205ac1 | Increment version number | FlorianRappl/AngleSharp,FlorianRappl/AngleSharp,FlorianRappl/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,FlorianRappl/AngleSharp,Livven/AngleSharp,AngleSharp/AngleSharp,zedr0n/AngleSharp.Local,zedr0n/AngleSharp.Local,Livven/AngleSharp,Livven/AngleSharp,zedr0n/AngleSharp.Local,AngleSharp/AngleSharp,AngleSharp... | AngleSharp/Properties/AssemblyInfo.cs | AngleSharp/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("AngleSharp")]
[assembly: AssemblyDescription("AngleSharp is the ultimate angle brackets parser library. It parses HTML5, MathML, SVG, XML and CSS to construct a DOM based on the official W3C... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("AngleSharp")]
[assembly: AssemblyDescription("AngleSharp is the ultimate angle brackets parser library. It parses HTML5, MathML, SVG, XML and CSS to construct a DOM based on the official W3C... | mit | C# |
a8de54e7e9b300660c12c2c61e87c03593bb5578 | Copy original test, passing. | keenlabs/keen-sdk-net | Keen.NetStandard.Test/ProjectSettingsProviderTest.cs | Keen.NetStandard.Test/ProjectSettingsProviderTest.cs | using System;
using NUnit.Framework;
namespace Keen.NetStandard.Tests
{
[TestFixture]
class ProjectSettingsProviderTest
{
[Test]
public void Settings_DefaultInputs_Success()
{
Assert.DoesNotThrow(() => new ProjectSettingsProvider("X", null));
}
[Test]
... | using NUnit.Framework;
namespace Keen.NetStandard.Tests
{
[TestFixture]
class ProjectSettingsProviderTest
{
[Test]
public void Settings_DefaultInputs_Success()
{
Assert.DoesNotThrow(() => new ProjectSettingsProvider("X", null));
}
[Test]
public... | mit | C# |
58421aefe1530c762f39ada5e95c492f9f8687b7 | Update Token.cs | Zebrina/PapyrusScriptEditorVSIX,Zebrina/PapyrusScriptEditorVSIX | PapyrusScriptEditorVSIX/Language/Components/Token.cs | PapyrusScriptEditorVSIX/Language/Components/Token.cs | using Microsoft.VisualStudio.Text;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Papyrus.Language.Components {
public struct Token {
public static readonly Token Null = new Token(null, new SnapshotSpan());
public Toke... | using Microsoft.VisualStudio.Text;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Papyrus.Language.Components {
public class Token {
public static readonly Token Null = new Token(null, new SnapshotSpan());
private Toke... | mit | C# |
a8af33efa030641e36d574a237faf7ec8dd0c198 | Correct description for modulo | devatwork/Premotion-Mansion,Erikvl87/Premotion-Mansion,devatwork/Premotion-Mansion,Erikvl87/Premotion-Mansion,devatwork/Premotion-Mansion,Erikvl87/Premotion-Mansion,Erikvl87/Premotion-Mansion,devatwork/Premotion-Mansion | src/Premotion.Mansion.Core/ScriptFunctions/Math/Modulo.cs | src/Premotion.Mansion.Core/ScriptFunctions/Math/Modulo.cs | using Premotion.Mansion.Core.Scripting.ExpressionScript;
namespace Premotion.Mansion.Core.ScriptFunctions.Math
{
/// <summary>
/// Modulo computes a remainder. Multiplies the first value with the second value.
/// </summary>
[ScriptFunction("Modulo")]
public class Modulo : FunctionExpression
{
/// <summary>
... | using Premotion.Mansion.Core.Scripting.ExpressionScript;
namespace Premotion.Mansion.Core.ScriptFunctions.Math
{
/// <summary>
/// Multiplies the first value with the second value.
/// </summary>
[ScriptFunction("Modulo")]
public class Modulo : FunctionExpression
{
/// <summary>
/// </summary>
/// <param ... | mit | C# |
0ada541a704c26a028eb4473a0af6dbfc4c49b25 | Move PinBox from Imageflow.Net.Bindings -> Imageflow.Bindings namespace | imazen/imageflow-dotnet | src/Imageflow/Bindings/PinBox.cs | src/Imageflow/Bindings/PinBox.cs | using System;
using System.Collections.Generic;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
namespace Imageflow.Bindings
{
internal class PinBox : CriticalFinalizerObject, IDisposable
{
private List<GCHandle> _pinned;
internal void AddPinnedData(GCHandle ha... | using System;
using System.Collections.Generic;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
namespace Imageflow.Net.Bindings
{
internal class PinBox : CriticalFinalizerObject, IDisposable
{
private List<GCHandle> _pinned;
internal void AddPinnedData(GCHandl... | agpl-3.0 | C# |
3dafa82f6f03bd7522cec54c0490510cea1ced82 | Fix indenting | SaltyDH/React.NET,alexsoftua/React.NET,radnor/React.NET,ShikiGami/React.NET,alexsoftua/React.NET,alexsoftua/React.NET,IveWong/React.NET,ShikiGami/React.NET,reactjs/React.NET,SaltyDH/React.NET,reactjs/React.NET,rickbeerendonk/React.NET,radnor/React.NET,ShikiGami/React.NET,radnor/React.NET,reactjs/React.NET,chriscamplejo... | src/React.Sample.Mvc6/Startup.cs | src/React.Sample.Mvc6/Startup.cs | /*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
using System... | /*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
using System... | bsd-3-clause | C# |
372c163fc9231ccc52ccd16c318a5dde5c24915b | Update SharedAssemblyInfo.cs | wieslawsoltes/AvaloniaBehaviors,XamlBehaviors/XamlBehaviors,XamlBehaviors/XamlBehaviors,wieslawsoltes/AvaloniaBehaviors | src/Shared/SharedAssemblyInfo.cs | src/Shared/SharedAssemblyInfo.cs | // Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System.Reflection;
using System.Resources;
[assembly: AssemblyCompany("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCopyright("Copy... | // Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System.Reflection;
using System.Resources;
[assembly: AssemblyCompany("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCopyright("Copy... | mit | C# |
c52e02445f2d1d94521ee73446b1a333b25205b2 | Change CurrentPage to CurrentFunction in ContentFunction.cs | jarlef/ComposerBuilder | ComposerBuilder/UI/ContentFunction.cs | ComposerBuilder/UI/ContentFunction.cs | using System.Globalization;
using Dropit.Extension.Core;
using EPiServer;
using EPiServer.Core;
using PageTypeBuilder;
using PageTypeBuilder.UI;
namespace ComposerBuilder.UI
{
public class ContentFunction<T> : BaseContentFunction
where T : FunctionData
{
// Fields
private T _curren... | using System.Globalization;
using Dropit.Extension.Core;
using EPiServer;
using EPiServer.Core;
using PageTypeBuilder;
using PageTypeBuilder.UI;
namespace ComposerBuilder.UI
{
public class ContentFunction<T> : BaseContentFunction
where T : FunctionData
{
// Fields
private T _curren... | bsd-3-clause | C# |
14aeaceea16b5e3cd4446adf9c1adeae6757fdb6 | Add placeholder in GlobalAssemblyInfo.cs for TeamCity File Content Replacer | InfinniPlatform/InfinniPlatform,InfinniPlatform/InfinniPlatform,InfinniPlatform/InfinniPlatform | Files/Packaging/GlobalAssemblyInfo.cs | Files/Packaging/GlobalAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Infinnity Solutions")]
[assembly: AssemblyProduct("InfinniPlatform")]
[assembly: AssemblyCopyright("Copyright © Infinnity Solutions 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Infinnity Solutions")]
[assembly: AssemblyProduct("InfinniPlatform")]
[assembly: AssemblyCopyright("Copyright © Infinnity Solutions 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible... | agpl-3.0 | C# |
ec921ccd451427df1e6fe667e037e3deec330e6b | Remove unused constructor. | fixie/fixie | src/Fixie/ParameterGenerator.cs | src/Fixie/ParameterGenerator.cs | namespace Fixie
{
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
public class ParameterGenerator : ParameterSource
{
readonly List<ParameterSource> sources = new List<ParameterSource>();
/// <summary>
/// Includes the given type as a generato... | namespace Fixie
{
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
public class ParameterGenerator : ParameterSource
{
readonly List<ParameterSource> sources;
public ParameterGenerator(IReadOnlyList<ParameterSource> parameterSources)
=> sou... | mit | C# |
7756db10d4cc8676fd619910c822b1981fd56bc4 | Change run log folder Windows & Linux: next to the binary macOS: next to the .app | Dalet/140-speedrun-timer,Dalet/140-speedrun-timer,Dalet/140-speedrun-timer | 140-speedrun-timer/Logging/RunLogFile.cs | 140-speedrun-timer/Logging/RunLogFile.cs | using System;
using System.IO;
using System.Threading;
using UnityEngine;
namespace SpeedrunTimerMod.Logging
{
static class RunLogFile
{
public const string FILE_NAME = "speedrun-log.csv";
public static readonly string FILE_PATH = Path.Combine(GetFolder(), FILE_NAME);
static readonly object _syncRoot = new ob... | using System;
using System.IO;
using System.Threading;
using UnityEngine;
namespace SpeedrunTimerMod.Logging
{
static class RunLogFile
{
public const string FILE_NAME = "speedrun-log.csv";
public static readonly string FILE_PATH = Path.Combine(GetFolder(), FILE_NAME);
static readonly object _syncRoot = new ob... | unlicense | C# |
aa701d49badc6e6de27dbdb0af28014a02fb8ffb | Save configuration only when changed. | ridercz/AutoACME | Altairis.AutoAcme.Configuration/Store.cs | Altairis.AutoAcme.Configuration/Store.cs | using System;
using System.Collections.Generic;
using System.IO;
using Certes.Acme;
using Newtonsoft.Json;
namespace Altairis.AutoAcme.Configuration {
public class Store {
private string json;
public string EmailAddress { get; set; } = "example@example.com";
public string ChallengeFolder... | using System;
using System.Collections.Generic;
using System.IO;
using Certes.Acme;
using Newtonsoft.Json;
namespace Altairis.AutoAcme.Configuration {
public class Store {
public string EmailAddress { get; set; } = "example@example.com";
public string ChallengeFolder { get; set; } = @"C:\InetPub... | mit | C# |
15c7558b4cf61f903d3d173560c5a4c2f323fdca | Fix namespace | aluxnimm/outlookcaldavsynchronizer | CalDavSynchronizer/Ui/DelegateCommand.cs | CalDavSynchronizer/Ui/DelegateCommand.cs | // This file is Part of CalDavSynchronizer (http://outlookcaldavsynchronizer.sourceforge.net/)
// Copyright (c) 2015 Gerhard Zehetbauer
// Copyright (c) 2015 Alexander Nimmervoll
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License a... | // This file is Part of CalDavSynchronizer (http://outlookcaldavsynchronizer.sourceforge.net/)
// Copyright (c) 2015 Gerhard Zehetbauer
// Copyright (c) 2015 Alexander Nimmervoll
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License a... | agpl-3.0 | C# |
2ec1a1616151ac5c24a075974c09b5378777ace7 | Make it robust. | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Converters/NetworkColorConverter.cs | WalletWasabi.Gui/Converters/NetworkColorConverter.cs | using Avalonia;
using Avalonia.Controls;
using Avalonia.Data.Converters;
using Avalonia.Media;
using NBitcoin;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using WalletWasabi.Exceptions;
namespace WalletWasabi.Gui.Converters
{
pub... | using Avalonia;
using Avalonia.Data.Converters;
using Avalonia.Media;
using NBitcoin;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using WalletWasabi.Exceptions;
namespace WalletWasabi.Gui.Converters
{
public class NetworkColorConverter : IValueConverter
{
public o... | mit | C# |
742ceb5471d9e98bf0fd2a01dcb9a34c46b8a025 | Remove debug. | DragonEyes7/ConcoursUBI17,DragonEyes7/ConcoursUBI17 | Proto/Assets/Scripts/UI/PrintClues.cs | Proto/Assets/Scripts/UI/PrintClues.cs | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class PrintClues : MonoBehaviour
{
Text _PrintMessage;
string[] _Messages;
Vector3 _StartingPos;
int _CurrentMessage;
float _Up;
bool _isPrinting = false;
void Start()
{
_PrintMessage = tr... | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class PrintClues : MonoBehaviour
{
Text _PrintMessage;
string[] _Messages;
Vector3 _StartingPos;
int _CurrentMessage;
float _Up;
bool _isPrinting = false;
void Start()
{
_PrintMessage = tr... | mit | C# |
c74199ee1aa6793af4b1e5257a27d4976fedfc72 | Add GetUserInfomation | Episerver-trainning/episerver6r2_sso,Episerver-trainning/episerver6r2_sso,Episerver-trainning/episerver6r2_sso | FakeSSO/Controllers/FakeSSOController.cs | FakeSSO/Controllers/FakeSSOController.cs | using System;
using System.Collections.Concurrent;
using System.Web.Mvc;
namespace FakeSSO.App.Controllers
{
public class FakeSSOController : Controller
{
static ConcurrentDictionary<string, string> dicAuthorizationCodes = new ConcurrentDictionary<string, string>();
static ConcurrentDictionar... | using System;
using System.Collections.Concurrent;
using System.Web.Mvc;
namespace FakeSSO.App.Controllers
{
public class FakeSSOController : Controller
{
static ConcurrentDictionary<string, string> dicAccessKey = new ConcurrentDictionary<string, string>();
static ConcurrentDictionary<string,... | mit | C# |
d17b4f6978697885af87586d64fd04f11d23112e | Set the focus of passwordbox after app start. | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/LockScreen/PinLockScreen.xaml.cs | WalletWasabi.Gui/Controls/LockScreen/PinLockScreen.xaml.cs | using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia;
using Avalonia.Input;
using ReactiveUI;
using System.Reactive.Linq;
using System;
using Avalonia.LogicalTree;
namespace WalletWasabi.Gui.Controls.LockScreen
{
public class PinLockScreen : UserControl
{
public static readonly DirectProperty<PinLoc... | using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia;
using Avalonia.Input;
using ReactiveUI;
using System.Reactive.Linq;
using System;
namespace WalletWasabi.Gui.Controls.LockScreen
{
public class PinLockScreen : UserControl
{
public static readonly DirectProperty<PinLockScreen, bool> IsLockedPrope... | mit | C# |
be859dbe178b8a9fa5c9198658890f940d26c57d | Fix camera getting to close | antila/castle-game-jam-2016 | Assets/FollowCamera.cs | Assets/FollowCamera.cs | using UnityEngine;
using System.Collections;
using UnityEngine.InputNew;
public class FollowCamera : MonoBehaviour
{
// The target we are following
public PlayerInput targetPlayer;
// The distance in the x-z plane to the target
public float distance = 4;
// the height we want the camera to be abo... | using UnityEngine;
using System.Collections;
using UnityEngine.InputNew;
public class FollowCamera : MonoBehaviour
{
// The target we are following
public PlayerInput targetPlayer;
// The distance in the x-z plane to the target
public float distance = 4;
// the height we want the camera to be abo... | mit | C# |
1c42d3fe550a35f0b9aad71a49cadef12209ec62 | add error handling | yasokada/unity-150913-udpImport | Assets/ImportScript.cs | Assets/ImportScript.cs | using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using System;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
public class ImportScript : MonoBehaviour {
public InputField IFipadr;
public InputField IFport;
public InputField IFmsg; // message to send
pu... | using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using System;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
public class ImportScript : MonoBehaviour {
public InputField IFipadr;
public InputField IFport;
public InputField IFmsg; // message to send
pu... | mit | C# |
1b578437ab4fd7ae778c2d1052035a032295cd09 | Update MediaGroup.cs | codehollow/FeedReader | FeedReader/Feeds/MediaRSS/MediaGroup.cs | FeedReader/Feeds/MediaRSS/MediaGroup.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
namespace CodeHollow.FeedReader.Feeds.MediaRSS
{
/// <summary>
/// A collection of media that are effectively the same content, yet different representations. For isntance: the same song recorded in b... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
namespace CodeHollow.FeedReader.Feeds.MediaRSS
{
/// <summary>
/// A collection of media that are effectively the same content, yet different representations. For isntance: the same song recorded in b... | mit | C# |
5e4f063d9811d7ade52835321355ee008343d905 | Add model state to bad request | mondeun/PdfAutofill | PdfAutofill/Controllers/PdfController.cs | PdfAutofill/Controllers/PdfController.cs | using System;
using System.Linq;
using Microsoft.AspNetCore.Mvc;
using PdfAutofill.Model;
using PdfAutofill.Service;
using PdfAutofill.Service.Impl;
namespace PdfAutofill.Controllers
{
[Route("api/[controller]")]
public class PdfController : Controller
{
private readonly IPdfService _service = new... | using System;
using System.Linq;
using Microsoft.AspNetCore.Mvc;
using PdfAutofill.Model;
using PdfAutofill.Service;
using PdfAutofill.Service.Impl;
namespace PdfAutofill.Controllers
{
[Route("api/[controller]")]
public class PdfController : Controller
{
private readonly IPdfService _service = new... | agpl-3.0 | C# |
22ddb062b405d3dbe452eec2531b218bb38293f1 | Fix status when read from cache | michael-reichenauer/GitMind | GitMind/GitModel/Private/MRepository.cs | GitMind/GitModel/Private/MRepository.cs | using System.Collections.Generic;
using System.Linq;
using GitMind.Features.StatusHandling;
using GitMind.Git;
namespace GitMind.GitModel.Private
{
public class MRepository
{
public static string CurrentVersion = "17";
public string Version { get; set; } = CurrentVersion;
public string CurrentCommitId { get... | using System.Collections.Generic;
using System.Linq;
using GitMind.Features.StatusHandling;
using GitMind.Git;
namespace GitMind.GitModel.Private
{
public class MRepository
{
public static string CurrentVersion = "17";
public string Version { get; set; } = CurrentVersion;
public string CurrentCommitId { get... | mit | C# |
ec450640ab165162f4240d36624e84bfa68500bf | add useforwardedheaders to test nginx | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | HiddenWallet.ChaumianTumbler/Startup.cs | HiddenWallet.ChaumianTumbler/Startup.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensio... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensio... | mit | C# |
2077fa605f4154621794fc24f263f40b6a7a0309 | Update version | slavitnas/SimpleCiphers | SimpleCiphers/Properties/AssemblyInfo.cs | SimpleCiphers/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated w... | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated w... | mit | C# |
99fbf87e69311d71e6f8312c6ec53264be0ba375 | Add xml doc to Utf8EncodingGenerator class. | adamchester/AutoFixture,sergeyshushlyapin/AutoFixture,hackle/AutoFixture,sergeyshushlyapin/AutoFixture,sbrockway/AutoFixture,dcastro/AutoFixture,sean-gilliam/AutoFixture,dcastro/AutoFixture,hackle/AutoFixture,sbrockway/AutoFixture,adamchester/AutoFixture,AutoFixture/AutoFixture,Pvlerick/AutoFixture,zvirja/AutoFixture | Src/AutoFixture/Utf8EncodingGenerator.cs | Src/AutoFixture/Utf8EncodingGenerator.cs | using Ploeh.AutoFixture.Kernel;
using System.Text;
namespace Ploeh.AutoFixture
{
/// <summary>
/// Handles creation requests for <see cref="Encoding"/> instances,
/// returning always the same <see cref="Encoding.UTF8"/>.
/// </summary>
public class Utf8EncodingGenerator : ISpecimenBuilder
{
... | using Ploeh.AutoFixture.Kernel;
using System.Text;
namespace Ploeh.AutoFixture
{
public class Utf8EncodingGenerator : ISpecimenBuilder
{
private readonly ExactTypeSpecification encodingTypeSpecification = new ExactTypeSpecification(typeof(Encoding));
public object Create(object request, ISpec... | mit | C# |
69deea2f120584be3ad051743f52ef2ade9589c9 | add WithTransactionPerScript() | jgraber/Blog_Snippets,jgraber/Blog_Snippets,jgraber/Blog_Snippets,jgraber/Blog_Snippets | DbUp/DBMigration/DBMigration/Program.cs | DbUp/DBMigration/DBMigration/Program.cs | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using DbUp;
namespace DBMigration
{
class Program
{
static int Main(string[] args)
{
var connectionString = Confi... | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using DbUp;
namespace DBMigration
{
class Program
{
static int Main(string[] args)
{
var connectionString = Confi... | apache-2.0 | C# |
88f90fa799d58f56c07ffa2ec4e904a8be243119 | Update ITagsClient.cs | vevix/DigitalOcean.API | DigitalOcean.API/Clients/ITagsClient.cs | DigitalOcean.API/Clients/ITagsClient.cs | using System.Collections.Generic;
using System.Threading.Tasks;
using DigitalOcean.API.Models.Responses;
namespace DigitalOcean.API.Clients {
public interface ITagsClient {
/// <summary>
/// Retrieve all Tags in your account
/// </summary>
Task<IReadOnlyList<Tag>> GetAll();
... | using System.Collections.Generic;
using System.Threading.Tasks;
using DigitalOcean.API.Models.Responses;
namespace DigitalOcean.API.Clients {
public interface ITagsClient {
/// <summary>
/// Retrieve all Tags in your account
/// </summary>
Task<IReadOnlyList<Tag>> GetAll();
... | mit | C# |
b115fb4ccbd76fa613051aece620e3aca9042208 | Bump version to 1.3.0.0 | hudl/Mjolnir,courtneyklatt/Mjolnir | Hudl.Mjolnir/Properties/AssemblyInfo.cs | Hudl.Mjolnir/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
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("Hu... | using System.Reflection;
using System.Runtime.CompilerServices;
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("Hu... | apache-2.0 | C# |
746937fbe10e1e7d4d0947036a0f65d293f054e0 | Add global suppression files to ignore list in sonarcloud | WormieCorp/Localization.AspNetCore.TagHelpers,WormieCorp/Localization.AspNetCore.TagHelpers,WormieCorp/Localization.AspNetCore.TagHelpers,WormieCorp/Localization.AspNetCore.TagHelpers | .build/sonarcloud.cake | .build/sonarcloud.cake | #load "./tasks.cake"
public sealed class SonarCloudAuthentication
{
public SonarCloudAuthentication(ICakeContext context)
{
Login = context.EnvironmentVariable("SONARCLOUD_LOGIN");
ProjectKey = context.EnvironmentVariable("SONARCLOUD_PROJECT_KEY");
Organization = context.EnvironmentVariable("SONARCLOUD... | #load "./tasks.cake"
public sealed class SonarCloudAuthentication
{
public SonarCloudAuthentication(ICakeContext context)
{
Login = context.EnvironmentVariable("SONARCLOUD_LOGIN");
ProjectKey = context.EnvironmentVariable("SONARCLOUD_PROJECT_KEY");
Organization = context.EnvironmentVariable("SONARCLOUD... | mit | C# |
5d490d0f2dd6706d73c9f5eba0b1e241d43723f8 | remove test calls | xaphere/sgj2016 | Ritual/Assets/Scripts/ReporterScript.cs | Ritual/Assets/Scripts/ReporterScript.cs | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class ReporterScript : MonoBehaviour {
private AudioSource audio;
private GameObject uiCanvas;
public GameObject textPrefab;
public string promptText;
// Use this for initialization
void Start () {
audio = GetComponent<AudioSource> (... | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class ReporterScript : MonoBehaviour {
private AudioSource audio;
private GameObject uiCanvas;
public GameObject textPrefab;
public string promptText;
// Use this for initialization
void Start () {
audio = GetComponent<AudioSource> (... | mit | C# |
f593dec27203825fc8c5b1993f9e5bc0127cf383 | rename command parameter | ojraqueno/vstemplates,ojraqueno/vstemplates,ojraqueno/vstemplates | MVC5_R/MVC5_R/Features/Account/Login.cs | MVC5_R/MVC5_R/Features/Account/Login.cs | using FluentValidation;
using MediatR;
using Microsoft.AspNet.Identity.Owin;
using MVC5_R.Infrastructure.Identity;
using System.Threading.Tasks;
namespace MVC5_R.Features.Account
{
public class Login
{
public class Query : IRequest<Command>
{
public string ReturnUrl { get; set; }
... | using FluentValidation;
using MediatR;
using Microsoft.AspNet.Identity.Owin;
using MVC5_R.Infrastructure.Identity;
using System.Threading.Tasks;
namespace MVC5_R.Features.Account
{
public class Login
{
public class Query : IRequest<Command>
{
public string ReturnUrl { get; set; }
... | mit | C# |
d6a894d1bfe1e54e60dc9c1b805b2e991a068872 | Call LineClient.Initialize() in Application_Start() | masaedw/LineSharp | EchoBot/Global.asax.cs | EchoBot/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Routing;
using LineSharp;
namespace EchoBot
{
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
LineClient.I... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Routing;
namespace EchoBot
{
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
GlobalConfiguration.Configure... | mit | C# |
2f9703fbab21ffe92a252cade33845341ce249dd | Fix issue #174 | andrewst/SharpDX,jwollen/SharpDX,shoelzer/SharpDX,waltdestler/SharpDX,dazerdude/SharpDX,RobyDX/SharpDX,VirusFree/SharpDX,RobyDX/SharpDX,dazerdude/SharpDX,mrvux/SharpDX,VirusFree/SharpDX,VirusFree/SharpDX,fmarrabal/SharpDX,davidlee80/SharpDX-1,wyrover/SharpDX,manu-silicon/SharpDX,VirusFree/SharpDX,andrewst/SharpDX,Ixono... | Source/SharpDX.Direct2D1/StrokeStyle.cs | Source/SharpDX.Direct2D1/StrokeStyle.cs | // Copyright (c) 2010-2012 SharpDX - Alexandre Mutel
//
// 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,... | // Copyright (c) 2010-2012 SharpDX - Alexandre Mutel
//
// 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,... | mit | C# |
df2c7b1d1eafcbbdba8c074524d467e0e9285875 | Update MarcBruins.cs | MabroukENG/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxamarin,beraybentesen/planetxamarin,beraybentesen/planetxamarin,MabroukENG/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin | src/Firehose.Web/Authors/MarcBruins.cs | src/Firehose.Web/Authors/MarcBruins.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MarcBruins : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Marc";
public string Las... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MarcBruins : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Marc";
public string Las... | mit | C# |
8b439ed1d4b5330620fbcb96f1c8af08efcd9a8f | fix db update check | Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TCC.Core/Data/Databases/DatabaseBase.cs | TCC.Core/Data/Databases/DatabaseBase.cs | using System.IO;
namespace TCC.Data.Databases
{
public abstract class DatabaseBase
{
protected string Language;
protected abstract string FolderName { get; }
protected abstract string Extension { get; }
public string RelativePath => $"{FolderName}/{FolderName}-{Language}.{Exte... | using System.IO;
namespace TCC.Data.Databases
{
public abstract class DatabaseBase
{
protected string Language;
protected abstract string FolderName { get; }
protected abstract string Extension { get; }
public string RelativePath => $"{FolderName}/{FolderName}-{Language}.{Exte... | mit | C# |
21f40891e0daa5f90558ab9e8c6495d9971e91f6 | add EOF in server side msg creater | ravjotsingh9/DBLike | DBLike/Server/Message/CreateMsg.Poll.cs | DBLike/Server/Message/CreateMsg.Poll.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Server.MessageClasses;
namespace Server.Message
{
public partial class CreateMsg
{
/// <summary>
/// poll response protocol
/// +-----------------------------------... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Server.MessageClasses;
namespace Server.Message
{
public partial class CreateMsg
{
/// <summary>
/// poll response protocol
/// +-----------------------------------... | apache-2.0 | C# |
5082b768e9a2d317c25731920823d343a80564bf | switch to a hashset for table cache, because lookups are quicker | jmkelly/elephanet,jmkelly/elephanet,YoloDev/elephanet,YoloDev/elephanet | Elephanet/StoreInfo.cs | Elephanet/StoreInfo.cs | using System;
using System.Collections.Generic;
namespace Elephanet
{
public class StoreInfo : IStoreInfo
{
private string _name;
readonly HashSet<string> _tableNames;
public StoreInfo()
{
_name = "store";
_tableNames = new HashSet<string>();
}
... | using System;
using System.Collections.Generic;
namespace Elephanet
{
public class StoreInfo : IStoreInfo
{
private string _name;
readonly List<string> _tableNames;
public StoreInfo()
{
_name = "store";
_tableNames = new List<string>();
}
... | mit | C# |
f0a6930564945c19e60983f5494523610765f5fd | add constructor | suantw/Refactor | RefactorModel/RefactorModel/Refactor.cs | RefactorModel/RefactorModel/Refactor.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RefactorModel
{
public class Refactor<T>
{
public Refactor()
{ }
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RefactorModel
{
public class Refactor
{
}
}
| mit | C# |
df6116bbb66b8cde5afa05f459aabb6b531287d8 | fix compile error | kheiakiyama/speech-eng-functions | MarkdownParser/run.csx | MarkdownParser/run.csx | #r "System.Configuration"
#load "../QuestionEntity.csx"
using System.Net;
using System.Net.Http;
using System.Configuration;
using Newtonsoft.Json;
using Microsoft.Azure;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Table;
using CommonMark;
public static async Task<HttpResponseMessage> R... | #r "System.Configuration"
#load "../QuestionEntity.csx"
using System.Net;
using System.Net.Http;
using System.Configuration;
using Newtonsoft.Json;
using Microsoft.Azure;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Table;
using CommonMark;
public static async Task<HttpResponseMessage> R... | mit | C# |
10e36c36fa26d872643c0e5c1180f0277b15b3ae | Change AppBuilderExtensions to use NancyMiddleware MidFunc. (MidFunc is supported by Katana) | MetSystem/Nancy,NancyFx/Nancy,vladlopes/Nancy,AIexandr/Nancy,EIrwin/Nancy,JoeStead/Nancy,malikdiarra/Nancy,wtilton/Nancy,JoeStead/Nancy,Novakov/Nancy,SaveTrees/Nancy,anton-gogolev/Nancy,ccellar/Nancy,phillip-haydon/Nancy,xt0rted/Nancy,EliotJones/NancyTest,SaveTrees/Nancy,sroylance/Nancy,Novakov/Nancy,khellang/Nancy,fly... | src/Nancy.Owin/AppBuilderExtensions.cs | src/Nancy.Owin/AppBuilderExtensions.cs | // ReSharper disable CheckNamespace
namespace Owin
// ReSharper restore CheckNamespace
{
using System;
using System.Threading;
using Nancy.Owin;
/// <summary>
/// OWIN extensions for Nancy
/// </summary>
public static class AppBuilderExtensions
{
private const st... | // ReSharper disable CheckNamespace
namespace Owin
// ReSharper restore CheckNamespace
{
using System;
using System.Threading;
using Nancy.Owin;
/// <summary>
/// OWIN extensions for Nancy
/// </summary>
public static class AppBuilderExtensions
{
private const st... | mit | C# |
9371216b24e21c6b0149a5d0a9a6f043bfccdf9e | Update formWrangler.cshtml | mcmullengreg/formWrangler | formWrangler.cshtml | formWrangler.cshtml | @inherits umbraco.MacroEngines.DynamicNodeContext
@{
if ( String.IsNullOrEmpty(@Parameter.mediaFolder) ) {
<div><p>A folder has not been selected</p></div>
}
var folder = Parameter.mediaFolder;
var media = Model.MediaById(folder);
}
@helper traverse(dynamic node) {
var cc = node.Children;
if (cc.Count()>0) ... | @using umbraco.MacroEngines;
@using umbraco.cms.businesslogic.media;
@{
if ( String.IsNullOrEmpty(@Parameter.mediaFolder) ) {
<div><p>A folder has not been selected</p></div>
}
var folder = Parameter.mediaFolder;
var media = Model.MediaById(folder);
if(media.Children.GetType() == typeof(DynamicNull)){
<d... | mit | C# |
bf94d22b2f054275eaa65f1f91384a3101bdef37 | Fix integration test due to breaking change in latest Octokit.net release | alfhenrik/ScriptCs.OctoKit | src/ScriptCs.Octokit.Sample/sample.csx | src/ScriptCs.Octokit.Sample/sample.csx | var octokit = Require<OctokitPack>();
var client = octokit.Create("ScriptCs.Octokit");
var userTask = client.User.Get("alfhenrik");
var user = userTask.Result;
Console.WriteLine(user.Name);
var repoTask = client.Repository.Branch.GetAll("alfhenrik", "octokit.net");
var branches = repoTask.Result;
Console.WriteLine(bra... | var octokit = Require<OctokitPack>();
var client = octokit.Create("ScriptCs.Octokit");
var userTask = client.User.Get("alfhenrik");
var user = userTask.Result;
Console.WriteLine(user.Name);
var repoTask = client.Repository.GetAllBranches("alfhenrik", "octokit.net");
var branches = repoTask.Result;
Console.WriteLine(br... | mit | C# |
13499d0f7b0c57e95226ded8facc85319cb7e60c | Add Target Language, Compiler Interface | ngEPL/Mocca | Mocca/MoccaCompiler.cs | Mocca/MoccaCompiler.cs | using System;
using System.Collections.Generic;
using System.Text;
using Mocca.DataType;
namespace Mocca {
public enum TargetLanguage {
Python, // Now available
Java, // NOT available
Javascript, // NOT available
C_sharp, // NOT available
Swift // NOT Available
}
public interface Compiler {
string ... | using System;
namespace Mocca {
public class MoccaCompiler {
public MoccaCompiler() {
}
}
}
| mit | C# |
b85632cc99be760a9a3669c41c3ec95b2938c275 | Add folder location display | qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox,qianlifeng/Wox | Plugins/Wox.Plugin.Folder/FolderLink.cs | Plugins/Wox.Plugin.Folder/FolderLink.cs | using System;
using System.Linq;
using Newtonsoft.Json;
namespace Wox.Plugin.Folder
{
[JsonObject(MemberSerialization.OptIn)]
public class FolderLink
{
[JsonProperty]
public string Path { get; set; }
public string Nickname =>
Path.Split(new[] { System.IO.Path.DirectoryS... | using System;
using System.Linq;
using Newtonsoft.Json;
namespace Wox.Plugin.Folder
{
[JsonObject(MemberSerialization.OptIn)]
public class FolderLink
{
[JsonProperty]
public string Path { get; set; }
public string Nickname
{
get { return Path.Split(new[] { Syst... | mit | C# |
5a94d5dfeccc3ced8f46affcc8e30bec12ede145 | Make percent assigned on main form and assign characters match (PG-204) | sillsdev/Glyssen,sillsdev/Glyssen | ProtoScript/Analysis/ProjectAnalysis.cs | ProtoScript/Analysis/ProjectAnalysis.cs | using System;
using ProtoScript.Character;
using ProtoScript.Utilities;
namespace ProtoScript.Analysis
{
public class ProjectAnalysis
{
private readonly Project m_projectToAnalyze;
public ProjectAnalysis(Project projectToAnalyze)
{
m_projectToAnalyze = projectToAnalyze;
}
public int TotalBlocks { get... | using System;
using ProtoScript.Character;
using ProtoScript.Utilities;
namespace ProtoScript.Analysis
{
public class ProjectAnalysis
{
private readonly Project m_projectToAnalyze;
public ProjectAnalysis(Project projectToAnalyze)
{
m_projectToAnalyze = projectToAnalyze;
}
public int TotalBlocks { get... | mit | C# |
a6a39e76c4c078b8739286002f71ed24532db057 | Add Pin number to constructor. | Dot-and-Net/IoTHelpers,Dot-and-Net/IoTHelpers,Dot-and-Net/IoTHelpers | Samples/MotionDetector/MainPage.xaml.cs | Samples/MotionDetector/MainPage.xaml.cs | using IoTHelpers.Boards;
using IoTHelpers.Gpio.Modules;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using W... | using IoTHelpers.Boards;
using IoTHelpers.Gpio.Modules;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using W... | mit | C# |
7cad9f3d9eb468924170ce9810959a1e23b7f2a1 | change api route for patient payments | SnapMD/connectedcare-sdk,dhawalharsora/connectedcare-sdk | SnapMD.ConnectedCare.Sdk/PaymentsApi.cs | SnapMD.ConnectedCare.Sdk/PaymentsApi.cs | // Copyright 2015 SnapMD, Inc.
// 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 ag... | // Copyright 2015 SnapMD, Inc.
// 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 ag... | apache-2.0 | C# |
098e9e3166dde33366ef48039628b65ed40cd311 | Update AssemblyInfo.cs | smourier/TraceSpy,smourier/TraceSpy,smourier/TraceSpy | TraceSpyTest/Properties/AssemblyInfo.cs | TraceSpyTest/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("TraceSpyTest")]
[assembly: AssemblyDescription("Provides tests for sending traces.")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
[assembly: AssemblyCompany("Simo... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("TraceSpyTest")]
[assembly: AssemblyDescription("Provides tests for sending traces.")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
[assembly: AssemblyCompany("Simo... | mit | C# |
c2cb37de26682be7f3b3870ed8cebd79ba488dcd | Bump version to 0.7.0 | ar3cka/Journalist | src/SolutionInfo.cs | src/SolutionInfo.cs | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyProductAttribute("Journalist")]
[assembly: AssemblyVersionAttribute("0.7.0")]
[assembly: AssemblyInformationalVersionAttribute("0.7.0")]
[assembly: AssemblyFileVersionAttribute("0.7.0")]
[assembly: AssemblyCompanyAttribute("Anton Mednonogov")]
namespace... | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyProductAttribute("Journalist")]
[assembly: AssemblyVersionAttribute("0.6.9")]
[assembly: AssemblyInformationalVersionAttribute("0.6.9")]
[assembly: AssemblyFileVersionAttribute("0.6.9")]
[assembly: AssemblyCompanyAttribute("Anton Mednonogov")]
namespace... | apache-2.0 | C# |
74d612d1b0204798263fbd2e93b0630d3571f1c9 | fix warning | Ky7m/DemoCode,Ky7m/DemoCode,Ky7m/DemoCode,Ky7m/DemoCode | PulumiDemo/PulumiDemoTests/Mocks.cs | PulumiDemo/PulumiDemoTests/Mocks.cs | using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Testing;
namespace PulumiDemoTests
{
internal class Mocks : IMocks
{
public Task<(string id, object state)> NewResourceAsync(MockResourceArgs args)
{
var outputs = ImmutableDictionary.CreateBuilder<string... | using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Testing;
namespace PulumiDemoTests
{
internal class Mocks : IMocks
{
public Task<(string? id, object state)> NewResourceAsync(MockResourceArgs args)
{
var outputs = ImmutableDictionary.CreateBuilder<strin... | mit | C# |
726bdb4ca09316930fef856cdf9cff7234b26818 | Correct AssemblyInformation. | gatzka/SharpJet,gatzka/cs-jet,leistner/SharpJet | SharpJet/Properties/AssemblyInfo.cs | SharpJet/Properties/AssemblyInfo.cs | // <copyright file="AssemblyInfo.cs" company="Hottinger Baldwin Messtechnik GmbH">
//
// CS Jet, a library to communicate with Jet IPC.
//
// The MIT License (MIT)
//
// Copyright (C) Hottinger Baldwin Messtechnik GmbH
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this softwa... | // <copyright file="AssemblyInfo.cs" company="Hottinger Baldwin Messtechnik GmbH">
//
// CS Jet, a library to communicate with Jet IPC.
//
// The MIT License (MIT)
//
// Copyright (C) Hottinger Baldwin Messtechnik GmbH
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this softwa... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.