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 |
|---|---|---|---|---|---|---|---|---|
2ea525edc4b4c53f3e36ec726eeb94669d3827fb | Optimize performances. | ZooPin/CK-Glouton,ZooPin/CK-Glouton,ZooPin/CK-Glouton,ZooPin/CK-Glouton | src/CK.Glouton.Handler.Tcp/TcpHandler.cs | src/CK.Glouton.Handler.Tcp/TcpHandler.cs | using CK.ControlChannel.Tcp;
using CK.Core;
using CK.Monitoring;
using System;
using System.IO;
using System.Text;
using System.Threading.Tasks;
namespace CK.Glouton.Handler.Tcp
{
public class TcpHandler : IGrandOutputHandler
{
private readonly TcpHandlerConfiguration _configuration;
private r... | using CK.ControlChannel.Tcp;
using CK.Core;
using CK.Monitoring;
using System;
using System.IO;
using System.Text;
namespace CK.Glouton.Handler.Tcp
{
public class TcpHandler : IGrandOutputHandler
{
private readonly TcpHandlerConfiguration _configuration;
private ControlChannelClient _controlC... | mit | C# |
5b460b2887243e19d158aac6fe4f3893644a18d2 | Update LocatorModule.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D | apps/Core2D.Wpf/Modules/LocatorModule.cs | apps/Core2D.Wpf/Modules/LocatorModule.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Autofac;
using ServiceProvider.Autofac;
namespace Core2D.Wpf.Modules
{
/// <summary>
/// Locator components module.
/// </summary>... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Autofac;
using Core2D.Wpf.Locator;
namespace Core2D.Wpf.Modules
{
/// <summary>
/// Locator components module.
/// </summary>
... | mit | C# |
10508ae87bc61ffaf70361a25fc4e3b7c3d0a0b7 | Handle nvarchar(max) | TeamnetGroup/schema2fm | src/ConsoleApp/Column.cs | src/ConsoleApp/Column.cs | namespace ConsoleApp
{
public class Column
{
private readonly string name;
private readonly string type;
private readonly bool isNullable;
private readonly short maxLength;
public Column(string name, string type, bool isNullable, short maxLength)
{
th... | namespace ConsoleApp
{
public class Column
{
private readonly string name;
private readonly string type;
private readonly bool isNullable;
private readonly short maxLength;
public Column(string name, string type, bool isNullable, short maxLength)
{
th... | mit | C# |
16b4c9e69d6ed3625d823f0a1dee98cbbb59f835 | Fix ApiDiff project settings | praeclarum/sqlite-net | tests/ApiDiff/Properties/AssemblyInfo.cs | tests/ApiDiff/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle ("ApiDiff")]
[assembly: AssemblyDescription ("")]
[assembly: AssemblyConfiguration ("")]
[assembl... | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle ("ApiDiff")]
[assembly: AssemblyDescription ("")]
[assembly: AssemblyConfiguration ("")]
[assembl... | mit | C# |
bb8ce18207a48a01e4e9ffa878392c27103e3cd5 | Fix name on test console write out | oriches/faker-cs,oriches/faker-cs | tests/Faker.Tests/RandomNumberFixture.cs | tests/Faker.Tests/RandomNumberFixture.cs | using System;
using System.Linq;
using NUnit.Framework;
namespace Faker.Tests
{
[TestFixture]
public class RandomNumberFixture
{
[TestCase(1, "Coin flip")] // 0 ... 1 Coin flip
[TestCase(6, "6 sided die")] // 0 .. 6
[TestCase(9, "Random single digit")] // 0 ... 9
[TestCase(... | using System;
using System.Linq;
using NUnit.Framework;
namespace Faker.Tests
{
[TestFixture]
public class RandomNumberFixture
{
[TestCase(1, "Coin flip")] // 0 ... 1 Coin flip
[TestCase(6, "6 sided die")] // 0 .. 6
[TestCase(9, "Random single digit")] // 0 ... 9
[TestCase(... | mit | C# |
1ac7843eaf554588266d01888c992d1a9e08969c | Use File.OpenRead instead. | dlemstra/Magick.NET,dlemstra/Magick.NET | src/Shared/FileHelper.cs | src/Shared/FileHelper.cs | // Copyright Dirk Lemstra https://github.com/dlemstra/Magick.NET.
// Licensed under the Apache License, Version 2.0.
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace ImageMagick
{
internal static partial class FileHelper
{
public static string CheckForBas... | // Copyright Dirk Lemstra https://github.com/dlemstra/Magick.NET.
// Licensed under the Apache License, Version 2.0.
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace ImageMagick
{
internal static partial class FileHelper
{
public static string CheckForBas... | apache-2.0 | C# |
fb72ad89fe9f9a1d588d018c869520cbde2a9bde | Clean Importer | prime31/Nez,Blucky87/Nez,prime31/Nez,ericmbernier/Nez,prime31/Nez,eumario/Nez | PipelineImporter/Tiled/TiledMapImporter.cs | PipelineImporter/Tiled/TiledMapImporter.cs | using System;
using System.Diagnostics;
using System.IO;
using System.Xml.Serialization;
using Microsoft.Xna.Framework.Content.Pipeline;
namespace Nez.TiledMaps
{
[ContentImporter( ".tmx", DefaultProcessor = "TiledMapProcessor", DisplayName = "Tiled Map Importer" )]
public class TiledMapImporter : ContentImporter<... | using System;
using System.Diagnostics;
using System.IO;
using System.Xml.Serialization;
using Microsoft.Xna.Framework.Content.Pipeline;
namespace Nez.TiledMaps
{
[ContentImporter( ".tmx", DefaultProcessor = "TiledMapProcessor", DisplayName = "Tiled Map Importer" )]
public class TiledMapImporter : ContentImporter<... | mit | C# |
b2e29c2473db10f46394ded80f88f548df54c8e2 | Make settings object bit cleaner | erooijak/MeditationTimer | src/Data/Settings.cs | src/Data/Settings.cs | using System;
namespace Rooijakkers.MeditationTimer.Data
{
/// <summary>
/// Stores settings data in local settings storage
/// </summary>
public class Settings
{
private const string TIME_TO_GET_READY_IN_SECONDS_STORAGE = "TimeToGetReadyStorage";
public TimeSpan TimeToGetReady
... | using System;
namespace Rooijakkers.MeditationTimer.Data
{
/// <summary>
/// Stores settings data in local settings storage
/// </summary>
public class Settings
{
private const string TIME_TO_GET_READY_IN_SECONDS_STORAGE = "TimeToGetReadyStorage";
public TimeSpan TimeToGetReady
... | mit | C# |
bb345f38aa22738f01f246cc7ae38835f993aaca | Add Kind and IsMissing properties to SyntaxNodeOrToken | terrajobst/nquery-vnext | NQuery.Language/SyntaxNodeOrToken.cs | NQuery.Language/SyntaxNodeOrToken.cs | using System;
namespace NQuery.Language
{
public struct SyntaxNodeOrToken
{
private readonly SyntaxNode _syntaxNode;
private readonly SyntaxToken _syntaxToken;
public SyntaxNodeOrToken(SyntaxToken syntaxToken)
{
_syntaxToken = syntaxToken;
_syntaxNode = ... | using System;
namespace NQuery.Language
{
public struct SyntaxNodeOrToken
{
private readonly SyntaxNode _syntaxNode;
private readonly SyntaxToken _syntaxToken;
public SyntaxNodeOrToken(SyntaxToken syntaxToken)
{
_syntaxToken = syntaxToken;
_syntaxNode = ... | mit | C# |
f4fcb21fc7f43cad7dc4f5a51111313560374568 | Make CFunctions public | testfairy/testfairy-xamarin | binding/TestFairy.iOS/StructsAndEnums.cs | binding/TestFairy.iOS/StructsAndEnums.cs | using System;
using System.Runtime.InteropServices;
using Foundation;
// Generated by Objective Sharpie (https://download.xamarin.com/objective-sharpie/ObjectiveSharpie.pkg)
// > sharpie bind -output TestFairy -namespace TestFairyLib -sdk iphoneos10.1 TestFairy.h
namespace TestFairyLib
{
public static class CFunction... | using System;
using System.Runtime.InteropServices;
using Foundation;
// Generated by Objective Sharpie (https://download.xamarin.com/objective-sharpie/ObjectiveSharpie.pkg)
// > sharpie bind -output TestFairy -namespace TestFairyLib -sdk iphoneos10.1 TestFairy.h
namespace TestFairyLib
{
static class CFunctions
{
... | apache-2.0 | C# |
9b5eb37c3cf2dbe0351908a237dfab75ae006512 | Fix unhandled insolvency date type "Dissolved On" (company 04211238) | LiberisLabs/CompaniesHouse.NET,kevbite/CompaniesHouse.NET | src/CompaniesHouse/Response/Insolvency/CaseDateType.cs | src/CompaniesHouse/Response/Insolvency/CaseDateType.cs | using System.Runtime.Serialization;
namespace CompaniesHouse.Response.Insolvency
{
public enum CaseDateType
{
[EnumMember(Value = "")]
None = 0,
[EnumMember(Value = "instrumented-on")]
InstrumentedOn,
[EnumMember(Value = "administration-started-on")]
Ad... | using System.Runtime.Serialization;
namespace CompaniesHouse.Response.Insolvency
{
public enum CaseDateType
{
[EnumMember(Value = "")]
None = 0,
[EnumMember(Value = "instrumented-on")]
InstrumentedOn,
[EnumMember(Value = "administration-started-on")]
Ad... | mit | C# |
29b70e8a808e383681d31e88d5bab4bf6afcf9b2 | add author | Fearswe/TwitchChatSharp,3ventic/TwitchChatSharp | TwitchChatSharp/Properties/AssemblyInfo.cs | TwitchChatSharp/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("Tw... | 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("Tw... | mit | C# |
759da09c38631efe66630036fa8aa61cd6e92fa8 | Update events.cs | AntiTcb/Discord.Net,RogueException/Discord.Net,Confruggy/Discord.Net | docs/guides/concepts/samples/events.cs | docs/guides/concepts/samples/events.cs | using Discord;
using Discord.WebSocket;
public class Program
{
private DiscordSocketClient _client;
static void Main(string[] args) => new Program().MainAsync().GetAwaiter().GetResult();
public async Task MainAsync()
{
// When working with events that have Cacheable<IMessage, ulong> parameters,
// you must e... | using Discord;
using Discord.WebSocket;
public class Program
{
private DiscordSocketClient _client;
static void Main(string[] args) => new Program().MainAsync().GetAwaiter().GetResult();
public async Task MainAsync()
{
_client = new DiscordSocketClient();
await _client.LoginAsync(TokenType.Bot, "bot token")... | mit | C# |
a349680bf150c7230c69f88d1e18f2a34b294d45 | fix null ref exception | DustinCampbell/omnisharp-roslyn,DustinCampbell/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | src/OmniSharp.Host/Internal/CommandOptionExtensions.cs | src/OmniSharp.Host/Internal/CommandOptionExtensions.cs | using System;
using System.ComponentModel;
using Microsoft.Extensions.CommandLineUtils;
namespace OmniSharp.Internal
{
public static class CommandOptionExtensions
{
public static T GetValueOrDefault<T>(this CommandOption opt, T defaultValue)
{
if (opt.HasValue())
{
... | using System;
using System.ComponentModel;
using Microsoft.Extensions.CommandLineUtils;
namespace OmniSharp.Internal
{
public static class CommandOptionExtensions
{
public static T GetValueOrDefault<T>(this CommandOption opt, T defaultValue)
{
if (opt.HasValue())
{
... | mit | C# |
3fb41a20b55aa7e2d5270195e1a182dec18ed80b | Add room name to settings | smoogipoo/osu,peppy/osu-new,UselessToucan/osu,ppy/osu,ppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu | osu.Game/Online/RealtimeMultiplayer/MultiplayerRoomSettings.cs | osu.Game/Online/RealtimeMultiplayer/MultiplayerRoomSettings.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.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using JetBrains.Annotations;
using osu.Game.Online.API;
namespace osu.Game.Online.Re... | // 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.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using JetBrains.Annotations;
using osu.Game.Online.API;
namespace osu.Game.Online.Re... | mit | C# |
6d701f17c3e954b80d4231b895b2e3cc67b91f6e | remove unused code | arknu/Umbraco-CMS,abryukhov/Umbraco-CMS,marcemarc/Umbraco-CMS,KevinJump/Umbraco-CMS,robertjf/Umbraco-CMS,abryukhov/Umbraco-CMS,KevinJump/Umbraco-CMS,abryukhov/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,marcemarc/Umbraco-CMS,umbraco/Umbraco-CMS,arknu/Umbraco-CMS,robertjf/Umbraco-CMS,umbraco/Umbraco-CMS,abjerner/Umbraco-C... | src/Umbraco.Web.Common/Macros/PartialViewMacroViewComponent.cs | src/Umbraco.Web.Common/Macros/PartialViewMacroViewComponent.cs | using System.Collections.Generic;
using Umbraco.Web.Models;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ViewEngines;
using Umbraco.Core.Composing;
using Umbraco.Core.Models.PublishedContent;
namespace Umbraco.Web.M... | using System.Collections.Generic;
using Umbraco.Web.Models;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ViewEngines;
using Umbraco.Core.Composing;
using Umbraco.Core.Models.PublishedContent;
namespace Umbraco.Web.M... | mit | C# |
8dfa3ee71b826de5028a911bc59fb9995659b443 | Update IDecorator.cs | Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D | src/Core2D/Model/Renderer/IDecorator.cs | src/Core2D/Model/Renderer/IDecorator.cs | using System.Collections.Generic;
using Core2D.Containers;
using Core2D.Input;
using Core2D.Shapes;
namespace Core2D.Renderer
{
/// <summary>
/// Defines decorator contract.
/// </summary>
public interface IDecorator : IObservableObject, IDrawable
{
/// <summary>
/// Gets or sets ... | using System.Collections.Generic;
using Core2D.Containers;
using Core2D.Input;
using Core2D.Shapes;
namespace Core2D.Renderer
{
/// <summary>
/// Defines decorator contract.
/// </summary>
public interface IDecorator : IObservableObject, IDrawable
{
/// <summary>
/// Gets or sets ... | mit | C# |
6f996daa053600d04be530bcb2d5e1924161ce70 | Update Namespace. | masteryee/protoactor-dotnet,masteryee/protoactor-dotnet,AsynkronIT/protoactor-dotnet,tomliversidge/protoactor-dotnet,tomliversidge/protoactor-dotnet | tests/Proto.Actor.Extensions.Tests/ActorFactoryTest.cs | tests/Proto.Actor.Extensions.Tests/ActorFactoryTest.cs | using Microsoft.Extensions.DependencyInjection;
using System;
using System.Threading.Tasks;
using Proto;
using Xunit;
namespace Proto.ActorExtensions.Tests
{
public class SampleActor : IActor
{
public static bool Created = false;
public SampleActor()
{
Created = true;
... | using Microsoft.Extensions.DependencyInjection;
using System;
using System.Threading.Tasks;
using Proto;
using Xunit;
namespace protobug
{
public class SampleActor : IActor
{
public static bool Created = false;
public SampleActor()
{
Created = true;
}
publi... | apache-2.0 | C# |
32c2b33dcbebca9838d978b6ed97d015a0a86a9e | Update FarisMalaeb.cs | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/FarisMalaeb.cs | src/Firehose.Web/Authors/FarisMalaeb.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class BruceWayne : IAmACommunityMember
{
public string FirstName => "Faris";
public string LastName ... | 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# |
3fc87d41f8656b0720f67115ee628aef8f25a159 | Bump version to 0.9.2 | quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot | CactbotOverlay/Properties/AssemblyInfo.cs | CactbotOverlay/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("CactbotOverlay")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CactbotOverlay")]
[assembly: AssemblyC... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("CactbotOverlay")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CactbotOverlay")]
[assembly: AssemblyC... | apache-2.0 | C# |
840a96480fdf7ba510152b16e59d6f80f7aa295d | Add missing bootstrap reference (after removing bootswatch) | taurit/TodoistCalendar,taurit/TodoistCalendar,taurit/CalendarProxy,taurit/CalendarProxy,taurit/TodoistCalendar | CalendarProxy/Views/Shared/_Layout.cshtml | CalendarProxy/Views/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - Calendar Proxy</title>
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
<link href="~/Content/iCalStyles.min.css" rel="stylesheet" />
... | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - Calendar Proxy</title>
<link href="~/Content/iCalStyles.min.css" rel="stylesheet" />
<link href="~/Content/timer.min.css" rel="stylesheet" />
<li... | mit | C# |
f3487e3075bf3e5c68fa0c71283d6b1302f5069a | Optimize ProxyCacheEntry for the same instance | ngbrown/nhibernate-core,gliljas/nhibernate-core,RogerKratz/nhibernate-core,ngbrown/nhibernate-core,hazzik/nhibernate-core,hazzik/nhibernate-core,fredericDelaporte/nhibernate-core,RogerKratz/nhibernate-core,RogerKratz/nhibernate-core,gliljas/nhibernate-core,gliljas/nhibernate-core,fredericDelaporte/nhibernate-core,hazzi... | src/NHibernate/Proxy/ProxyCacheEntry.cs | src/NHibernate/Proxy/ProxyCacheEntry.cs | #region Credits
// This work is based on LinFu.DynamicProxy framework (c) Philip Laureano who has donated it to NHibernate project.
// The license is the same of NHibernate license (LGPL Version 2.1, February 1999).
// The source was then modified to be the default DynamicProxy of NHibernate project.
#endregion
usin... | #region Credits
// This work is based on LinFu.DynamicProxy framework (c) Philip Laureano who has donated it to NHibernate project.
// The license is the same of NHibernate license (LGPL Version 2.1, February 1999).
// The source was then modified to be the default DynamicProxy of NHibernate project.
#endregion
usin... | lgpl-2.1 | C# |
1ec4cf2381d57a9c86d7485e1be81c79e5317d97 | Make callback query data an optional property | MrRoundRobin/telegram.bot,AndyDingo/telegram.bot,TelegramBots/telegram.bot | src/Telegram.Bot/Types/CallbackQuery.cs | src/Telegram.Bot/Types/CallbackQuery.cs | using Newtonsoft.Json;
namespace Telegram.Bot.Types
{
/// <summary>
/// This object represents an incoming callback query from a <see cref="InlineKeyboardButton"/>. If the button that originated the query was attached to a <see cref="Message"/> sent by the bot, the field message will be presented. If the butto... | using Newtonsoft.Json;
namespace Telegram.Bot.Types
{
/// <summary>
/// This object represents an incoming callback query from a <see cref="InlineKeyboardButton"/>. If the button that originated the query was attached to a <see cref="Message"/> sent by the bot, the field message will be presented. If the butto... | mit | C# |
68b7f35ccc06aabc0afc3ca47bd448048f6e6d89 | Remove unused property. | sitofabi/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,sitofabi/duplicati,sitofabi/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,sitofabi/duplicati,duplicati/duplicati,duplicati/duplicati,sitofabi/duplicati,mnaiman/duplicati | Duplicati/Library/Backend/Mega/Strings.cs | Duplicati/Library/Backend/Mega/Strings.cs | using Duplicati.Library.Localization.Short;
namespace Duplicati.Library.Backend.Strings {
internal static class MegaBackend {
public static string DisplayName { get { return LC.L(@"mega.nz"); } }
public static string AuthPasswordDescriptionLong { get { return LC.L(@"The password used to connect... | using Duplicati.Library.Localization.Short;
namespace Duplicati.Library.Backend.Strings {
internal static class MegaBackend {
public static string DisplayName { get { return LC.L(@"mega.nz"); } }
public static string AuthPasswordDescriptionLong { get { return LC.L(@"The password used to connect... | lgpl-2.1 | C# |
6eb837fad76b8094eefb8467c88bf6de0a4fce4d | fix test | shanselman/Fody,Fody/Fody,huoxudong125/Fody,ColinDabritzViewpoint/Fody,furesoft/Fody,distantcam/Fody,shanselman/Fody,PKRoma/Fody,jasonholloway/Fody,GeertvanHorrik/Fody,ichengzi/Fody,shanselman/Fody | Fody.Tests/SolutionPathValidatorTests.cs | Fody.Tests/SolutionPathValidatorTests.cs | using System;
using NSubstitute;
using NUnit.Framework;
[TestFixture]
public class SolutionPathValidatorTests
{
[Test]
public void Valid()
{
var buildLogger = Substitute.For<BuildLogger>();
var pathValidator = new SolutionPathValidator
{
... | using System;
using NSubstitute;
using NUnit.Framework;
[TestFixture]
public class SolutionPathValidatorTests
{
[Test]
public void Valid()
{
var buildLogger = Substitute.For<BuildLogger>();
var pathValidator = new SolutionPathValidator
{
... | mit | C# |
eac554181e9383f50a421b45b2e4bf11494b1c5c | add back in the orderId on edit | ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab | Anlab.Mvc/Views/Order/Edit.cshtml | Anlab.Mvc/Views/Order/Edit.cshtml | @model AnlabMvc.Models.Order.OrderEditModel
@using Anlab.Core.Domain
@{
ViewBag.Title = "Edit Existing Work Request";
}
@Html.AntiForgeryToken()
<div id="root" class="col"></div>
@section ScriptVariables {
<script>
App = {};
App.orderData = @Json.Serialize(Model);
App.... | @model AnlabMvc.Models.Order.OrderEditModel
@using Anlab.Core.Domain
@{
ViewBag.Title = "Edit Existing Work Request";
}
@Html.AntiForgeryToken()
<div id="root" class="col"></div>
@section ScriptVariables {
<script>
App = {};
App.orderData = @Json.Serialize(Model);
App.... | mit | C# |
60f3447c6f1341c8f16108940f7747fb66933302 | Fix msg name | DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer | Common/Message/Client/ScreenshotCliMsg.cs | Common/Message/Client/ScreenshotCliMsg.cs | using Lidgren.Network;
using LunaCommon.Enums;
using LunaCommon.Message.Client.Base;
using LunaCommon.Message.Data.Screenshot;
using LunaCommon.Message.Types;
using System;
using System.Collections.Generic;
namespace LunaCommon.Message.Client
{
public class ScreenshotCliMsg : CliMsgBase<ScreenshotBaseMsgData>
... | using Lidgren.Network;
using LunaCommon.Enums;
using LunaCommon.Message.Client.Base;
using LunaCommon.Message.Data.Screenshot;
using LunaCommon.Message.Types;
using System;
using System.Collections.Generic;
namespace LunaCommon.Message.Client
{
public class ScrenshotCliMsg : CliMsgBase<ScreenshotBaseMsgData>
... | mit | C# |
1583f7e65660f0d67b1d1efa3f0572112673d3af | Bump version | segrived/NSISInfoWriter | NSISInfoWriter/Properties/AssemblyInfo.cs | NSISInfoWriter/Properties/AssemblyInfo.cs | 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("NSISInfoWriter")]
[assembly: Assem... | 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("NSISInfoWriter")]
[assembly: Assem... | mit | C# |
a57fc30fcddb0910ec59a899eb761a708a4f56de | Correct event unsubscribe for monoBehaviours; | KonH/UDBase | Controllers/Event/EventHandler.cs | Controllers/Event/EventHandler.cs | using System;
using System.Collections.Generic;
using UnityEngine;
namespace UDBase.Controllers.EventSystem {
class EventHandler<T>: EventHandlerBase {
readonly List<Action<T>> _callbacks = new List<Action<T>>();
readonly List<Action<T>> _tempCallbacks = new List<Action<T>>();
public void Subscribe(object... | using System;
using System.Collections.Generic;
using UnityEngine;
namespace UDBase.Controllers.EventSystem {
class EventHandler<T>: EventHandlerBase {
readonly List<Action<T>> _callbacks = new List<Action<T>>();
readonly List<Action<T>> _tempCallbacks = new List<Action<T>>();
public void Subscribe(object... | mit | C# |
271c7ae8f4f5cbaa8cec28d2f36dda3939964116 | Make CupCakeClientArgs ctor internal | Yonom/CupCake | CupCake/Host/CupCakeClientArgs.cs | CupCake/Host/CupCakeClientArgs.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JetBrains.Annotations;
using PlayerIOClient;
namespace CupCake.Host
{
/// <summary>
/// Class CupCakeClientArgs
/// </summary>
public class CupCakeClientArgs
{
/// <summary>
/// Gets or sets... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JetBrains.Annotations;
using PlayerIOClient;
namespace CupCake.Host
{
/// <summary>
/// Class CupCakeClientArgs
/// </summary>
public class CupCakeClientArgs
{
/// <summary>
/// Gets or sets... | mit | C# |
1032ba42c3813af861604bd9fc2e116c5cc5e458 | Add Cygwin path replacement for Rename/Override | x335/omnisharp-server,corngood/omnisharp-server,syl20bnr/omnisharp-server,corngood/omnisharp-server,x335/omnisharp-server,syl20bnr/omnisharp-server,svermeulen/omnisharp-server,OmniSharp/omnisharp-server | OmniSharp/Rename/ModifiedFileResponse.cs | OmniSharp/Rename/ModifiedFileResponse.cs | using OmniSharp.Solution;
namespace OmniSharp.Rename
{
public class ModifiedFileResponse
{
private string _fileName;
public ModifiedFileResponse() {}
public ModifiedFileResponse(string fileName, string buffer) {
this.FileName = fileName;
this.Buffer = buffer;
... | namespace OmniSharp.Rename
{
public class ModifiedFileResponse
{
public ModifiedFileResponse() {}
public ModifiedFileResponse(string fileName, string buffer) {
this.FileName = fileName;
this.Buffer = buffer;
}
public string FileName { get; set; }
... | mit | C# |
f45123cdcb7680f7497255d21a806d349b4d0b98 | bump version to 2.8.1 | piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker | Piwik.Tracker/Properties/AssemblyInfo.cs | Piwik.Tracker/Properties/AssemblyInfo.cs | 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("PiwikTracker")]
[assembly: Assembl... | 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("PiwikTracker")]
[assembly: Assembl... | bsd-3-clause | C# |
4ec1a6930ede3c0c05b5f89e10dd8f134997902d | Update version | Yonom/CupCake | CupCake/Properties/AssemblyInfo.cs | CupCake/Properties/AssemblyInfo.cs | 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("CupCake")]
[assembly: AssemblyDescriptio... | 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("CupCake")]
[assembly: AssemblyDescriptio... | mit | C# |
df90fe5e807b1df43cf8748a6dff6528db7ea496 | fix trailing space | Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen | Dashen/Components/TextComponent.cs | Dashen/Components/TextComponent.cs | namespace Dashen.Components
{
public class TextComponent : Component<TextModel>
{
public override string GetJsx()
{
return @"
var TextComponent = React.createClass({
render: function() {
return (
<div className='text-center'>{this.props.model.Text}</div>
);
}
});";
}
}
}
| namespace Dashen.Components
{
public class TextComponent : Component<TextModel>
{
public override string GetJsx()
{
return @"
var TextComponent = React.createClass({
render: function() {
return (
<div className='text-center'>{this.props.model.Text} </div>
);
}
});";
}
}
}
| lgpl-2.1 | C# |
4a956a36461487ef56a42f71b920fdd84ed8dbf5 | Fix the Settings Scope on the MixpanelSettingsEditor | mixpanel/mixpanel-unity | Mixpanel/Editor/MixpanelSettingsEditor.cs | Mixpanel/Editor/MixpanelSettingsEditor.cs | using UnityEditor;
namespace mixpanel.editor
{
internal class MixpanelSettingsEditor
{
[SettingsProvider]
internal static SettingsProvider CreateCustomSettingsProvider()
{
// First parameter is the path in the Settings window.
// Second parameter is the scope of ... | using UnityEditor;
namespace mixpanel.editor
{
internal class MixpanelSettingsEditor
{
[SettingsProvider]
internal static SettingsProvider CreateCustomSettingsProvider()
{
// First parameter is the path in the Settings window.
// Second parameter is the scope of ... | apache-2.0 | C# |
b49f7c8715072823185623016af16adf2c7f1f9c | change project version | T-Alex/Mvvm | TAlex.Mvvm.Wpf/Properties/AssemblyInfo.cs | TAlex.Mvvm.Wpf/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Markup;
// 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.... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Markup;
// 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.... | mit | C# |
e485503c6bf945d9b43c5053138c13b44054b144 | Increment assembly version and update assembly info | junderhill/Foggle | Foggle/Properties/AssemblyInfo.cs | Foggle/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("Fo... | 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("Fo... | mit | C# |
0c70b180342113adbc993c2bfc52bb826c94f1ac | Add SDK version constant | GeeoIO/geeo-unity-sdk | GeeoSdk/GeeoSdk/HighLevel/Geeo.cs | GeeoSdk/GeeoSdk/HighLevel/Geeo.cs | using UnityEngine;
namespace GeeoSdk
{
/// <summary>
/// Root class of the SDK. It is stateless and allows to perform basic operations with the SDK.
/// </summary>
public sealed class Geeo : MonoSingleton<Geeo>
{
/// <summary>
/// Current Geeo SDK's version.
/// </summary>
public const string sdkVersion ... | using UnityEngine;
namespace GeeoSdk
{
/// <summary>
/// Root class of the SDK. It is stateless and allows to perform basic operations with the SDK.
/// </summary>
public sealed class Geeo : MonoSingleton<Geeo>
{
// Geeo SDK's debug messages logging level
[SerializeField] private LogLevel logLevel = LogLevel... | mit | C# |
53e1d700d4896e893cc1d743c8c58e1c7af16129 | Revert "Added 5 tests for Length and a test for Time" | JohanLarsson/Gu.Units | Gu.Units.Tests/UnitParserTests.cs | Gu.Units.Tests/UnitParserTests.cs | namespace Gu.Units.Tests
{
using NUnit.Framework;
public class UnitParserTests
{
[TestCase("1m", 1)]
[TestCase("-1m", 1)]
[TestCase("1e3m", 1e3)]
[TestCase("1e+3m", 1e+3)]
[TestCase("1e-3m", 1e-3)]
[TestCase(" 1m", 1)]
[TestCase("1 m", 1)]
[T... | namespace Gu.Units.Tests
{
using NUnit.Framework;
public class UnitParserTests
{
[TestCase("1m", 1)]
[TestCase("-1m", -1)]
[TestCase("1e3m", 1e3)]
[TestCase("1e+3m", 1e+3)]
[TestCase("-1e+3m", -1e+3)]
[TestCase("1e-3m", 1e-3)]
[TestCase("-1e-3m", -1e... | mit | C# |
cb4b6a1a095fd95e87fa2c37b7c00102e859f501 | Update MainActivity to use new application loading | conceptdev/xamarin-forms-windows-preview,haithemaraissia/xamarin-forms-windows-preview | WorkingWithColors/Android/MainActivity.cs | WorkingWithColors/Android/MainActivity.cs | using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using Xamarin.Forms.Platform.Android;
namespace WorkingWithColors.Android
{
[Activity (Label = "WorkingWithColors.Android.Android", MainLauncher = true)]
public class MainAc... | using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using Xamarin.Forms.Platform.Android;
namespace WorkingWithColors.Android
{
[Activity (Label = "WorkingWithColors.Android.Android", MainLauncher = true)]
public class MainAc... | apache-2.0 | C# |
56e27f01d72f7c4a786fbdd570143dba1b590396 | Use better title for Mac/Mac64/XamMac assemblies/nuget packages | l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,l8s/Eto,PowerOfCode/Eto,l8s/Eto,PowerOfCode/Eto | Source/Eto.Mac/Properties/AssemblyInfo.cs | Source/Eto.Mac/Properties/AssemblyInfo.cs | using System.Reflection;
#if XAMMAC
[assembly: AssemblyTitle("Eto.Forms - Xamarin.Mac Platform")]
[assembly: AssemblyDescription("OS X Platform for the Eto.Forms UI Framework using Xamarin.Mac")]
#elif Mac64
[assembly: AssemblyTitle("Eto.Forms - MonoMac Platform")]
[assembly: AssemblyDescription("OS X Platform for the... | using System.Reflection;
#if XAMMAC
[assembly: AssemblyTitle("Eto.Forms - OS X Platform using Xamarin.Mac")]
[assembly: AssemblyDescription("OS X Platform for the Eto.Forms UI Framework using Xamarin.Mac")]
#else
[assembly: AssemblyTitle("Eto.Forms - OS X Platform using MonoMac")]
[assembly: AssemblyDescription("OS X ... | bsd-3-clause | C# |
81572f28ba94ec8584c07a01e5b25eb62ca140f6 | Update FormulaParser.cs | Excel-DNA/IntelliSense | Source/ExcelDna.IntelliSense/UIMonitor/FormulaParser.cs | Source/ExcelDna.IntelliSense/UIMonitor/FormulaParser.cs | using System;
using System.Linq;
using System.Text.RegularExpressions;
namespace ExcelDna.IntelliSense
{
static class FormulaParser
{
// Set from IntelliSenseDisplay.Initialize
public static char ListSeparator = ',';
internal static bool TryGetFormulaInfo(string formulaPrefix, out stri... | using System.Linq;
using System.Text.RegularExpressions;
namespace ExcelDna.IntelliSense
{
static class FormulaParser
{
// Set from IntelliSenseDisplay.Initialize
public static char ListSeparator = ',';
// TODO: This needs a proper implementation, considering subformulae
inter... | mit | C# |
95bd1715c6008f765a7c94664d6e5ab9bfb7976c | Create default constructor | SICU-Stress-Measurement-System/frontend-cs | StressMeasurementSystem/Models/Patient.cs | StressMeasurementSystem/Models/Patient.cs | using System;
using System.Collections.Generic;
using System.Net.Mail;
namespace StressMeasurementSystem.Models
{
public class Patient
{
#region Structs
public struct Name
{
public string Prefix { get; set; }
public string First { get; set; }
public... | using System;
using System.Collections.Generic;
using System.Net.Mail;
namespace StressMeasurementSystem.Models
{
public class Patient
{
#region Structs
public struct Name
{
public string Prefix { get; set; }
public string First { get; set; }
public... | apache-2.0 | C# |
e65caf7cf219105df9019fabef6d7759850e62d1 | Bump version. | mios-fi/mios.mail.templating | Library/Properties/AssemblyInfo.cs | Library/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... | bsd-2-clause | C# |
0084527eab1f2b8586258050cf300a296398295b | Rework login partial to BS4 | peterblazejewicz/aspnet-5-bootstrap-4,peterblazejewicz/aspnet-5-bootstrap-4 | mvc-individual-authentication/Views/Shared/_LoginPartial.cshtml | mvc-individual-authentication/Views/Shared/_LoginPartial.cshtml | @using Microsoft.AspNetCore.Identity
@using mvc_individual_authentication.Models
@inject SignInManager<ApplicationUser> SignInManager
@inject UserManager<ApplicationUser> UserManager
@if (SignInManager.IsSignedIn(User))
{
<form asp-area="" asp-controller="Account" asp-action="Logout" method="post" class="... | @using Microsoft.AspNetCore.Identity
@using mvc_individual_authentication.Models
@inject SignInManager<ApplicationUser> SignInManager
@inject UserManager<ApplicationUser> UserManager
@if (SignInManager.IsSignedIn(User))
{
<form asp-area="" asp-controller="Account" asp-action="Logout" method="post" id="log... | mit | C# |
3020a3a4bc32a2c61d2dbf654705bbf1ad5ccb78 | Set specific version for Microsoft.DirectX.dll. | alesliehughes/monoDX,alesliehughes/monoDX | Microsoft.DirectX/AssemblyInfo.cs | Microsoft.DirectX/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
using System;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Microsoft.DirectX")]
[assembly: AssemblyDescr... | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
using System;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Microsoft.DirectX")]
[assembly: AssemblyDescr... | mit | C# |
bfe8f2f79eafb167491c9196cb565917373b1d4e | Fix bob X translation | Xeeynamo/KingdomHearts | OpenKh.Game/Entities/BobEntity.cs | OpenKh.Game/Entities/BobEntity.cs | using Microsoft.Xna.Framework;
using OpenKh.Kh2.Models;
namespace OpenKh.Game.Entities
{
public class BobEntity : IEntity
{
public BobEntity(BobDescriptor bobDesc)
{
BobIndex = bobDesc.BobIndex;
Position = new Vector3(bobDesc.PositionX, -bobDesc.PositionY, -bobDesc.Posi... | using Microsoft.Xna.Framework;
using OpenKh.Kh2.Models;
namespace OpenKh.Game.Entities
{
public class BobEntity : IEntity
{
public BobEntity(BobDescriptor bobDesc)
{
BobIndex = bobDesc.BobIndex;
Position = new Vector3(-bobDesc.PositionX, -bobDesc.PositionY, -bobDesc.Pos... | mit | C# |
af243d1c5dcaae306401e5e77bb2229120b6f89b | Support SourceLink. | Faithlife/Parsing,ejball/ArgsReading,Faithlife/System.Data.SQLite,Faithlife/System.Data.SQLite,ejball/XmlDocMarkdown,Faithlife/FaithlifeUtility | tools/Build/Build.cs | tools/Build/Build.cs | using System;
using Faithlife.Build;
internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
build.AddDotNetTargets(
new DotNetBuildSettings
{
NuGetApiKey = Environment.GetEnvironmentVariable("NUGET_API_KEY"),
DocsSettings = new DotNetDocsSettings
... | using System;
using Faithlife.Build;
internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
build.AddDotNetTargets(
new DotNetBuildSettings
{
NuGetApiKey = Environment.GetEnvironmentVariable("NUGET_API_KEY"),
DocsSettings = new DotNetDocsSettings
... | mit | C# |
35c475b43aaf42ff825dd97cfd39793ffb17f249 | Make sure we close if multiple printers | jlewin/MatterControl,unlimitedbacon/MatterControl,tellingmachine/MatterControl,tellingmachine/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,larsbrubaker/MatterControl,mmoening/MatterControl,jlewin/MatterControl,mmoening/MatterControl,unlimitedbacon/MatterControl,unlimitedbac... | SetupWizard/SyncingPrintersPage.cs | SetupWizard/SyncingPrintersPage.cs | using MatterHackers.Localizations;
using MatterHackers.Agg.UI;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MatterHackers.MatterControl.SlicerConfiguration;
using MatterHackers.MatterControl.CustomWidgets;
namespace MatterHackers.MatterContr... | using MatterHackers.Localizations;
using MatterHackers.Agg.UI;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MatterHackers.MatterControl.SlicerConfiguration;
using MatterHackers.MatterControl.CustomWidgets;
namespace MatterHackers.MatterContr... | bsd-2-clause | C# |
9db67c6580d87d59a28f36a0b3e71d68171bad8a | speed up BrightestPixelLLE: takes 1/333 of the time before. note: image.Width and Height was accessed from within loop before, this slows down everything extremely. additionally i wrapped the loop in an unchecked area to eliminate bounds-checking. Access pattern is row based and uses a one-dimensional array. | gilangep/parsley,google-code-export/parsley,guivi01/parsley,ADVALAIN596/parsley,ADVALAIN596/parsley,ceverdeen7/parsley,muhammadoginh/parsley,tjankovic/parsley,gilangep/parsley,cheind/parsley,tjankovic/parsley,ceverdeen7/parsley,guivi01/parsley,muhammadoginh/parsley,cheind/parsley,google-code-export/parsley | Parsley.Core/BrightestPixelLLE.cs | Parsley.Core/BrightestPixelLLE.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Emgu.CV.Structure;
namespace Parsley.Core {
/// <summary>
/// Laser line extraction based on the brightest pixel
/// </summary>
/// <remarks>
/// Algorithms scans reports the brightest, maximum intensity... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Emgu.CV.Structure;
namespace Parsley.Core {
/// <summary>
/// Laser line extraction based on the brightest pixel
/// </summary>
/// <remarks>
/// Algorithms scans reports the brightest, maximum intensity... | bsd-3-clause | C# |
7cb283531f26066784d0d46c6225dbe25e400a38 | Remove superfluous usings. | RobThree/RedditSharp,Jinivus/RedditSharp,tomnolan95/RedditSharp,pimanac/RedditSharp,justcool393/RedditSharp-1,chuggafan/RedditSharp-1,angelotodaro/RedditSharp,IAmAnubhavSaini/RedditSharp,CrustyJew/RedditSharp,theonlylawislove/RedditSharp,SirCmpwn/RedditSharp,epvanhouten/RedditSharp,nyanpasudo/RedditSharp | RedditSharp/SpamFilterSettings.cs | RedditSharp/SpamFilterSettings.cs | namespace RedditSharp
{
public class SpamFilterSettings
{
public SpamFilterStrength LinkPostStrength { get; set; }
public SpamFilterStrength SelfPostStrength { get; set; }
public SpamFilterStrength CommentStrength { get; set; }
public SpamFilterSettings()
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RedditSharp
{
public class SpamFilterSettings
{
public SpamFilterStrength LinkPostStrength { get; set; }
public SpamFilterStrength SelfPostStrength { get; set; }
... | mit | C# |
533b24831bf35aaf08858b9441036d02a8b81f37 | add private access modifier to the article list | Kalivos/StringInspector | StringInspector/ArticleGatherer.cs | StringInspector/ArticleGatherer.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StringInspector
{
public class ArticleGatherer : IArticleRetrieval
{
private List<string> articles = new List<string>() { "κόσμε", "aabbccdb" };
public string GetNextA... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StringInspector
{
public class ArticleGatherer : IArticleRetrieval
{
List<string> articles = new List<string>() { "κόσμε", "aabbccdb" };
public string GetNextArticle()... | unlicense | C# |
f31cb3de451621c51f724599403cfa0f0970f049 | Update index.cshtml | reactiveui/website,reactiveui/website,reactiveui/website,reactiveui/website | input/contribute/operations/index.cshtml | input/contribute/operations/index.cshtml | Order: 100
---
@Html.Partial("_ChildPages")
https://medium.com/@mikeal/community-imbalance-theory-c5f8688ae352
<script async class="speakerdeck-embed" data-slide="4" data-id="880cb5d4ec364909a1db5b5655aa9d37" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>
| Order: 100
---
@Html.Partial("_ChildPages")
<script async class="speakerdeck-embed" data-slide="4" data-id="880cb5d4ec364909a1db5b5655aa9d37" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>
| mit | C# |
af7e7a39685a5ddf9fbb350cd3a6fa0474e3a4f7 | Include jquery ui | lrasmus/MHGR,lrasmus/MHGR | Viewer/Views/Shared/_Layout.cshtml | Viewer/Views/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/themes/base/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/b... | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
</head>
<body>
<div class="n... | apache-2.0 | C# |
f9a6468ba47d1bf98233946f9e0b49499189ecba | Use ToString instead of Enum.GetName | jcmoyer/Yeena | Yeena/PathOfExile/PoEItemSocket.cs | Yeena/PathOfExile/PoEItemSocket.cs | // Copyright 2013 J.C. Moyer
//
// 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 ... | // Copyright 2013 J.C. Moyer
//
// 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 ... | apache-2.0 | C# |
66263a5d49ffe7ecb57c8ec0f753049481b60a2a | Remove now dead code. | PenguinF/sandra-three | Sandra.UI.WF.Chess/SettingKeys.cs | Sandra.UI.WF.Chess/SettingKeys.cs | /*********************************************************************************
* SettingKeys.cs
*
* Copyright (c) 2004-2018 Henk Nicolai
*
* 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 o... | /*********************************************************************************
* SettingKeys.cs
*
* Copyright (c) 2004-2018 Henk Nicolai
*
* 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 o... | apache-2.0 | C# |
d9e0e39a898acbc2a64fbf18bb90a924fe17be5f | Add a bunch of junk you might find in a top-level program | EamonNerbonne/ExpressionToCode | TopLevelProgramExample/Program.cs | TopLevelProgramExample/Program.cs | using System;
using System.Linq.Expressions;
using ExpressionToCodeLib;
const int SomeConst = 27;
var myVariable = "implicitly closed over";
var withImplicitType = new {
A = "ImplicitTypeMember",
};
Console.WriteLine(ExpressionToCode.ToCode(() => myVariable));
new InnerClass().DoIt();
LocalFunction(123... | using System;
Console.WriteLine("Hello World!");
| apache-2.0 | C# |
73e9a902a1372cfd2a3bb96ee4d2f24afc3df111 | Remove unused depedency from test | noobot/SlackConnector | src/SlackConnector.Tests.Unit/SlackConnectionTests/PingTests.cs | src/SlackConnector.Tests.Unit/SlackConnectionTests/PingTests.cs | using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using Ploeh.AutoFixture.NUnit3;
using SlackConnector.Connections;
using SlackConnector.Connections.Sockets;
using SlackConnector.Connections.Sockets.Messages.Outbound;
using SlackConnector.Models;
namespace SlackConnector.Tests.Unit.SlackConnectionTests
... | using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using Ploeh.AutoFixture.NUnit3;
using SlackConnector.Connections;
using SlackConnector.Connections.Clients.Channel;
using SlackConnector.Connections.Models;
using SlackConnector.Connections.Sockets;
using SlackConnector.Connections.Sockets.Messages.Outbou... | mit | C# |
3ad687023bc4abf4133d26476e9d930c6d952247 | Expand interface to be more testable. So methods must have a session (i.e. not null) and add a generic for session when no session is needed. | generik0/Smooth.IoC.Dapper.Repository.UnitOfWork,generik0/Smooth.IoC.Dapper.Repository.UnitOfWork | src/Smooth.IoC.Dapper.Repository.UnitOfWork/Repo/IRepository.cs | src/Smooth.IoC.Dapper.Repository.UnitOfWork/Repo/IRepository.cs | using System.Collections.Generic;
using System.Threading.Tasks;
using Smooth.IoC.Dapper.Repository.UnitOfWork.Data;
namespace Smooth.IoC.Dapper.Repository.UnitOfWork.Repo
{
public interface IRepository<TEntity, TPk>
where TEntity : class
{
TEntity GetKey(TPk key, ISession session);
TEn... | using System.Collections.Generic;
using System.Threading.Tasks;
using Smooth.IoC.Dapper.Repository.UnitOfWork.Data;
namespace Smooth.IoC.Dapper.Repository.UnitOfWork.Repo
{
public interface IRepository<TEntity, TPk>
where TEntity : class
{
TEntity GetKey(TPk key, ISession session);
Tas... | mit | C# |
5e83e4ebfa162f01ce0ef69ca57dceef6e109488 | Update UnsafeDelegate.cs | NMSLanX/Natasha | test/NatashaBenchmark/UnsafeDelegate.cs | test/NatashaBenchmark/UnsafeDelegate.cs | using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Mathematics;
using BenchmarkDotNet.Order;
using System;
using System.Collections.Generic;
using System.Text;
namespace NatashaBenchmark
{
[MemoryDiagnoser, MarkdownExporter, RPlotExporter]
[MinColumn, MaxColumn, MeanColumn... | using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Mathematics;
using BenchmarkDotNet.Order;
using System;
using System.Collections.Generic;
using System.Text;
namespace NatashaBenchmark
{
[MemoryDiagnoser, MarkdownExporter, RPlotExporter]
[MinColumn, MaxColumn, MeanColumn... | mpl-2.0 | C# |
b82f77ae9f4f76b01a62248eec90f46ac4c651e7 | Fix Google auth | RootAccessOrg/kynnaugh | kynnaugh/SpeechTranscriber.cs | kynnaugh/SpeechTranscriber.cs | using Google.Cloud.Speech.V1Beta1;
using Google.Protobuf;
using Grpc.Auth;
using Grpc.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Google.Cloud.Speech.V1Beta1.Speech;
namespace kynnaugh
{
class SpeechTranscriber
{
... | using Google.Cloud.Speech.V1Beta1;
using Google.Protobuf;
using Grpc.Auth;
using Grpc.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Google.Cloud.Speech.V1Beta1.Speech;
namespace kynnaugh
{
class SpeechTranscriber
{
... | apache-2.0 | C# |
d5cef1453b52f5f69c2319eeeb0b37c123af162a | add a 0 value checking | Mooophy/158212 | sudoku/BackEnd/Matrix.cs | sudoku/BackEnd/Matrix.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BackEnd
{
internal abstract class Matrix
{
protected int[,] _Data;
public Matrix(int size)
{
_Data = new int[size, size];
}
protec... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BackEnd
{
public abstract class Matrix
{
protected int[,] _Data;
public Matrix(int size)
{
_Data = new int[size, size];
}
public M... | mit | C# |
d8f165cd7d7aaa50454b908beb532ecba0c1bc1d | Fix for issue #169 -- Added a special case where login redirect is found, the id is pulled from the url in a different spot | Haacked/JabbR,yadyn/JabbR,ToJans/JabbR,krolson/kkJabbr,Org1106/Project13221113,Haacked/JabbR,lukehoban/JabbR,mogulTest1/Project13231113,Org1106/Project13221106,M-Zuber/JabbR,mogulTest1/Project13171106,mogultest2/Project13231008,mogulTest1/Project91409,SonOfSam/JabbR,mogulTest1/Project13171024,meebey/JabbR,borisyankov/J... | JabbR/ContentProviders/GoogleDocsPresentationsContentProvider.cs | JabbR/ContentProviders/GoogleDocsPresentationsContentProvider.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using System.Text.RegularExpressions;
namespace JabbR.ContentProviders
{
public class GoogleDocsPresentationsContentProvider : EmbedContentProvider
{
private static readonly Regex _googleDocsInternal... | using System;
using System.Collections.Generic;
using System.Net;
using System.Web;
namespace JabbR.ContentProviders
{
public class GoogleDocsPresentationsContentProvider : EmbedContentProvider
{
public override string MediaFormatString
{
get
{
return @"... | mit | C# |
511628fa84ed9d6e50c53d0d67b40d40f40b6993 | Write stderr to GpgExceptions | Baggykiin/pass-winmenu | pass-winmenu/src/ExternalPrograms/GPG.cs | pass-winmenu/src/ExternalPrograms/GPG.cs | using System;
using System.Diagnostics;
using System.Text;
namespace PassWinmenu.ExternalPrograms
{
/// <summary>
/// Simple wrapper over GPG.
/// </summary>
internal class GPG
{
private readonly string executable;
/// <summary>
/// Initialises the wrapper.
/// </summary>
/// <param name="executable">... | using System;
using System.Diagnostics;
using System.Text;
namespace PassWinmenu.ExternalPrograms
{
/// <summary>
/// Simple wrapper over GPG.
/// </summary>
internal class GPG
{
private readonly string executable;
/// <summary>
/// Initialises the wrapper.
/// </summary>
/// <param name="executable">... | mit | C# |
93b639c93a204423513a9b8133021d42a7ab6b17 | Convert FormattingKeyword enum to it class name counterparts | SusanaL/Glimpse,rho24/Glimpse,paynecrl97/Glimpse,gabrielweyer/Glimpse,codevlabs/Glimpse,elkingtonmcb/Glimpse,codevlabs/Glimpse,elkingtonmcb/Glimpse,SusanaL/Glimpse,flcdrg/Glimpse,paynecrl97/Glimpse,sorenhl/Glimpse,dudzon/Glimpse,flcdrg/Glimpse,sorenhl/Glimpse,SusanaL/Glimpse,rho24/Glimpse,gabrielweyer/Glimpse,Glimpse/G... | source/Glimpse.Core/Plugin/Assist/FormattingKeywords.cs | source/Glimpse.Core/Plugin/Assist/FormattingKeywords.cs | namespace Glimpse.Core.Plugin.Assist
{
public static class FormattingKeywords
{
public const string Error = "error";
public const string Fail = "fail";
public const string Info = "info";
public const string Loading = "loading";
public const string Ms = "ms";
publ... | namespace Glimpse.Core.Plugin.Assist
{
public static class FormattingKeywords
{
public const string Error = "error";
public const string Fail = "fail";
public const string Info = "info";
public const string Loading = "loading";
public const string Ms = "ms";
publ... | apache-2.0 | C# |
e6329f4123fe6ed60de4871e96e46e3207b46a2c | Load OIDC configuration from root of Authority | auth0/auth0.net,jerriep/auth0.net,auth0/auth0.net,jerriep/auth0.net,jerriep/auth0.net | src/Auth0.AuthenticationApi/OpenIdConfigurationCache.cs | src/Auth0.AuthenticationApi/OpenIdConfigurationCache.cs | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.IdentityModel.Protocols;
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
namespace Auth0.AuthenticationApi
{
internal class OpenIdConfigurationCache
... | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.IdentityModel.Protocols;
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
namespace Auth0.AuthenticationApi
{
internal class OpenIdConfigurationCache
... | mit | C# |
bf6815b2a7496042bf63538349eaf048594c1a25 | Fix OsuGame test case not working | naoey/osu,DrabWeb/osu,ZLima12/osu,ZLima12/osu,DrabWeb/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,2yangk23/osu,peppy/osu-new,NeoAdonis/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu,NeoAdonis/osu,naoey/osu,johnneijzen/osu,UselessToucan/osu,2yangk23/osu,johnneijzen/osu,EVAST9919/osu,ppy... | osu.Game.Tests/Visual/TestCaseOsuGame.cs | osu.Game.Tests/Visual/TestCaseOsuGame.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 System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
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 System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Screens;
us... | mit | C# |
bcd61e8ad2204611d1c3969ce62bca470e4ded76 | Stop all coroutines on Die() | StefanoFiumara/Harry-Potter-Unity | Assets/Scripts/HarryPotterUnity/Utils/StaticCoroutine.cs | Assets/Scripts/HarryPotterUnity/Utils/StaticCoroutine.cs | using System.Collections;
using JetBrains.Annotations;
using UnityEngine;
namespace HarryPotterUnity.Utils
{
public class StaticCoroutine : MonoBehaviour
{
private static StaticCoroutine _mInstance;
private static StaticCoroutine Instance
{
get
{
... | using System.Collections;
using JetBrains.Annotations;
using UnityEngine;
namespace HarryPotterUnity.Utils
{
public class StaticCoroutine : MonoBehaviour
{
private static StaticCoroutine _mInstance;
private static StaticCoroutine Instance
{
get
{
... | mit | C# |
94b6a595dcfc36d48f93db5656a5f9fd98b435d6 | Remove SellingDateShort from WeekValuesFromViewModel | morarj/ACStalkMarket,morarj/ACStalkMarket,morarj/ACStalkMarket | ACStalkMarket/ACStalkMarket/ViewModels/WeekValuesFormViewModel.cs | ACStalkMarket/ACStalkMarket/ViewModels/WeekValuesFormViewModel.cs | using ACStalkMarket.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ACStalkMarket.ViewModels
{
public class WeekValuesFormViewModel
{
public IEnumerable... | using ACStalkMarket.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ACStalkMarket.ViewModels
{
public class WeekValuesFormViewModel
{
public IEnumerable... | mit | C# |
ed178bd5bc7f96d117c0bcbc76bf3a2257f157db | update NameValueCollectionExtension add ToKeyValues method | yuanrui/Examples,yuanrui/Examples,yuanrui/Examples,yuanrui/Examples,yuanrui/Examples | Simple.Common/Extensions/NameValueCollectionExtension.cs | Simple.Common/Extensions/NameValueCollectionExtension.cs | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
namespace Simple.Common.Extensions
{
public static class NameValueCollectionExtension
{
public static Dictionary<String, String> ToDictionary(this NameValueCollection collection)... | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
namespace Simple.Common.Extensions
{
public static class NameValueCollectionExtension
{
public static Dictionary<String, String> ToDictionary(this NameValueCollection collection)... | apache-2.0 | C# |
89cbae51ec4a63ea67a89f8ce3238c48abcd421c | Update RavenUnitOfWorkFactoryOptions.cs | tiksn/TIKSN-Framework | TIKSN.Core/Data/RavenDB/RavenUnitOfWorkFactoryOptions.cs | TIKSN.Core/Data/RavenDB/RavenUnitOfWorkFactoryOptions.cs | namespace TIKSN.Data.RavenDB
{
public class RavenUnitOfWorkFactoryOptions<TUnitOfWork>
where TUnitOfWork : IUnitOfWork
{
public string[] Urls { get; set; }
public string Database { get; set; }
}
}
| namespace TIKSN.Data.RavenDB
{
public class RavenUnitOfWorkFactoryOptions<TUnitOfWork>
where TUnitOfWork : IUnitOfWork
{
public string[] Urls { get; set; }
public string Database { get; set; }
}
} | mit | C# |
985523373b28a5b987e299b01b28a1b4e63fff31 | Tweak IndexedBitmapSection | l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,PowerOfCode/Eto,bbqchickenrobot/Eto-1,l8s/Eto,PowerOfCode/Eto,l8s/Eto,bbqchickenrobot/Eto-1 | Source/Eto.Test/Eto.Test/Sections/Drawing/IndexedBitmapSection.cs | Source/Eto.Test/Eto.Test/Sections/Drawing/IndexedBitmapSection.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Eto.Forms;
using Eto.Drawing;
namespace Eto.Test.Sections.Drawing
{
public class IndexedBitmapSection : Panel
{
public IndexedBitmapSection ()
{
var layout = new DynamicLayout (this);
layout.AddRow (
new Label... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Eto.Forms;
using Eto.Drawing;
namespace Eto.Test.Sections.Drawing
{
public class IndexedBitmapSection : Panel
{
public IndexedBitmapSection ()
{
var layout = new DynamicLayout (this);
layout.AddRow (
new Label... | bsd-3-clause | C# |
c9265233cad097a8910d4f0b1ff905548f1f2091 | Add missing XML comments | PKI-InVivo/reactive-domain | src/ReactiveDomain.Messaging/SourceId.cs | src/ReactiveDomain.Messaging/SourceId.cs | using System;
using ReactiveDomain.Messaging.Messages;
namespace ReactiveDomain.Messaging
{
/// <summary>
/// A unique identifier that links a correlated message to its antecedent.
/// </summary>
/// <remarks>This is a struct and not a class since it should not be nullable.</remarks>
public struct... | using System;
using ReactiveDomain.Messaging.Messages;
namespace ReactiveDomain.Messaging
{
/// <summary>
/// A unique identifier that links a correlated message to its antecedent.
/// </summary>
/// <remarks>This is a struct and not a class since it should not be nullable.</remarks>
public struct... | mit | C# |
b0b18341ab49f06f246904354398a6cb87a5ca90 | Implement the GetKeyStartingFrom method for SQL Server | openchain/openchain | src/Openchain.SqlServer/SqlServerLedger.cs | src/Openchain.SqlServer/SqlServerLedger.cs | // Copyright 2015 Coinprism, 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 agree... | // Copyright 2015 Coinprism, 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 agree... | apache-2.0 | C# |
df4b64effcc5418ce11940d7f9754afeaaafa883 | Rename rankStatus to searchCategory | ppy/osu,2yangk23/osu,UselessToucan/osu,johnneijzen/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,naoey/osu,ZLima12/osu,NeoAdonis/osu,Nabile-Rahmani/osu,ppy/osu,smoogipooo/osu,EVAST9919/osu,DrabWeb/osu,DrabWeb/osu,ZLima12/osu,johnneijzen/osu,ppy/osu,naoey/osu,2yangk23/osu,UselessToucan/os... | osu.Game/Online/API/Requests/SearchBeatmapSetsRequest.cs | osu.Game/Online/API/Requests/SearchBeatmapSetsRequest.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.ComponentModel;
using osu.Game.Beatmaps;
using osu.Game.Overlays;
using osu.Game.Overlays.Direct;
using osu.Game.... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.ComponentModel;
using osu.Game.Beatmaps;
using osu.Game.Overlays;
using osu.Game.Overlays.Direct;
using osu.Game.... | mit | C# |
ac85d55bd33ce500f75655745b65891611e4aa9c | test selenium screenshot save for appveyor | alindgren/Fundraise,alindgren/Fundraise,alindgren/Fundraise | Fundraise.MvcExample.Tests/AdminTests.cs | Fundraise.MvcExample.Tests/AdminTests.cs | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenQA.Selenium.Firefox;
using Fundraise.MvcExample.Tests.Config;
using OpenQA.Selenium;
using OpenQA.Selenium.Support.UI;
namespace Fundraise.MvcExample.Tests
{
[TestClass]
public class AdminTests
{
public static IisExpressWe... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenQA.Selenium.Firefox;
using Fundraise.MvcExample.Tests.Config;
using OpenQA.Selenium;
using OpenQA.Selenium.Support.UI;
namespace Fundraise.MvcExample.Tests
{
[TestClass]
public class AdminTests
{
public static IisExpressWe... | mit | C# |
b3fe2ab8deb3df2adece8e1e49794972b138208e | add Method to allow users to see last 100 runs of MiniProfiler | jgraber/Blog_Snippets,jgraber/Blog_Snippets,jgraber/Blog_Snippets,jgraber/Blog_Snippets | HangfireDemo/HangfireDemo/Global.asax.cs | HangfireDemo/HangfireDemo/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace HangfireDemo
{
using Serilog;
using StackExchange.Profiling;
public class MvcApplication : System.Web.HttpApplication
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace HangfireDemo
{
using Serilog;
using StackExchange.Profiling;
public class MvcApplication : System.Web.HttpApplication
{
... | apache-2.0 | C# |
7caf83c46c307638063c6c231b2ca690c7f4e353 | Remove unneeded DotNetTools override. | FacilityApi/FacilityJavaScript,FacilityApi/FacilityJavaScript,FacilityApi/Facility,FacilityApi/FacilityJavaScript,FacilityApi/FacilityCSharp | tools/Build/Build.cs | tools/Build/Build.cs | using System;
using System.Linq;
using Faithlife.Build;
using static Faithlife.Build.BuildUtility;
using static Faithlife.Build.DotNetRunner;
internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
var codegen = "fsdgen___";
var dotNetBuildSettings = new DotNe... | using System;
using System.IO;
using System.Linq;
using Faithlife.Build;
using static Faithlife.Build.BuildUtility;
using static Faithlife.Build.DotNetRunner;
internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
var codegen = "fsdgen___";
var dotNetTools = ... | mit | C# |
300625ac107ebb3ecdc167db5a7b21b53cc6cfe5 | read arguments | camilin87/parallel-process-runner | ParallelRunner/ParallelRunner/Program.cs | ParallelRunner/ParallelRunner/Program.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace ParallelRunner
{
class Program
{
private static void Main(string[] args)
{
var linesCount = ReadLastLinesCount(args);
var commandsToExecute = ReadExecutableFullPaths(args);
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ParallelRunner
{
class Program
{
static void Main(string[] args)
{
}
}
}
| mit | C# |
7c18fa151007087c76ccacee7a8ddaab6dd340bd | bump version to 2.3.0 | piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker | Piwik.Tracker/Properties/AssemblyInfo.cs | Piwik.Tracker/Properties/AssemblyInfo.cs | 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("PiwikTracker")]
[assembly: Assembl... | 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("PiwikTracker")]
[assembly: Assembl... | bsd-3-clause | C# |
d20dd40483830de71c890f4607c9ea60080346b0 | revert file | EVAST9919/osu-framework,Tom94/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,DrabWeb/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-fr... | osu.Framework/Timing/IAdjustableClock.cs | osu.Framework/Timing/IAdjustableClock.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.
namespace osu.Framework.Timing
{
/// <summary>
/// A clock that can be started, stopped, reset etc.
/// </summary>
public interface IAdjustableClock : IC... | // 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.
namespace osu.Framework.Timing
{
/// <summary>
/// A clock that can be started, stopped, reset etc.
/// </summary>
public interface IAdjustableClock : ICl... | mit | C# |
1a58d3e81cc709e8a956860967629a076c4d3c90 | move enum to nested | sqlkata/querybuilder | QueryBuilder.Tests/ParameterTypeTests.cs | QueryBuilder.Tests/ParameterTypeTests.cs | using System;
using System.Collections.Generic;
using System.Globalization;
using SqlKata.Compilers;
using Xunit;
using System.Collections;
using SqlKata.Tests.Infrastructure;
namespace SqlKata.Tests
{
public class ParameterTypeTests : TestSupport
{
public enum EnumExample
{
First,
... | using System;
using System.Collections.Generic;
using System.Globalization;
using SqlKata.Compilers;
using Xunit;
using System.Collections;
using SqlKata.Tests.Infrastructure;
namespace SqlKata.Tests
{
public enum EnumExample
{
First,
Second,
Third,
}
public class ParameterType... | mit | C# |
c620863d06a1e50cf1396e19c5937a7c506455e1 | Change AssemblyWeaver.Write() to AssemblyWeaver.Write(string outputAssemblyPath) | FloodProject/flood,FloodProject/flood,FloodProject/flood | src/Tools/EngineWeaver/AssemblyWeaver.cs | src/Tools/EngineWeaver/AssemblyWeaver.cs | using EngineWeaver.Util;
using Mono.Cecil;
using Mono.Cecil.Cil;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace EngineWeaver
{
public class AssemblyWeaver
{
private string destAssemblyPath;
... | using EngineWeaver.Util;
using Mono.Cecil;
using Mono.Cecil.Cil;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace EngineWeaver
{
public class AssemblyWeaver
{
private string destAssemblyPath;
... | bsd-2-clause | C# |
8fb650b731a0ebe5612e203833c50bb66ca0f61b | improve xml doc | ppy/osu-framework,peppy/osu-framework,Tom94/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,DrabWeb/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,DrabWeb/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,Tom94/osu-framework,EVAST9919/osu-framework,... | osu.Framework/Input/IDontLogKeyPresses.cs | osu.Framework/Input/IDontLogKeyPresses.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.
namespace osu.Framework.Input
{
/// <summary>
/// Marker interface which suppresses logging of keyboard input events.
/// Useful for password fields, where us... | // 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.
namespace osu.Framework.Input
{
/// <summary>
/// Marker interface which allows to suppress logging of keyboard input.
/// </summary>
public interface IDo... | mit | C# |
e5c4c1bf9d2689044cadc8c75dbac78f4cec544c | Format code | jmptrader/SuperSocket,chucklu/SuperSocket,chucklu/SuperSocket,memleaks/SuperSocket,jmptrader/SuperSocket,kerryjiang/SuperSocket,ZixiangBoy/SuperSocket,ZixiangBoy/SuperSocket,mdavid/SuperSocket,fryderykhuang/SuperSocket,chucklu/SuperSocket,fryderykhuang/SuperSocket,jmptrader/SuperSocket,fryderykhuang/SuperSocket,Zixiang... | SocketServiceCore/Command/CommandInfo.cs | SocketServiceCore/Command/CommandInfo.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace SuperSocket.SocketServiceCore.Command
{
public class CommandInfo
{
private CommandInfo()
{
}
public CommandInfo(string name, string parameter)
{
this.m_Name = name;
... | using System;
using System.Collections.Generic;
using System.Text;
namespace SuperSocket.SocketServiceCore.Command
{
public class CommandInfo
{
private CommandInfo()
{
}
public CommandInfo(string name, string parameter)
{
this.m_Name = name;
this.m_Param ... | apache-2.0 | C# |
09ea3e205f703679c025747b1b2325304bb31e1f | make Histogram's user value wrapper a struct to avoid allocations | Liwoj/Metrics.NET,Liwoj/Metrics.NET,Recognos/Metrics.NET,Recognos/Metrics.NET | Src/Metrics/Sampling/UserValueWrapper.cs | Src/Metrics/Sampling/UserValueWrapper.cs |
using System.Collections.Generic;
namespace Metrics.Sampling
{
public struct UserValueWrapper
{
public static readonly IComparer<UserValueWrapper> Comparer = new UserValueComparer();
public readonly long Value;
public readonly string UserValue;
public UserValueWrapper(long va... |
using System.Collections.Generic;
namespace Metrics.Sampling
{
public sealed class UserValueWrapper
{
public static readonly IComparer<UserValueWrapper> Comparer = new UserValueComparer();
public readonly long Value;
public readonly string UserValue;
public UserValueWrapper()... | apache-2.0 | C# |
6f7dc5e0c42d52314c6017757ae0914691fbfa6b | Use WebFormsOptions.PagesLocation in PageFactory | hishamco/WebForms,hishamco/WebForms | src/My.AspNetCore.WebForms/Infrastructure/PageFactory.cs | src/My.AspNetCore.WebForms/Infrastructure/PageFactory.cs | using Microsoft.Extensions.Options;
using System;
using System.Reflection;
namespace My.AspNetCore.WebForms.Infrastructure
{
public class PageFactory : IPageFactory
{
private readonly WebFormsOptions _webFormsOptions;
public PageFactory(IOptions<WebFormsOptions> webFormsOptions)
{
... | using System;
using System.Reflection;
namespace My.AspNetCore.WebForms.Infrastructure
{
public class PageFactory : IPageFactory
{
public Page CreatePage(string type)
{
var assembly = Assembly.GetEntryAssembly();
var assemblyName = assembly.GetName().Name;
v... | mit | C# |
ca3e85d395dfadadf309e6111f254eea35cdcbde | Fix TryGetRawMetadata to return false when the assembly is not a RuntimeAssembly | cmckinsey/coreclr,jamesqo/coreclr,ramarag/coreclr,blackdwarf/coreclr,yeaicc/coreclr,ramarag/coreclr,dasMulli/coreclr,manu-silicon/coreclr,OryJuVog/coreclr,wkchoy74/coreclr,taylorjonl/coreclr,parjong/coreclr,ruben-ayrapetyan/coreclr,wkchoy74/coreclr,mskvortsov/coreclr,James-Ko/coreclr,AlfredoMS/coreclr,schellap/coreclr,... | src/mscorlib/src/System/Reflection/Metadata/AssemblyExtensions.cs | src/mscorlib/src/System/Reflection/Metadata/AssemblyExtensions.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
namespace System.Reflection.Metadata
{
public static class Asse... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
namespace System.Reflection.Metadata
{
public static class Asse... | mit | C# |
eed44d44eda8701cd6d829b8d41b21ec76a268c5 | replace level of protection in baseModelRepo | VladTsiukin/AirlineTicketOffice | AirlineTicketOffice.Repository/Repositories/BaseModelRepository.cs | AirlineTicketOffice.Repository/Repositories/BaseModelRepository.cs | using AirlineTicketOffice.Data;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Entity;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace AirlineTicketOffice.Repository.Repositories
{
public class BaseModelRepository<TEntity> where TE... | using AirlineTicketOffice.Data;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Entity;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace AirlineTicketOffice.Repository.Repositories
{
public class BaseModelRepository<TEntity> where TE... | mit | C# |
17ec3cfb4428aa76a0734cba36eae01ddb2ed846 | Add ObjectLibraryTab documentation (closes #28) | felipebz/ndapi | Ndapi/ObjectLibraryTab.cs | Ndapi/ObjectLibraryTab.cs | using System.Collections.Generic;
using Ndapi.Core.Handles;
using Ndapi.Enums;
using Ndapi.Core;
namespace Ndapi
{
/// <summary>
/// Represent an object library tab.
/// </summary>
public class ObjectLibraryTab : NdapiObject
{
/// <summary>
/// Creates an object library tab..
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Ndapi.Core.Handles;
using Ndapi.Enums;
using Ndapi.Core;
namespace Ndapi
{
public class ObjectLibraryTab : NdapiObject
{
public ObjectLibraryTab(FormModule module, string name)
{
Create(name... | mit | C# |
65ef3f7ff509088b2ccfc2c7d78f7f74dd9510c3 | Bump to 0.1.0 pre-alpha | Morphan1/Voxalia,Morphan1/Voxalia,Morphan1/Voxalia | Voxalia/Shared/Program.cs | Voxalia/Shared/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Voxalia.Shared.Files;
using Voxalia.Shared.Collision;
namespace Voxalia.Shared
{
public class Program
{
public const string GameName = "Voxalia";
public const string GameVersion = "0.1.0";
pub... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Voxalia.Shared.Files;
using Voxalia.Shared.Collision;
namespace Voxalia.Shared
{
public class Program
{
public const string GameName = "Voxalia";
public const string GameVersion = "0.0.9";
pub... | mit | C# |
099d5da5a1de338ae7ec7930fc209a7145b29efc | Add GetRemoteEndPoint to GatewayInitiator. | SaladbowlCreative/Akka.Interfaced.SlimSocket | core/Akka.Interfaced.SlimSocket.Server/Channel/GatewayInitiator.cs | core/Akka.Interfaced.SlimSocket.Server/Channel/GatewayInitiator.cs | using System;
using System.Net;
using Akka.Actor;
using Akka.Interfaced.SlimServer;
using Common.Logging;
using Lidgren.Network;
namespace Akka.Interfaced.SlimSocket.Server
{
public class GatewayInitiator
{
public IPEndPoint ListenEndPoint { get; set; }
public IPEndPoint ConnectEndPoint { get;... | using System;
using System.Net;
using Akka.Actor;
using Akka.Interfaced.SlimServer;
using Common.Logging;
using Lidgren.Network;
namespace Akka.Interfaced.SlimSocket.Server
{
public class GatewayInitiator
{
public IPEndPoint ListenEndPoint { get; set; }
public IPEndPoint ConnectEndPoint { get;... | mit | C# |
c56c05edebecfd04b01a143627302040b0697046 | Fix a weird thing in pats module | Auxes/Dogey | src/Dogey/Modules/Misc/PatsModule.cs | src/Dogey/Modules/Misc/PatsModule.cs | using Discord.Commands;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace Dogey.Modules
{
[Name("Pats")]
public class PatsModule : ModuleBase<DogeyCommandContext>
{
private readonly Pat... | using Discord.Commands;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace Dogey.Modules
{
[Name("Pats")]
public class PatsModule : ModuleBase<DogeyCommandContext>
{
private readonly Pat... | apache-2.0 | C# |
6d091534699a1fcfeca8cf235e17c6d69507cd34 | Test parsing valid absolute URI | vgrigoriu/FromString | src/FromString.Tests/ParsedTTests.cs | src/FromString.Tests/ParsedTTests.cs | using System;
using Xunit;
namespace FromString.Tests
{
public class ParsedTTests
{
[Fact]
public void CanParseAnInt()
{
var parsedInt = new Parsed<int>("123");
Assert.True(parsedInt.HasValue);
Assert.Equal(123, parsedInt.Value);
}
... | using System;
using Xunit;
namespace FromString.Tests
{
public class ParsedTTests
{
[Fact]
public void CanParseAnInt()
{
var parsedInt = new Parsed<int>("123");
Assert.True(parsedInt.HasValue);
Assert.Equal(123, parsedInt.Value);
}
... | mit | C# |
8295bf24f8b6b1ae9e674adb2a412f243518d231 | Add MixOrder to ProductComponent | ADAPT/ADAPT | source/ADAPT/Products/ProductComponent.cs | source/ADAPT/Products/ProductComponent.cs | /*******************************************************************************
* Copyright (C) 2015 AgGateway and ADAPT Contributors
* Copyright (C) 2015 Deere and Company
* Copyright (C) 2019 Syngenta
* All rights reserved. This program and the accompanying materials
* are made available under the terms o... | /*******************************************************************************
* Copyright (C) 2015 AgGateway and ADAPT Contributors
* Copyright (C) 2015 Deere and Company
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.... | epl-1.0 | C# |
91d16294de8a7fd89ca98872f8e339dd2c4e4f6d | fix some other packet being parsed as sDespawnNpc | neowutran/OpcodeSearcher | DamageMeter.Core/Heuristic/S_DESPAWN_NPC.cs | DamageMeter.Core/Heuristic/S_DESPAWN_NPC.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tera.Game.Messages;
namespace DamageMeter.Heuristic
{
class S_DESPAWN_NPC : AbstractPacketHeuristic
{
public new void Process(ParsedMessage message)
{
base.Proc... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tera.Game.Messages;
namespace DamageMeter.Heuristic
{
class S_DESPAWN_NPC : AbstractPacketHeuristic
{
public new void Process(ParsedMessage message)
{
base.Proc... | mit | C# |
5179f77ce88ee109c8b83e164cedb221c8fba6a5 | Improve performance of ScriptRawStatement | textamina/scriban,lunet-io/scriban | src/Scriban/Runtime/ScriptRawStatement.cs | src/Scriban/Runtime/ScriptRawStatement.cs | // Copyright (c) Alexandre Mutel. All rights reserved.
// Licensed under the BSD-Clause 2 license. See license.txt file in the project root for full license information.
namespace Scriban.Runtime
{
[ScriptSyntax("raw statement", "<raw_text>")]
public class ScriptRawStatement : ScriptStatement
{
publ... | // Copyright (c) Alexandre Mutel. All rights reserved.
// Licensed under the BSD-Clause 2 license. See license.txt file in the project root for full license information.
namespace Scriban.Runtime
{
[ScriptSyntax("raw statement", "<raw_text>")]
public class ScriptRawStatement : ScriptStatement
{
publ... | bsd-2-clause | C# |
4cc94cc2da4d48337bd13ac0a360fad875597019 | Rename some methods in GraphSplitIntoSubgraphs to reflect that connectionResult was renamed to subgraph. | willb611/SlimeSimulation | SlimeSimulation/Algorithms/Bfs/GraphSplitIntoSubgraphs.cs | SlimeSimulation/Algorithms/Bfs/GraphSplitIntoSubgraphs.cs | using System;
using System.Collections.Generic;
using NLog;
using SlimeSimulation.Model;
namespace SlimeSimulation.Algorithms.Bfs
{
public class GraphSplitIntoSubgraphs
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly List<Subgraph> _subgraphs;
... | using System;
using System.Collections.Generic;
using NLog;
using SlimeSimulation.Model;
namespace SlimeSimulation.Algorithms.Bfs
{
public class GraphSplitIntoSubgraphs
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly List<Subgraph> _subgraphs;
... | apache-2.0 | C# |
21f01b35d780a6b29fc876500ef98463ea0eabc4 | undo last checkin - should have been on new branch! | SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments | src/SFA.DAS.Commitments.Api.Types/Apprenticeship/Apprenticeship.cs | src/SFA.DAS.Commitments.Api.Types/Apprenticeship/Apprenticeship.cs | using System;
using SFA.DAS.Commitments.Api.Types.Apprenticeship.Types;
namespace SFA.DAS.Commitments.Api.Types.Apprenticeship
{
public class Apprenticeship
{
public long Id { get; set; }
public long CommitmentId { get; set; }
public long EmployerAccountId { get; set; }
public... | using System;
using SFA.DAS.Commitments.Api.Types.Apprenticeship.Types;
namespace SFA.DAS.Commitments.Api.Types.Apprenticeship
{
public class Apprenticeship
{
public long Id { get; set; }
public long CommitmentId { get; set; }
public long EmployerAccountId { get; set; }
public... | mit | C# |
f82614e13ec4a6f886400155ad24f88abb10d57a | fix for issue with no recent posts with images | HTBox/htbox-website,HTBox/htbox-website | src/htbox/ViewModels/CMS/HomePage.cs | src/htbox/ViewModels/CMS/HomePage.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using N2;
using N2.Definitions;
using N2.Details;
using N2.Integrity;
namespace htbox.ViewModels.CMS {
[PageDefinition("Home Page")]
[WithEditableName, WithEditableTitle]
[RestrictParents(typeof(IRootPage))]
public c... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using N2;
using N2.Definitions;
using N2.Details;
using N2.Integrity;
namespace htbox.ViewModels.CMS {
[PageDefinition("Home Page")]
[WithEditableName, WithEditableTitle]
[RestrictParents(typeof(IRootPage))]
public c... | apache-2.0 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.