commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
4d30761ce3131eccaab114285018f5ab0cc54a79 | osu.Game.Rulesets.Mania/Judgements/ManiaJudgement.cs | osu.Game.Rulesets.Mania/Judgements/ManiaJudgement.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 osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Mania.Judgements
{
public class ManiaJudgement : Judgement
{
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Mania.Judgements
{
public class ManiaJudgement : Judgement
{
... | Fix 1M score being possible with only GREATs in mania | Fix 1M score being possible with only GREATs in mania
| C# | mit | UselessToucan/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipooo/osu,smoogipoo/osu |
7ca8911f32b969054867acd0405a7b96f0ce6f2a | VigilantCupcake/SubForms/AboutBox.cs | VigilantCupcake/SubForms/AboutBox.cs | using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
namespace VigilantCupcake.SubForms {
partial class AboutBox : Form {
public AboutBox() {
InitializeComponent();
this.Text = String.Format("About {0}", AssemblyTitle);
this.labelProduct... | using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
namespace VigilantCupcake.SubForms {
partial class AboutBox : Form {
public AboutBox() {
InitializeComponent();
this.Text = String.Format("About {0}", AssemblyTitle);
this.labelProduct... | Make the about window have a space in the application name | Make the about window have a space in the application name
| C# | mit | amweiss/vigilant-cupcake |
5c8423bcf79dbf3edde373025039dcf6e853ffe4 | SwitchApp/WpfSwitchClient/App.xaml.cs | SwitchApp/WpfSwitchClient/App.xaml.cs | using System;
using System.Net.Http;
using System.Windows;
using SwitchClient.Classic;
using SwitchClient.Hyper;
namespace WpfSwitchClient
{
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
var client = new HttpClient()
{... | using System;
using System.Net.Http;
using System.Windows;
using SwitchClient.Classic;
using SwitchClient.Hyper;
namespace WpfSwitchClient
{
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
var client = new HttpClient()
{... | Reset VM to be Service based | Reset VM to be Service based
| C# | apache-2.0 | darrelmiller/HypermediaClients,darrelmiller/HypermediaClients |
155cfd22311b84d526be5791c687b6b425cd04f2 | src/SFA.DAS.EAS.Web/Global.asax.cs | src/SFA.DAS.EAS.Web/Global.asax.cs | using System;
using System.Security.Claims;
using System.Web.Helpers;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using FluentValidation.Mvc;
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.Azure;
using NLog;
using NLog.Targets;... | using System;
using System.Security.Claims;
using System.Web;
using System.Web.Helpers;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using FluentValidation.Mvc;
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.Azure;
using NLog;
u... | Remove server header form http responses | Remove server header form http responses
| C# | mit | SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice |
86508fb39abd6e3c722d4473d2b3e470c284e3b3 | src/Umbraco.Web.UI/Views/Partials/BlockList/Default.cshtml | src/Umbraco.Web.UI/Views/Partials/BlockList/Default.cshtml | @inherits UmbracoViewPage<BlockListModel>
@using Umbraco.Core.Models.Blocks
@{
if (Model?.Layout == null || !Model.Layout.Any()) { return; }
}
<div class="umb-block-list">
@foreach (var layout in Model.Layout)
{
if (layout?.Udi == null) { continue; }
var data = layout.Data;
... | @inherits UmbracoViewPage<BlockListModel>
@using Umbraco.Core.Models.Blocks
@{
if (!Model.Any()) { return; }
}
<div class="umb-block-list">
@foreach (var block in Model)
{
if (block?.ContentUdi == null) { continue; }
var data = block.Content;
@Html.Partial("BlockList/Compo... | Update to default Razor snippet we use to help with Block List editor | Update to default Razor snippet we use to help with Block List editor
| C# | mit | robertjf/Umbraco-CMS,umbraco/Umbraco-CMS,umbraco/Umbraco-CMS,arknu/Umbraco-CMS,arknu/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,marcemarc/Umbraco-CMS,abryukhov/Umbraco-CMS,abryukhov/Umbraco-CMS,marcemarc/Umbraco-CMS,KevinJump/Umbraco-CMS,KevinJump/Umbraco-CMS,umbraco/Umbraco-CMS,bjarnef/Umbraco-CMS,mattbrailsford/Umbrac... |
5d571a0c7bcfbc4ec022f09b7ae7f885b5e59a0c | src/PcscDotNet/PcscContext.cs | src/PcscDotNet/PcscContext.cs | using System;
namespace PcscDotNet
{
public class PcscContext : IDisposable
{
private SCardContext _context;
private readonly Pcsc _pcsc;
private readonly IPcscProvider _provider;
public bool IsDisposed { get; private set; } = false;
public bool IsEstablished => _con... | using System;
namespace PcscDotNet
{
public class PcscContext : IDisposable
{
private SCardContext _handle;
private readonly Pcsc _pcsc;
private readonly IPcscProvider _provider;
public bool IsDisposed { get; private set; } = false;
public bool IsEstablished => _hand... | Change field and variable names from context to handle | Change field and variable names from context to handle
| C# | mit | Archie-Yang/PcscDotNet |
5c3141d16afd3a4091e42ed4f1906a58d1d6fba4 | osu.Game/Screens/OnlinePlay/Components/ReadyButton.cs | osu.Game/Screens/OnlinePlay/Components/ReadyButton.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 osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Localisation;
using osu.Game.Graphics.UserInterfac... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Localisation;
using osu.Game.Graphics.UserInterfac... | Fix ready button tooltip showing when locally available | Fix ready button tooltip showing when locally available
| C# | mit | peppy/osu,ppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu,smoogipooo/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu |
e81967e2d89d398b0813687f68b6fa2ed5d01262 | GitFlowVersion/GitDirFinder.cs | GitFlowVersion/GitDirFinder.cs | namespace GitFlowVersion
{
using System.IO;
public class GitDirFinder
{
public static string TreeWalkForGitDir(string currentDirectory)
{
while (true)
{
var gitDir = Path.Combine(currentDirectory, @".git");
if (Directory.Exists(gitDi... | namespace GitFlowVersion
{
using System.IO;
using LibGit2Sharp;
public class GitDirFinder
{
public static string TreeWalkForGitDir(string currentDirectory)
{
string gitDir = Repository.Discover(currentDirectory);
if (gitDir != null)
{
... | Make TreeWalkForGitDir() delegate to LibGit2Sharp | Make TreeWalkForGitDir() delegate to LibGit2Sharp
Fix #29
| C# | mit | Kantis/GitVersion,dpurge/GitVersion,dpurge/GitVersion,TomGillen/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,Philo/GitVersion,DanielRose/GitVersion,JakeGinnivan/GitVersion,Philo/GitVersion,orjan/GitVersion,GeertvanHorrik/GitVersion,JakeGinnivan/GitVersion,asbjornu/GitVersion,ParticularLabs/GitVersion,Fi... |
4cb2c4b494ab229fe81c8032ee530ea69bd4abf0 | osu.Android/OsuGameActivity.cs | osu.Android/OsuGameActivity.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 Android.App;
using Android.Content.PM;
using Android.OS;
using Android.Views;
using osu.Framework.Android;
namespace osu.Android
{
[Activity(Theme = "@android... | // 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 Android.App;
using Android.Content.PM;
using Android.OS;
using Android.Views;
using osu.Framework.Android;
namespace osu.Android
{
[Activity(Theme = "@android... | Support both landscape and portrait mode | Support both landscape and portrait mode
Co-Authored-By: miterosan <bf6c2acc98e216512706967a340573e61f973c1d@users.noreply.github.com> | C# | mit | ppy/osu,johnneijzen/osu,NeoAdonis/osu,2yangk23/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,peppy/osu,johnneijzen/osu,UselessToucan/osu,smoogipooo/osu,2yangk23/osu,peppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,ZLima12/osu,NeoAdonis/osu,smoogipoo/osu,EVAST9919/osu,peppy/osu,ZLima12/osu,smo... |
f92c62877049f68e340627a345fad04f39b4fd29 | WootzJs.Mvc/Mvc/Views/Image.cs | WootzJs.Mvc/Mvc/Views/Image.cs | using WootzJs.Mvc.Mvc.Views.Css;
using WootzJs.Web;
namespace WootzJs.Mvc.Mvc.Views
{
public class Image : InlineControl
{
public Image()
{
}
public Image(string source)
{
Source = source;
}
public Image(string defaultSource, string highlig... | using WootzJs.Mvc.Mvc.Views.Css;
using WootzJs.Web;
namespace WootzJs.Mvc.Mvc.Views
{
public class Image : InlineControl
{
public Image()
{
}
public Image(string source, int? width = null, int? height = null)
{
Source = source;
if (width != null... | Add ability to set width and height when setting the image | Add ability to set width and height when setting the image
| C# | mit | kswoll/WootzJs,x335/WootzJs,x335/WootzJs,kswoll/WootzJs,x335/WootzJs,kswoll/WootzJs |
5853cb11cc4fda68fb34a30355f8b9469eff9f28 | Foundation/Server/Foundation.Api/Middlewares/Signalr/MessagesHub.cs | Foundation/Server/Foundation.Api/Middlewares/Signalr/MessagesHub.cs | using System.Threading.Tasks;
using Microsoft.AspNet.SignalR;
using Microsoft.Owin;
using Foundation.Api.Middlewares.SignalR.Contracts;
namespace Foundation.Api.Middlewares.SignalR
{
public class MessagesHub : Hub
{
public override async Task OnConnected()
{
IOwinContext context = ... | using System.Threading.Tasks;
using Microsoft.AspNet.SignalR;
using Microsoft.Owin;
using Foundation.Api.Middlewares.SignalR.Contracts;
namespace Foundation.Api.Middlewares.SignalR
{
public class MessagesHub : Hub
{
public override async Task OnConnected()
{
try
{
... | Call signalr hub base method in case of exception in user codes of signalr hub events class | Call signalr hub base method in case of exception in user codes of signalr hub events class
| C# | mit | bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework |
df6b0a45533d54133055f7997c6157607179c0dc | RebirthTracker/RebirthTracker/Configuration.cs | RebirthTracker/RebirthTracker/Configuration.cs | using System.Runtime.InteropServices;
namespace RebirthTracker
{
/// <summary>
/// Class to keep track of OS-specific configuration settings
/// </summary>
public static class Configuration
{
/// <summary>
/// Get the folder where files should be stored
/// </summary>
... | using System.Runtime.InteropServices;
namespace RebirthTracker
{
/// <summary>
/// Class to keep track of OS-specific configuration settings
/// </summary>
public static class Configuration
{
/// <summary>
/// Get the folder where files should be stored
/// </summary>
... | Use absolute path on linux | Use absolute path on linux
| C# | mit | Mako88/dxx-tracker |
5809732441d75b39f6ca6fc26c10c04e5de501a1 | P2E.Services/UserCredentialsService.cs | P2E.Services/UserCredentialsService.cs | using System;
using System.Text;
using P2E.Interfaces.Services;
namespace P2E.Services
{
public class UserCredentialsService : IUserCredentialsService
{
// Syncs console output/input between instance so that only one
// instance can request user credentials at any time.
private static... | using System;
using System.Text;
using P2E.Interfaces.Services;
namespace P2E.Services
{
public class UserCredentialsService : IUserCredentialsService
{
// TODO - revert that stuipd locking idea and introduce a Credentials class instead.
// Syncs console output/input between instance so that ... | Create a TODO to revert the locking code. | Create a TODO to revert the locking code.
| C# | bsd-2-clause | SludgeVohaul/P2EApp |
94bd54b18d9b294fac734049f31ab81493993477 | source/Nuke.Common/BuildServers/TeamCityOutputSink.cs | source/Nuke.Common/BuildServers/TeamCityOutputSink.cs | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using JetBrains.Annotations;
using Nuke.Common.OutputSinks;
using Nuke.Common.Utilities;
namespace Nuke.Common... | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using JetBrains.Annotations;
using Nuke.Common.OutputSinks;
using Nuke.Common.Utiliti... | Add duration as statistical value for blocks in TeamCity | Add duration as statistical value for blocks in TeamCity
| C# | mit | nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke |
8b42199c5d08321388c49355e43574005598b1d3 | ParkenDD/Services/JumpListService.cs | ParkenDD/Services/JumpListService.cs | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Windows.UI.StartScreen;
using ParkenDD.Api.Models;
namespace ParkenDD.Services
{
public class JumpListService
{
private readonly ResourceService _resources;
private const string ArgumentFormat = "city={0}";
... | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Windows.UI.StartScreen;
using ParkenDD.Api.Models;
namespace ParkenDD.Services
{
public class JumpListService
{
private readonly ResourceService _resources;
private const string ArgumentFormat = "city={0}";
... | Comment out jump list support again as no SDK is out yet... :( | Comment out jump list support again as no SDK is out yet... :(
| C# | mit | sibbl/ParkenDD |
3c7d9de2b1eff2296694c60c326cbb6419d9c6e5 | Source/Eto.Test/Eto.Test.Mac/Startup.cs | Source/Eto.Test/Eto.Test.Mac/Startup.cs | using System;
using System.Drawing;
using MonoMac.Foundation;
using MonoMac.AppKit;
using MonoMac.ObjCRuntime;
using Eto.Forms;
namespace Eto.Test.Mac
{
class Startup
{
static void Main (string [] args)
{
AddStyles ();
var generator = new Eto.Platform.Mac.Generator ();
var app = new TestApplicat... | using System;
using System.Drawing;
using MonoMac.Foundation;
using MonoMac.AppKit;
using MonoMac.ObjCRuntime;
using Eto.Forms;
namespace Eto.Test.Mac
{
class Startup
{
static void Main (string [] args)
{
AddStyles ();
var generator = new Eto.Platform.Mac.Generator ();
var app = new TestApplicat... | Support full screen now that core MonoMac supports it | Mac: Support full screen now that core MonoMac supports it
| C# | bsd-3-clause | l8s/Eto,PowerOfCode/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,l8s/Eto,l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,bbqchickenrobot/Eto-1 |
ce4660448e323cf254d5d62acf4e54b34e138d93 | DragonContracts/DragonContracts/Base/RavenDbController.cs | DragonContracts/DragonContracts/Base/RavenDbController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using System.Web.Http;
using System.Web.Http.Controllers;
using DragonContracts.Models;
using Raven.Client;
using Raven.Client.Document;
using Raven.Client.E... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using System.Web.Http;
using System.Web.Http.Controllers;
using DragonContracts.Models;
using Raven.Client;
using Raven.Client.Document;
using Raven.Client.E... | Enable raven studio for port 8081 | Enable raven studio for port 8081
| C# | mit | Vavro/DragonContracts,Vavro/DragonContracts |
d2471bd67e67504f4b65a4de5fbb223efd9299b5 | UnitTests/UnitTest1.cs | UnitTests/UnitTest1.cs | #region Usings
using System.Linq;
using System.Web.Mvc;
using NUnit.Framework;
using WebApplication.Controllers;
using WebApplication.Models;
#endregion
namespace UnitTests
{
[TestFixture]
public class UnitTest1
{
[Test]
public void TestMethod1()
{
var formCollection ... | #region Usings
using NUnit.Framework;
#endregion
namespace UnitTests
{
[TestFixture]
public class UnitTest1
{
[Test]
public void TestMethod1()
{
Assert.True(true);
}
}
} | Replace test with test stub | Replace test with test stub
| C# | mit | SmartStepGroup/AgileCamp2015_Master,SmartStepGroup/AgileCamp2015_Master,SmartStepGroup/AgileCamp2015_Master |
87b322b1e10fea3a023af2ae96c954bcc46b1794 | src/VsConsole/Console/PowerConsole/HostInfo.cs | src/VsConsole/Console/PowerConsole/HostInfo.cs | using System;
using System.Diagnostics;
namespace NuGetConsole.Implementation.PowerConsole {
/// <summary>
/// Represents a host with extra info.
/// </summary>
class HostInfo : ObjectWithFactory<PowerConsoleWindow> {
Lazy<IHostProvider, IHostMetadata> HostProvider { get; set; }
... | using System;
using System.Diagnostics;
namespace NuGetConsole.Implementation.PowerConsole {
/// <summary>
/// Represents a host with extra info.
/// </summary>
class HostInfo : ObjectWithFactory<PowerConsoleWindow> {
Lazy<IHostProvider, IHostMetadata> HostProvider { get; set; }
... | Revert accidental change of the async flag. | Revert accidental change of the async flag.
--HG--
branch : 1.1
| C# | apache-2.0 | mdavid/nuget,mdavid/nuget |
675a405cdbcc7856632b7a72ae91ccd97a6154f2 | Editor/Settings/BuildSettings.cs | Editor/Settings/BuildSettings.cs | using UnityEngine;
using UnityEditor;
namespace UnityBuild
{
public abstract class BuildSettings
{
public abstract string binName { get; }
public abstract string binPath { get; }
public abstract string[] scenesInBuild { get; }
public abstract string[] copyToBuild { get; }
//// The name of execut... | using UnityEngine;
using UnityEditor;
namespace UnityBuild
{
public abstract class BuildSettings
{
public abstract string binName { get; }
public abstract string binPath { get; }
public abstract string[] scenesInBuild { get; }
public abstract string[] copyToBuild { get; }
public virtual void Pre... | Add virtual pre/post build methods. | Add virtual pre/post build methods.
| C# | mit | Chaser324/unity-build,thaumazo/unity-build |
ea2b79f3c1a74c7809603730c2e21031dae0d67c | LBD2OBJLib/Types/FixedPoint.cs | LBD2OBJLib/Types/FixedPoint.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LBD2OBJLib.Types
{
class FixedPoint
{
public int IntegralPart { get; set; }
public int DecimalPart { get; set; }
public FixedPoint(byte[] data)
{
if (da... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LBD2OBJLib.Types
{
class FixedPoint
{
public int IntegralPart { get; set; }
public int DecimalPart { get; set; }
const byte SIGN_MASK = 128;
const byte INT... | Change mask variables to const values, remove from constructor | Change mask variables to const values, remove from constructor
| C# | mit | Figglewatts/LBD2OBJ |
fd8319419f4957b6ec4088cfe31bf8515aa5e888 | SampleGame.Desktop/Program.cs | SampleGame.Desktop/Program.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 osu.Framework.Platform;
using osu.Framework;
namespace SampleGame.Desktop
{
public static class Program
{
[STAThread]
public... | // 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.Linq;
using osu.Framework;
using osu.Framework.Platform;
namespace SampleGame.Desktop
{
public static class Program
{
[STAThr... | Add SDL support to SampleGame | Add SDL support to SampleGame
| C# | mit | peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework |
07baeda87898657f050010d112aad60a47b37888 | PalasoUIWindowsForms/WritingSystems/WSPropertiesTabControl.cs | PalasoUIWindowsForms/WritingSystems/WSPropertiesTabControl.cs | using System.Windows.Forms;
namespace Palaso.UI.WindowsForms.WritingSystems
{
public partial class WSPropertiesTabControl : UserControl
{
private WritingSystemSetupModel _model;
public WSPropertiesTabControl()
{
InitializeComponent();
}
public void BindToModel(WritingSystemSetupModel model)
{
_mo... | using System;
using System.Windows.Forms;
namespace Palaso.UI.WindowsForms.WritingSystems
{
public partial class WSPropertiesTabControl : UserControl
{
private WritingSystemSetupModel _model;
public WSPropertiesTabControl()
{
InitializeComponent();
}
public void BindToModel(WritingSystemSetupModel mod... | Hide irrelevant tabs when the Writing System is a voice one. | Hide irrelevant tabs when the Writing System is a voice one.
| C# | mit | ermshiperete/libpalaso,glasseyes/libpalaso,andrew-polk/libpalaso,ddaspit/libpalaso,JohnThomson/libpalaso,JohnThomson/libpalaso,darcywong00/libpalaso,ermshiperete/libpalaso,andrew-polk/libpalaso,marksvc/libpalaso,mccarthyrb/libpalaso,chrisvire/libpalaso,darcywong00/libpalaso,gtryus/libpalaso,mccarthyrb/libpalaso,glassey... |
bc72532c5ec9c747caa42bd236bc8d80a6d6694f | Src/TensorSharp/Operations/MultiplyIntegerIntegerOperation.cs | Src/TensorSharp/Operations/MultiplyIntegerIntegerOperation.cs | namespace TensorSharp.Operations
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class MultiplyIntegerIntegerOperation : IBinaryOperation<int, int, int>
{
public Tensor<int> Evaluate(Tensor<int> tensor1, Tensor<int> tensor2)
... | namespace TensorSharp.Operations
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class MultiplyIntegerIntegerOperation : IBinaryOperation<int, int, int>
{
public Tensor<int> Evaluate(Tensor<int> tensor1, Tensor<int> tensor2)
... | Refactor Multiply Integers Operation to use GetValues and CloneWithValues | Refactor Multiply Integers Operation to use GetValues and CloneWithValues
| C# | mit | ajlopez/TensorSharp |
585cded973c0d4db57a1d0adcecb7f9d694a8fda | SignalR.Tests/ConnectionFacts.cs | SignalR.Tests/ConnectionFacts.cs | using System;
using System.Linq;
using System.Threading;
using Moq;
using SignalR.Client.Transports;
using SignalR.Hosting.Memory;
using Xunit;
namespace SignalR.Client.Tests
{
public class ConnectionFacts
{
public class Start
{
[Fact]
public void FailsIfProtocolVersion... | using System;
using System.Linq;
using System.Threading;
using Moq;
using SignalR.Client.Transports;
using SignalR.Hosting.Memory;
using Xunit;
namespace SignalR.Client.Tests
{
public class ConnectionFacts
{
public class Start
{
[Fact]
public void FailsIfProtocolVersion... | Remove sending big data test. | Remove sending big data test.
| C# | mit | shiftkey/SignalR,shiftkey/SignalR |
3fa153c94c729bf4a8231f36957658dde0ce7afe | src/Jasper.ConfluentKafka/Internal/KafkaTopicRouter.cs | src/Jasper.ConfluentKafka/Internal/KafkaTopicRouter.cs | using System;
using System.Collections.Generic;
using Baseline;
using Confluent.Kafka;
using Jasper.Configuration;
using Jasper.Runtime.Routing;
namespace Jasper.ConfluentKafka.Internal
{
public class KafkaTopicRouter : TopicRouter<KafkaSubscriberConfiguration>
{
//Dictionary<Uri, ProducerConfig> produ... | using System;
using Baseline;
using Jasper.Configuration;
using Jasper.Runtime.Routing;
namespace Jasper.ConfluentKafka.Internal
{
public class KafkaTopicRouter : TopicRouter<KafkaSubscriberConfiguration>
{
public override Uri BuildUriForTopic(string topicName)
{
var endpoint = new ... | Remove commented code and unused usings | Remove commented code and unused usings
| C# | mit | JasperFx/jasper,JasperFx/jasper,JasperFx/jasper |
433909078e6315aa9328d0313670f7ec694f68ea | src/MiniCover/CommandLine/Options/CoverageLoadedFileOption.cs | src/MiniCover/CommandLine/Options/CoverageLoadedFileOption.cs | using System.IO;
using MiniCover.Model;
using Newtonsoft.Json;
namespace MiniCover.CommandLine.Options
{
class CoverageLoadedFileOption : CoverageFileOption
{
public InstrumentationResult Result { get; private set; }
protected override FileInfo PrepareValue(string value)
{
... | using System.IO;
using MiniCover.Exceptions;
using MiniCover.Model;
using Newtonsoft.Json;
namespace MiniCover.CommandLine.Options
{
class CoverageLoadedFileOption : CoverageFileOption
{
public InstrumentationResult Result { get; private set; }
protected override FileInfo PrepareValue(string... | Improve error message when coverage is not found | Improve error message when coverage is not found
| C# | mit | lucaslorentz/minicover,lucaslorentz/minicover,lucaslorentz/minicover |
8baf58aa1eb06d5811dabd33d79efaaee0070272 | Assets/PoolVR/Scripts/FollowTarget.cs | Assets/PoolVR/Scripts/FollowTarget.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Zenject;
public class FollowTarget : MonoBehaviour
{
[Inject]
public ForceSelector ForceSelector { get; set; }
public Rigidbody targetRb;
public float distanceToReset = 0.1f;
public float velocityThresh;
publ... | using System;
using System.Collections;
using System.Collections.Generic;
using UniRx;
using UnityEngine;
using Zenject;
public class FollowTarget : MonoBehaviour
{
[Inject]
public ForceSelector ForceSelector { get; set; }
public Rigidbody targetRb;
public float velocityThresh;
public float moveT... | Fix force selector reset clipping error. | Fix force selector reset clipping error.
| C# | mit | s-soltys/PoolVR |
382214e537a5716c3d21896862b8b64e1b81b6b1 | examples/Bands.GettingStarted/Program.cs | examples/Bands.GettingStarted/Program.cs | using Bands.Output;
using System;
namespace Bands.GettingStarted
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Getting started with Bands!");
var payload = new CounterPayload();
var innerConsoleBand = new ConsoleWriterBand<CounterPay... | using Bands.Output;
using System;
namespace Bands.GettingStarted
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Getting started with Bands!");
var payload = new CounterPayload();
var innerConsoleBand = new ConsoleWriterBand<CounterPay... | Remove profanity - don't want to alienate folk | Remove profanity - don't want to alienate folk
| C# | mit | larrynburris/Bands |
f6a35c5490f1d35db4a3c22bb60ec188a3f88ac4 | TestStack.FluentMVCTesting.Tests/Internal/ExpressionInspectorTests.cs | TestStack.FluentMVCTesting.Tests/Internal/ExpressionInspectorTests.cs | using NUnit.Framework;
using System;
using System.Linq.Expressions;
using TestStack.FluentMVCTesting.Internal;
namespace TestStack.FluentMVCTesting.Tests.Internal
{
[TestFixture]
public class ExpressionInspectorShould
{
[Test]
public void Correctly_parse_equality_comparison_with_string_ope... | using NUnit.Framework;
using System;
using System.Linq.Expressions;
using TestStack.FluentMVCTesting.Internal;
namespace TestStack.FluentMVCTesting.Tests.Internal
{
[TestFixture]
public class ExpressionInspectorShould
{
[Test]
public void Correctly_parse_equality_comparison_with_string_ope... | Support for parsing inequality operator with integral operands. | Support for parsing inequality operator with integral operands.
| C# | mit | TestStack/TestStack.FluentMVCTesting |
ce5f62aa6c8ee24ac1620d457b9ee7963ff84578 | test/indice.Edi.Tests/Models/EdiFact_ORDRSP_Conditions.cs | test/indice.Edi.Tests/Models/EdiFact_ORDRSP_Conditions.cs | using indice.Edi.Serialization;
using System;
using System.Collections.Generic;
namespace indice.Edi.Tests.Models
{
public class Interchange_ORDRSP
{
public Message_ORDRSP Message { get; set; }
}
[EdiMessage]
public class Message_ORDRSP
{
[EdiCondition("Z01", Path = "IMD/1/0... | using indice.Edi.Serialization;
using System;
using System.Collections.Generic;
namespace indice.Edi.Tests.Models
{
public class Interchange_ORDRSP
{
public Message_ORDRSP Message { get; set; }
}
[EdiMessage]
public class Message_ORDRSP
{
[EdiCondition("Z01", "Z10", Path = "... | Fix failing test ORDRSP after change on Condition stacking behavior | Fix failing test ORDRSP after change on Condition stacking behavior
| C# | mit | indice-co/EDI.Net |
92b13471b506b29341d0aef73c52d635e59a6220 | Thinktecture.Relay.OnPremiseConnectorService/Program.cs | Thinktecture.Relay.OnPremiseConnectorService/Program.cs | using System;
using System.Diagnostics;
using Serilog;
using Topshelf;
namespace Thinktecture.Relay.OnPremiseConnectorService
{
internal static class Program
{
private static void Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.ReadFrom.AppSettings()
.CreateLogger();
try
{
Hos... | using System;
using System.Diagnostics;
using Serilog;
using Topshelf;
namespace Thinktecture.Relay.OnPremiseConnectorService
{
internal static class Program
{
private static void Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.ReadFrom.AppSettings()
.CreateLogger();
try
{
Hos... | Make sure that On-Premise Connector cleans up on Windows shutdown | Make sure that On-Premise Connector cleans up on Windows shutdown
| C# | bsd-3-clause | thinktecture/relayserver,jasminsehic/relayserver,jasminsehic/relayserver,jasminsehic/relayserver,thinktecture/relayserver,thinktecture/relayserver |
54de1ce949994cad98a77d07cd909f72b213712f | Assets/SuriyunUnityIAP/Scripts/Network/Messages/IAPNetworkMessageId.cs | Assets/SuriyunUnityIAP/Scripts/Network/Messages/IAPNetworkMessageId.cs | namespace Suriyun.UnityIAP
{
public class IAPNetworkMessageId
{
public const short ToServerBuyProductMsgId = 3000;
public const short ToServerRequestProducts = 3001;
public const short ToClientResponseProducts = 3002;
}
}
| using UnityEngine.Networking;
namespace Suriyun.UnityIAP
{
public class IAPNetworkMessageId
{
// Developer can changes these Ids to avoid hacking while hosting
public const short ToServerBuyProductMsgId = MsgType.Highest + 201;
public const short ToServerRequestProducts = MsgType.Highe... | Set message id by official's highest | Set message id by official's highest
| C# | mit | insthync/suriyun-unity-iap |
24b314b51f9c5c28be61b09fa6f56558c03c8100 | osu.Game.Rulesets.Mania/Edit/Layers/Selection/Overlays/HoldNoteMask.cs | osu.Game.Rulesets.Mania/Edit/Layers/Selection/Overlays/HoldNoteMask.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 osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects.Drawables;
us... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects.Drawables;
us... | Fix hold note masks not working | Fix hold note masks not working
| C# | mit | ZLima12/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,ppy/osu,johnneijzen/osu,smoogipoo/osu,ppy/osu,EVAST9919/osu,EVAST9919/osu,smoogipoo/osu,DrabWeb/osu,DrabWeb/osu,NeoAdonis/osu,NeoAdonis/osu,ZLima12/osu,naoey/osu,UselessToucan/osu,peppy/osu-new,naoey/osu,naoey/osu,DrabWeb/osu,peppy/osu,ppy/os... |
61e9ee28d2264087205303b15de69d0de1068ea9 | 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/Defs/Misc/MainButtonDefs/MainButtons.xml").
/// </summary>
public class MainBut... | 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... | Fix bug where window instance was null on world map. | Fix bug where window instance was null on world map.
| C# | mit | neitsa/PrepareLanding,neitsa/PrepareLanding |
9e17eb234223e2b9869b159f675f3466336b54b2 | osu.Game/Overlays/Settings/Sections/Gameplay/GeneralSettings.cs | osu.Game/Overlays/Settings/Sections/Gameplay/GeneralSettings.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 osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
public class G... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
public class G... | Reword settings text to be ruleset agnostic | Reword settings text to be ruleset agnostic | C# | mit | NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu-new,DrabWeb/osu,UselessToucan/osu,ZLima12/osu,johnneijzen/osu,naoey/osu,2yangk23/osu,ppy/osu,EVAST9919/osu,2yangk23/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,naoey/osu,peppy/osu,naoey/osu,smoogipooo/osu,DrabWeb/osu,EVAST9919/osu,peppy/osu,peppy... |
cafd8e476324c494d2f257a68e02b250dcb1e6e7 | src/Mirage.Urbanization.Simulation/Persistence/PersistedCityStatisticsCollection.cs | src/Mirage.Urbanization.Simulation/Persistence/PersistedCityStatisticsCollection.cs | using System.Collections.Generic;
using System.Linq;
using Mirage.Urbanization.ZoneStatisticsQuerying;
using System.Collections.Immutable;
namespace Mirage.Urbanization.Simulation.Persistence
{
public class PersistedCityStatisticsCollection
{
private ImmutableQueue<PersistedCityStatisticsWithFinancialD... | using System.Collections.Generic;
using System.Linq;
using Mirage.Urbanization.ZoneStatisticsQuerying;
using System.Collections.Immutable;
namespace Mirage.Urbanization.Simulation.Persistence
{
public class PersistedCityStatisticsCollection
{
private ImmutableQueue<PersistedCityStatisticsWithFinancialD... | Reduce the amount of persisted city statistics | Reduce the amount of persisted city statistics
| C# | mit | Miragecoder/Urbanization,Miragecoder/Urbanization,Miragecoder/Urbanization |
3cf162f6f047ef0e8c731d6297a7e3d71f6304f8 | src/FlaUI.Core/AutomationElements/PatternElements/ExpandCollapseAutomationElement.cs | src/FlaUI.Core/AutomationElements/PatternElements/ExpandCollapseAutomationElement.cs | using FlaUI.Core.Definitions;
using FlaUI.Core.Patterns;
namespace FlaUI.Core.AutomationElements.PatternElements
{
/// <summary>
/// An element that supports the <see cref="IExpandCollapsePattern"/>.
/// </summary>
public class ExpandCollapseAutomationElement : AutomationElement
{
public E... | using FlaUI.Core.Definitions;
using FlaUI.Core.Patterns;
namespace FlaUI.Core.AutomationElements.PatternElements
{
/// <summary>
/// An element that supports the <see cref="IExpandCollapsePattern"/>.
/// </summary>
public class ExpandCollapseAutomationElement : AutomationElement
{
public E... | Switch Collapse function to correctly call the Collapse function of the expand pattern | Switch Collapse function to correctly call the Collapse function of the expand pattern
| C# | mit | Roemer/FlaUI |
3ad10ec2cc94751dd323aba665a9f633fc8f685c | src/Core/Services/Crosspost/TelegramCrosspostService.cs | src/Core/Services/Crosspost/TelegramCrosspostService.cs | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Core.Logging;
using DAL;
using Serilog.Events;
using Telegram.Bot;
namespace Core.Services.Crosspost
{
public class TelegramCrosspostService : ICrossPostService
{
private readonly Core.Logging.ILogger... | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Core.Logging;
using DAL;
using Serilog.Events;
using Telegram.Bot;
namespace Core.Services.Crosspost
{
public class TelegramCrosspostService : ICrossPostService
{
private readonly Core.Logging.ILogger... | Fix tag line for Telegram | Fix tag line for Telegram
| C# | mit | dncuug/dot-net.in.ua,dncuug/dot-net.in.ua,dncuug/dot-net.in.ua |
c27a0cbb6fdda17cf9c49acc56a724b120fd9528 | src/OmniSharp.DotNetTest/Helpers/ProjectPathResolver.cs | src/OmniSharp.DotNetTest/Helpers/ProjectPathResolver.cs | using System.IO;
namespace OmniSharp.DotNetTest.Helpers
{
internal class ProjectPathResolver
{
public static string GetProjectPathFromFile(string filepath)
{
// TODO: revisit this logic, too clumsy
var projectFolder = Path.GetDirectoryName(filepath);
while (... | using System.IO;
namespace OmniSharp.DotNetTest.Helpers
{
internal class ProjectPathResolver
{
public static string GetProjectPathFromFile(string filepath)
{
// TODO: revisit this logic, too clumsy
var projectFolder = Path.GetDirectoryName(filepath);
while (... | Fix incorrect project path resolver | Fix incorrect project path resolver
| C# | mit | DustinCampbell/omnisharp-roslyn,jtbm37/omnisharp-roslyn,DustinCampbell/omnisharp-roslyn,jtbm37/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,nabychan/omnisharp-roslyn,nabychan/omnisharp-roslyn,OmniSharp/omnisharp-roslyn |
2b1c5b2c4a11ffbafbf3fb0361647527de2baaac | osu.Game.Tests/Visual/Gameplay/SkinnableHUDComponentTestScene.cs | osu.Game.Tests/Visual/Gameplay/SkinnableHUDComponentTestScene.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 disable
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
namespace osu.Game.Tests.Visual.Gameplay
{
... | // 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.Framework.Graphics;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
using osu.Game.Skinning;
namespace osu.Game.Tests.Visual.Gamep... | Fix test failure due to triangle skin no longer being null intests | Fix test failure due to triangle skin no longer being null intests
| C# | mit | peppy/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu,ppy/osu |
44212f6b534f75cb4ad937dde474652a72454902 | src/Umbraco.Web/Models/Mapping/RedirectUrlMapperProfile.cs | src/Umbraco.Web/Models/Mapping/RedirectUrlMapperProfile.cs | using AutoMapper;
using Umbraco.Core.Models;
using Umbraco.Web.Composing;
using Umbraco.Web.Models.ContentEditing;
using Umbraco.Web.Routing;
namespace Umbraco.Web.Models.Mapping
{
internal class RedirectUrlMapperProfile : Profile
{
public RedirectUrlMapperProfile(IUmbracoContextAccessor umbracoConte... | using AutoMapper;
using Umbraco.Core.Models;
using Umbraco.Web.Composing;
using Umbraco.Web.Models.ContentEditing;
using Umbraco.Web.Routing;
namespace Umbraco.Web.Models.Mapping
{
internal class RedirectUrlMapperProfile : Profile
{
public RedirectUrlMapperProfile(IUmbracoContextAccessor umbracoConte... | Revert "the wrong id was used for getting the correct destination url." | Revert "the wrong id was used for getting the correct destination url."
This reverts commit 5d1fccb2c426349fae9523084949b6af60532581.
| C# | mit | tcmorris/Umbraco-CMS,marcemarc/Umbraco-CMS,abjerner/Umbraco-CMS,KevinJump/Umbraco-CMS,hfloyd/Umbraco-CMS,hfloyd/Umbraco-CMS,marcemarc/Umbraco-CMS,abjerner/Umbraco-CMS,KevinJump/Umbraco-CMS,leekelleher/Umbraco-CMS,marcemarc/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,bjarnef/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,marce... |
6fd10d0bf26739a85e9e2d500f2501fff0a4e1eb | CSharpLLVM/Program.cs | CSharpLLVM/Program.cs | using CommandLine;
using CSharpLLVM.Compilation;
using System.IO;
namespace CSharpLLVM
{
class Program
{
/// <summary>
/// Entrypoint.
/// </summary>
/// <param name="args">Arguments.</param>
static void Main(string[] args)
{
Options options = new Op... | using CommandLine;
using CSharpLLVM.Compilation;
using System;
using System.IO;
namespace CSharpLLVM
{
class Program
{
/// <summary>
/// Entrypoint.
/// </summary>
/// <param name="args">Arguments.</param>
static void Main(string[] args)
{
Options op... | Print usage when parsing did not go right. | Print usage when parsing did not go right.
| C# | mit | SharpNative/CSharpLLVM,SharpNative/CSharpLLVM |
1f0df0080ad69a31d894f738ad60f39e9bd85fca | Snowflake/Ajax/JSResponse.cs | Snowflake/Ajax/JSResponse.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Snowflake.Ajax
{
public class JSResponse : IJSResponse
{
public IJSRequest Request { get; private set; }
public dynamic Payload { get; private se... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Snowflake.Ajax
{
public class JSResponse : IJSResponse
{
public IJSRequest Request { get; private set; }
public dynamic Payload { get; private se... | Add request and 'methodresponse' type in JSON body to account for other response types using the WebSocket APIs | JSAPI: Add request and 'methodresponse' type in JSON body to account for other response types using the WebSocket APIs
| C# | mpl-2.0 | faint32/snowflake-1,SnowflakePowered/snowflake,faint32/snowflake-1,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,faint32/snowflake-1,RonnChyran/snowflake |
75a80105a1fce0e9c2e72da033dd0abfb93b7368 | src/Website/Controllers/HomeController.cs | src/Website/Controllers/HomeController.cs | using System.Web.Mvc;
using System.Net;
using Newtonsoft.Json;
using System.IO;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using System.Linq;
using System.Web.Caching;
using System;
namespace Website.Controllers
{
public class HomeController : Controller
{
public Actio... | using System;
using System.Collections.Generic;
using System.Net;
using System.Web.Caching;
using System.Web.Mvc;
using Newtonsoft.Json;
namespace Website.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
... | Tidy up github api calling code | Tidy up github api calling code
| C# | mit | andrewdavey/cassette,honestegg/cassette,BluewireTechnologies/cassette,andrewdavey/cassette,honestegg/cassette,BluewireTechnologies/cassette,damiensawyer/cassette,damiensawyer/cassette,andrewdavey/cassette,honestegg/cassette,damiensawyer/cassette |
847d08c5bbb958b3df90cd76a3bb927c56c2e35a | SharedAssemblyInfo.cs | SharedAssemblyInfo.cs | using System.Reflection;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("6.1.*")]
[assembly: AssemblyFileVersion("6.1.*")] | using System.Reflection;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("6.2.*")]
[assembly: AssemblyFileVersion("6.2.*")] | Change version number for breaking change. | Change version number for breaking change.
| C# | apache-2.0 | digipost/digipost-api-client-dotnet |
7d3325b35580c30193f2d1c7c600f267c4320969 | src/ResourceManager/Compute/Commands.Compute/Models/AzureDiskEncryptionStatusContext.cs | src/ResourceManager/Compute/Commands.Compute/Models/AzureDiskEncryptionStatusContext.cs | // ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apa... | // ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apa... | Add DecryptionInProgress for EncryptionStatus enum | Add DecryptionInProgress for EncryptionStatus enum
| C# | apache-2.0 | jtlibing/azure-powershell,krkhan/azure-powershell,pankajsn/azure-powershell,arcadiahlyy/azure-powershell,AzureRT/azure-powershell,yantang-msft/azure-powershell,hungmai-msft/azure-powershell,nemanja88/azure-powershell,AzureAutomationTeam/azure-powershell,seanbamsft/azure-powershell,AzureAutomationTeam/azure-powershell,d... |
c9be768be36aa319c0f01fc89b9f8d651c50cedd | CkanDotNet.Web/Views/Shared/_Rating.cshtml | CkanDotNet.Web/Views/Shared/_Rating.cshtml | @using CkanDotNet.Api.Model
@using CkanDotNet.Web.Models
@using CkanDotNet.Web.Models.Helpers
@model Package
@{
bool editable = Convert.ToBoolean(ViewData["editable"]);
string ratingId = GuidHelper.GetUniqueKey(16);
}
@if (Model.RatingsAverage.HasValue || editable)
{
<div id="@ratingId" class="rating">
@... | @using CkanDotNet.Api.Model
@using CkanDotNet.Web.Models
@using CkanDotNet.Web.Models.Helpers
@model Package
@{
bool editable = Convert.ToBoolean(ViewData["editable"]);
string ratingId = GuidHelper.GetUniqueKey(16);
}
@if (Model.RatingsAverage.HasValue || editable)
{
<div id="@ratingId" class="rating">
@... | Add analytics event for package rate | Add analytics event for package rate
Record and event when a user submits a
package rating.
| C# | apache-2.0 | opencolorado/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API,DenverDev/.NET-Wrapper-for-CKAN-API,DenverDev/.NET-Wrapper-for-CKAN-API |
d8a906b448fe9f56163b4a3c4797b5019f3baa2f | EndlessClient/UIControls/StatusBarLabel.cs | EndlessClient/UIControls/StatusBarLabel.cs | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
using System;
using EndlessClient.HUD;
using EOLib;
using Microsoft.Xna.Framework;
using XNAControls;
namespace EndlessClient.UIControls
{
public class StatusBarLabe... | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
using System;
using EndlessClient.HUD;
using EOLib;
using Microsoft.Xna.Framework;
using XNAControls;
namespace EndlessClient.UIControls
{
public class StatusBarLabe... | Check if status label is constructed before executing update | Check if status label is constructed before executing update
Fixes weird race condition where sometimes Update() will throw a NullReferenceException because the status bar label is still being constructed but has already been added to the game's components.
| C# | mit | ethanmoffat/EndlessClient |
0034c7a8eef8928961a70c3cf219a99a78167267 | WCF/Shared/Implementation/WcfExtensions.cs | WCF/Shared/Implementation/WcfExtensions.cs | using System;
using System.ServiceModel.Channels;
namespace Microsoft.ApplicationInsights.Wcf.Implementation
{
internal static class WcfExtensions
{
public static HttpRequestMessageProperty GetHttpRequestHeaders(this IOperationContext operation)
{
if ( operation.HasIncomingMessageP... | using System;
using System.ServiceModel.Channels;
namespace Microsoft.ApplicationInsights.Wcf.Implementation
{
internal static class WcfExtensions
{
public static HttpRequestMessageProperty GetHttpRequestHeaders(this IOperationContext operation)
{
try
{
... | Handle ObjectDisposedException just in case we do end up trying to read properties of a closed message | Handle ObjectDisposedException just in case we do end up trying to read properties of a closed message
| C# | mit | Microsoft/ApplicationInsights-SDK-Labs |
cb1e88d26fab2a7472ac051543540ed801adf299 | HashtagBot/Arf.Console/Program.cs | HashtagBot/Arf.Console/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Arf.Services;
using Microsoft.ProjectOxford.Vision.Contract;
namespace Arf.Console
{
class Program
{
public static bool IsProcessing;
public static void Main(string[] args)... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Arf.Services;
using Microsoft.ProjectOxford.Vision.Contract;
namespace Arf.Console
{
class Program
{
public static bool IsProcessing;
public static void Main(string[] args)... | Test console Run method updated | Test console Run method updated
| C# | mit | mecitsem/hashtagbot,mecitsem/hashtagbot,mecitsem/Arf-HashtagBot,mecitsem/hashtagbot,mecitsem/Arf-HashtagBot |
f9492a2fe7e398366c0f697e634e01ee95e62141 | Server/Log.cs | Server/Log.cs | using System;
namespace DarkMultiPlayerServer
{
public class DarkLog
{
public static void Debug(string message)
{
#if DEBUG
float currentTime = Server.serverClock.ElapsedMilliseconds / 1000f;
Console.WriteLine("[" + currentTime + "] Debug: " + message);
#endif
}
... | using System;
namespace DarkMultiPlayerServer
{
public class DarkLog
{
public static void Debug(string message)
{
float currentTime = Server.serverClock.ElapsedMilliseconds / 1000f;
Console.WriteLine("[" + currentTime + "] Debug: " + message);
}
public st... | Make debugging output show up on release builds | Make debugging output show up on release builds
| C# | mit | godarklight/DarkMultiPlayer,81ninja/DarkMultiPlayer,Dan-Shields/DarkMultiPlayer,rewdmister4/rewd-mod-packs,dsonbill/DarkMultiPlayer,Kerbas-ad-astra/DarkMultiPlayer,Sanmilie/DarkMultiPlayer,RockyTV/DarkMultiPlayer,RockyTV/DarkMultiPlayer,godarklight/DarkMultiPlayer,81ninja/DarkMultiPlayer |
843b268c741368779c60ec5f607ca1ffcd4f66e6 | CIV/Program.cs | CIV/Program.cs | using static System.Console;
using CIV.Ccs;
using CIV.Interfaces;
namespace CIV
{
class Program
{
static void Main(string[] args)
{
var text = System.IO.File.ReadAllText(args[0]);
var processes = CcsFacade.ParseAll(text);
var trace = CcsFacade.RandomTrace(processes["... | using static System.Console;
using CIV.Ccs;
using CIV.Hml;
namespace CIV
{
class Program
{
static void Main(string[] args)
{
var text = System.IO.File.ReadAllText(args[0]);
var processes = CcsFacade.ParseAll(text);
var hmlText = "[[ack]][[ack]][[ack]](<<ack>>tt and [[freeAll]]... | Remove RandomTrace stuff from Main | Remove RandomTrace stuff from Main
| C# | mit | lou1306/CIV,lou1306/CIV |
c9766565616d90b2f4ff5b76a01c06bcae60d877 | src/MvcSample/Views/Emails/Example.cshtml | src/MvcSample/Views/Emails/Example.cshtml | To: @Model.To
From: example@website.com
Reply-To: another@website.com
Subject: @Model.Subject
@* NOTE: There MUST be a blank like after the headers and before the content. *@
Hello,
This email was generated using Postal for asp.net mvc on @Model.Date.ToShortDateString()
Message follows:
@Model.Message
Tha... | To: @Model.To
From: example@website.com
Reply-To: another@website.com
Subject: @Model.Subject
@* NOTE: There MUST be a blank line after the headers and before the content. *@
Hello,
This email was generated using Postal for asp.net mvc on @Model.Date.ToShortDateString()
Message follows:
@Model.Message
Tha... | Fix typo in example comment. | Fix typo in example comment.
| C# | mit | andrewdavey/postal,ajbeaven/postal,hermanho/postal,andrewdavey/postal,vip32/postal,Lybecker/postal |
9a00c869971474a249be43f71e9976e0de6354ec | src/ProjectEuler/Puzzles/Puzzle010.cs | src/ProjectEuler/Puzzles/Puzzle010.cs | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.ProjectEuler.Puzzles
{
using System;
using System.Linq;
/// <summary>
/// A class representing the sol... | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.ProjectEuler.Puzzles
{
using System;
/// <summary>
/// A class representing the solution to <c>https://pro... | Refactor puzzle 10 to not use LINQ | Refactor puzzle 10 to not use LINQ
| C# | apache-2.0 | martincostello/project-euler |
ba08ad548b0e8c0d290bd63ff06fbc3df3faf6f7 | src/TramlineFive/TramlineFive.Common/Converters/TimingConverter.cs | src/TramlineFive/TramlineFive.Common/Converters/TimingConverter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Xaml.Data;
namespace TramlineFive.Common.Converters
{
public class TimingConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parame... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Xaml.Data;
namespace TramlineFive.Common.Converters
{
public class TimingConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parame... | Fix some arrivals showing negative ETA minutes. | Fix some arrivals showing negative ETA minutes.
| C# | apache-2.0 | betrakiss/Tramline-5,betrakiss/Tramline-5 |
1fab7add9386ec31c9c9ef47aaf281deac8c02aa | Metrics.Reporters.GoogleAnalytics/Metrics.Reporters.GoogleAnalytics.Tracker/Model/Metric.cs | Metrics.Reporters.GoogleAnalytics/Metrics.Reporters.GoogleAnalytics.Tracker/Model/Metric.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Metrics.Reporters.GoogleAnalytics.Tracker.Model.MeasurementProtocol;
using Metrics.Reporters.GoogleAnalytics.Tracker.Model.MeasurementProtocol.Values;
namespace Metrics.Reporters.GoogleAnalytics.T... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Metrics.Reporters.GoogleAnalytics.Tracker.Model.MeasurementProtocol;
using Metrics.Reporters.GoogleAnalytics.Tracker.Model.MeasurementProtocol.Values;
namespace Metrics.Reporters.GoogleAnalytics.T... | Revert "Try fix for tracking metrics with square brackets in name" | Revert "Try fix for tracking metrics with square brackets in name"
This reverts commit 9d62eeab95b733795473c1ecee24ce217166726e.
| C# | apache-2.0 | hinteadan/Metrics.NET.GAReporting |
37d4dd9be181d64eef9a1f9157e95f9269e0871c | src/SilentHunter.Controllers.Compiler/DependencyInjection/ControllerConfigurerExtensions.cs | src/SilentHunter.Controllers.Compiler/DependencyInjection/ControllerConfigurerExtensions.cs | using System;
using System.Reflection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using SilentHunter.FileFormats.Dat.Controllers;
using SilentHunter.FileFormats.DependencyInjection;
namespace SilentHunter.Controllers.Compiler.DependencyInjection
{
publi... | using System;
using System.Reflection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using SilentHunter.FileFormats.Dat.Controllers;
using SilentHunter.FileFormats.DependencyInjection;
namespace SilentHunter.Controllers.Compiler.DependencyInjection
{
publi... | Add option to set app name | Add option to set app name
| C# | apache-2.0 | skwasjer/SilentHunter |
83d9641b02f60be1b44fb793c76aa241c4dbff3a | LSDStay/PSX.cs | LSDStay/PSX.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace LSDStay
{
public static class PSX
{
public static Process FindPSX()
{
Process psx = Process.GetProcessesByName("psxfin").FirstOrDefault();
return psx;
}... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace LSDStay
{
public static class PSX
{
public static Process PSXProcess;
public static IntPtr PSXHandle;
public static bool FindPSX()
{
PSXProcess = Proc... | Add Read and Write methods | Add Read and Write methods
| C# | mit | Figglewatts/LSDStay |
fb04f2c639b28080132d15c6d9b841a931dd0fc5 | Tests/SizeTest.cs | Tests/SizeTest.cs | using Xunit;
namespace VulkanCore.Tests
{
public class SizeTest
{
[Fact]
public void ImplicitConversions()
{
const int intVal = 1;
const long longVal = 2;
Size intSize = intVal;
Size longSize = longVal;
Assert.Equal(intVal, ... | using Xunit;
namespace VulkanCore.Tests
{
public class SizeTest
{
[Fact]
public void ImplicitConversions()
{
const int intVal = 1;
const long longVal = 2;
Size intSize = intVal;
Size longSize = longVal;
Assert.Equal(intVal, ... | Fix Size test using explicit conversions for assertions | [Tests] Fix Size test using explicit conversions for assertions
| C# | mit | discosultan/VulkanCore |
9fdfa3c2a451f13ddff65fb4d1de63643a93b08f | NeuralNetwork/NeuralNetwork/Neuron.cs | NeuralNetwork/NeuralNetwork/Neuron.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArtificialNeuralNetwork
{
[Serializable]
public class Neuron : INeuron
{
private readonly ISoma _soma;
private readonly IAxon _axon;
public Neuron(ISoma so... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArtificialNeuralNetwork
{
[Serializable]
public class Neuron : INeuron
{
private readonly ISoma _soma;
private readonly IAxon _axon;
private Neuron(ISoma s... | Add static factory method for neuron | Add static factory method for neuron
| C# | mit | jobeland/NeuralNetwork |
7ea77941719a8ffb4bddc9bcb7317210634a3db3 | src/Discore/DiscordMessageType.cs | src/Discore/DiscordMessageType.cs | namespace Discore
{
public enum DiscordMessageType
{
Default = 0,
RecipientAdd = 1,
RecipientRemove = 2,
Call = 3,
ChannelNameChange = 4,
ChannelIconChange = 5,
ChannelPinnedMessage = 6,
GuildMemberJoin = 7
}
}
| namespace Discore
{
public enum DiscordMessageType
{
Default = 0,
RecipientAdd = 1,
RecipientRemove = 2,
Call = 3,
ChannelNameChange = 4,
ChannelIconChange = 5,
ChannelPinnedMessage = 6,
GuildMemberJoin = 7,
UserPremiumGuildSubscription = ... | Add message types for nitro boosting and channel following | Add message types for nitro boosting and channel following
#66
| C# | mit | BundledSticksInkorperated/Discore |
c576e3fc8cfa01832c33f8a65fd81c581720e240 | Source/Test/Operations/NewUserDefinedFunctionOperationTestFixture.cs | Source/Test/Operations/NewUserDefinedFunctionOperationTestFixture.cs | using NUnit.Framework;
using Rivet.Operations;
namespace Rivet.Test.Operations
{
[TestFixture]
public sealed class NewUserDefinedFunctionTestFixture
{
const string SchemaName = "schemaName";
const string FunctionName = "functionName";
const string Definition = "as definition";
[SetUp]
publi... | using NUnit.Framework;
using Rivet.Operations;
namespace Rivet.Test.Operations
{
[TestFixture]
public sealed class NewUserDefinedFunctionTestFixture
{
const string SchemaName = "schemaName";
const string FunctionName = "functionName";
const string Definition = "as definition";
[SetUp]
publi... | Rename function name in test fixture | Rename function name in test fixture
| C# | apache-2.0 | RivetDB/Rivet,RivetDB/Rivet,RivetDB/Rivet |
bf0201b079585f4319e3a85e813c9c5cfd34718a | csharp/Hello/HelloServer/Program.cs | csharp/Hello/HelloServer/Program.cs | using System;
using System.Threading.Tasks;
using Grpc.Core;
using Hello;
namespace HelloServer
{
class HelloServerImpl : HelloService.HelloServiceBase
{
public override Task<HelloResp> SayHello(HelloReq request, ServerCallContext context)
{
return Task.FromResult(new HelloResp { Result = "Hey " + request.Na... | using System;
using System.Threading.Tasks;
using Grpc.Core;
using Hello;
namespace HelloServer
{
class HelloServerImpl : HelloService.HelloServiceBase
{
public override Task<HelloResp> SayHello(HelloReq request, ServerCallContext context)
{
return Task.FromResult(new HelloResp { Result = "Hey, " + request.N... | Update server to send proper response | Update server to send proper response
| C# | mit | avinassh/grpc-errors,avinassh/grpc-errors,avinassh/grpc-errors,avinassh/grpc-errors,avinassh/grpc-errors,avinassh/grpc-errors,avinassh/grpc-errors,avinassh/grpc-errors |
29f52b3004693266db7f07412f526e3a4c121321 | src/Stripe.net/Entities/Charges/ChargePaymentMethodDetails/ChargePaymentMethodDetailsCardThreeDSecure.cs | src/Stripe.net/Entities/Charges/ChargePaymentMethodDetails/ChargePaymentMethodDetailsCardThreeDSecure.cs | namespace Stripe
{
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class ChargePaymentMethodDetailsCardThreeDSecure : StripeEntity
{
}
}
| namespace Stripe
{
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class ChargePaymentMethodDetailsCardThreeDSecure : StripeEntity
{
[JsonProperty("succeeded")]
public bool Succeeded { get; set; }
[JsonProperty("version")]
public string Version { get; set; }
... | Add basic fields in Charge's PMD 3DS field | Add basic fields in Charge's PMD 3DS field
| C# | apache-2.0 | richardlawley/stripe.net,stripe/stripe-dotnet |
94bacce2f7b418159506cc34675a7ce499f64a25 | src/CompetitionPlatform/Data/AzureRepositories/Settings/GeneralSettingsReader.cs | src/CompetitionPlatform/Data/AzureRepositories/Settings/GeneralSettingsReader.cs | using System.Text;
using AzureStorage.Blob;
using Common;
namespace CompetitionPlatform.Data.AzureRepositories.Settings
{
public static class GeneralSettingsReader
{
public static T ReadGeneralSettings<T>(string connectionString, string container, string fileName)
{
var settingsSto... | using System.Net.Http;
using System.Text;
using AzureStorage.Blob;
using Common;
using Newtonsoft.Json;
namespace CompetitionPlatform.Data.AzureRepositories.Settings
{
public static class GeneralSettingsReader
{
public static T ReadGeneralSettings<T>(string connectionString, string container, string f... | Add a method to get settings from a url. | Add a method to get settings from a url.
| C# | mit | LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform |
8e4153fd31a967eef215d49d2f68a98865e79ac2 | osu.Framework.Tests/Visual/Platform/TestSceneExecutionModes.cs | osu.Framework.Tests/Visual/Platform/TestSceneExecutionModes.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.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Configuration;
using osu.Framework.Platform;
namespace osu.Fram... | // 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.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Configuration;
using osu.Framework.Platform;
using osu.Framework... | Add test covering horrible fail scenario | Add test covering horrible fail scenario
| C# | mit | smoogipooo/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework |
4158146c719f6ef3d7f58991b284cf599426d8e5 | osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinnerTick.cs | osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinnerTick.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.Game.Rulesets.Osu.Objects.Drawables
{
public class DrawableSpinnerTick : DrawableOsuHitObject
{
public override bool DisplayResult => false;... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
public class DrawableSpinnerTick : DrawableOsuHitObject
{
public overri... | Fix spinenr tick samples not positioned at centre | Fix spinenr tick samples not positioned at centre
Causing samples to be played at left ear rather than centre.
| C# | mit | peppy/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu,ppy/osu |
77ec8581a3fff975145fe782bee9e5228bc71359 | Blueprints/BlueprintDefinitions/netcore3.1/AspNetCoreWebApp/template/src/BlueprintBaseName.1/LocalEntryPoint.cs | Blueprints/BlueprintDefinitions/netcore3.1/AspNetCoreWebApp/template/src/BlueprintBaseName.1/LocalEntryPoint.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace BlueprintBaseName._1
{
public class Program
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace BlueprintBaseNam... | Fix compile error in .NET Core 3.1 version of ASP.NET Core Web App blueprint | Fix compile error in .NET Core 3.1 version of ASP.NET Core Web App blueprint
| C# | apache-2.0 | thedevopsmachine/aws-lambda-dotnet,thedevopsmachine/aws-lambda-dotnet,thedevopsmachine/aws-lambda-dotnet,thedevopsmachine/aws-lambda-dotnet |
590aef059f4f2860b32e56a6ca6f831e9daec5e9 | NBi.genbiL/GenerationState.cs | NBi.genbiL/GenerationState.cs | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
namespace NBi.GenbiL
{
class GenerationState
{
public DataTable TestCases { get; set; }
public IEnumerable<string> Variables { get; set; }
public string Template { get; set; }
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using NBi.Service;
namespace NBi.GenbiL
{
public class GenerationState
{
public TestCasesManager TestCases { get; private set; }
public TemplateManager Template { get; private set; }
public SettingsManager Se... | Define a state that is modified by the actions | Define a state that is modified by the actions
| C# | apache-2.0 | Seddryck/NBi,Seddryck/NBi |
84962a22753391b5a23105bbbc1479aae9bdcdcd | osu.Framework/Logging/LoadingComponentsLogger.cs | osu.Framework/Logging/LoadingComponentsLogger.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.Linq;
using osu.Framework.Development;
using osu.Framework.Extensions.TypeExtensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
... | // 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.Linq;
using osu.Framework.Development;
using osu.Framework.Extensions.TypeExtensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
... | Fix potentially null reference if drawable was not assigned a `LoadThread` yet | Fix potentially null reference if drawable was not assigned a `LoadThread` yet
| C# | mit | smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework |
5f0069eb837a8300efc0f90c35cf1415a0fe4ade | osu.Game/Screens/Select/MatchSongSelect.cs | osu.Game/Screens/Select/MatchSongSelect.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;
using osu.Game.Online.Multiplayer;
using osu.Game.Screens.Multi;
namespace osu.Game.Screens.Select
{
public class MatchSongSelect : SongSelect, IMult... | // 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;
using osu.Game.Online.Multiplayer;
using osu.Game.Screens.Multi;
namespace osu.Game.Screens.Select
{
public class MatchSongSelect : SongSelect, IMult... | Fix incorrect ruleset being sent to API | Fix incorrect ruleset being sent to API
| C# | mit | NeoAdonis/osu,smoogipooo/osu,UselessToucan/osu,NeoAdonis/osu,naoey/osu,2yangk23/osu,peppy/osu,smoogipoo/osu,EVAST9919/osu,naoey/osu,ppy/osu,UselessToucan/osu,ppy/osu,peppy/osu,ppy/osu,DrabWeb/osu,smoogipoo/osu,johnneijzen/osu,ZLima12/osu,UselessToucan/osu,peppy/osu-new,EVAST9919/osu,naoey/osu,ZLima12/osu,smoogipoo/osu,... |
d843fece7411e5d43e68cc005ddc1e110843e815 | src/Booma.Proxy.Packets.BlockServer/Commands/Command60/Sub60StartNewWarpCommand.cs | src/Booma.Proxy.Packets.BlockServer/Commands/Command60/Sub60StartNewWarpCommand.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FreecraftCore.Serializer;
namespace Booma.Proxy
{
/// <summary>
/// Payload sent when a client is begining a warp to a new area.
/// Contains client ID information and information about the war... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FreecraftCore.Serializer;
namespace Booma.Proxy
{
/// <summary>
/// Payload sent when a client is begining a warp to a new area.
/// Contains client ID information and information about the war... | Revert "Cleaned up 0x60 0x21 warp packet model" | Revert "Cleaned up 0x60 0x21 warp packet model"
This reverts commit d10e1a0bc424923674067ae9080e6954c1de9403.
| C# | agpl-3.0 | HelloKitty/Booma.Proxy |
6e08b1db1d342c584bc2899cb6dc0e175219dcee | osu!StreamCompanion/Code/Modules/ModParser/ModParserSettings.cs | osu!StreamCompanion/Code/Modules/ModParser/ModParserSettings.cs | using System;
using System.Windows.Forms;
using osu_StreamCompanion.Code.Core;
using osu_StreamCompanion.Code.Helpers;
namespace osu_StreamCompanion.Code.Modules.ModParser
{
public partial class ModParserSettings : UserControl
{
private Settings _settings;
private bool init = true;
pub... | using System;
using System.Windows.Forms;
using osu_StreamCompanion.Code.Core;
using osu_StreamCompanion.Code.Helpers;
namespace osu_StreamCompanion.Code.Modules.ModParser
{
public partial class ModParserSettings : UserControl
{
private Settings _settings;
private bool init = true;
pub... | Make sure that beginInvoke target exists | Make sure that beginInvoke target exists
| C# | mit | Piotrekol/StreamCompanion,Piotrekol/StreamCompanion |
c27a20bc2a0ed3562a7782e47be9386727c0791c | Anagrams/Global.asax.cs | Anagrams/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Anagrams.Models;
namespace Anagrams
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplic... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Anagrams.Models;
namespace Anagrams
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplic... | Use API to override the location of the dictionary file in the dictionary cache from our Web applicatoin | Use API to override the location of the dictionary file in the dictionary cache from our Web applicatoin
| C# | mit | TheChimni/Anagrams,TheChimni/Anagrams |
1f65aa4bf3c0863c3d36865401209c94f97f06c4 | WalletWasabi.Gui/Converters/CoinStatusForegroundConverter.cs | WalletWasabi.Gui/Converters/CoinStatusForegroundConverter.cs | using Avalonia.Data.Converters;
using Avalonia.Media;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using WalletWasabi.Gui.Controls.WalletExplorer;
using WalletWasabi.Gui.Models;
using WalletWasabi.Models.ChaumianCoinJoin;
namespace WalletWasabi.Gui.Converters
{
publi... | using Avalonia.Data.Converters;
using Avalonia.Media;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using WalletWasabi.Gui.Controls.WalletExplorer;
using WalletWasabi.Gui.Models;
using WalletWasabi.Models.ChaumianCoinJoin;
namespace WalletWasabi.Gui.Converters
{
publi... | Make round states foreground white | [skip ci] Make round states foreground white
| C# | mit | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet |
27e182ef94e9f8a0de44c57f77ce53940c490d00 | Mond/Libraries/Async/Scheduler.cs | Mond/Libraries/Async/Scheduler.cs | using System.Collections.Generic;
using System.Threading.Tasks;
namespace Mond.Libraries.Async
{
internal class Scheduler : TaskScheduler
{
private List<Task> _tasks;
public Scheduler()
{
_tasks = new List<Task>();
}
public void Run()
{
... | using System.Collections.Generic;
using System.Threading.Tasks;
namespace Mond.Libraries.Async
{
internal class Scheduler : TaskScheduler
{
private List<Task> _tasks;
public Scheduler()
{
_tasks = new List<Task>();
}
public void Run()
{
... | Fix async deadlock on Mono | Fix async deadlock on Mono
| C# | mit | Rohansi/Mond,SirTony/Mond,SirTony/Mond,Rohansi/Mond,Rohansi/Mond,SirTony/Mond |
f25ea9fe0ef80f547136df434e1ff8d1dde76432 | Properties/AssemblyInfo.cs | 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("Fr... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// 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.
[ass... | Set neutral language to English | Set neutral language to English
| C# | mit | freenet/wintray,freenet/wintray |
615fe0e6b6f4c087fe89a168601d3d5fb004f178 | Source/MTW_AncestorSpirits/AncestorUtils.cs | Source/MTW_AncestorSpirits/AncestorUtils.cs | using RimWorld;
using UnityEngine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MTW_AncestorSpirits
{
public static class AncestorUtils
{
public static int DaysToTicks(float days)
{
return Mathf.RoundToInt(days * GenDate.TicksPerD... | using Verse;
using RimWorld;
using UnityEngine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MTW_AncestorSpirits
{
public static class AncestorUtils
{
public static int DaysToTicks(float days)
{
return Mathf.RoundToInt(days * GenD... | Add function to get start of season | Add function to get start of season
| C# | mit | MoyTW/MTW_AncestorSpirits |
cedd703faad81a8462b3e4353a1545de8fe01a49 | Source/Hypermedia.Client/Reader/ProblemJson/ProblemJsonReader.cs | Source/Hypermedia.Client/Reader/ProblemJson/ProblemJsonReader.cs | namespace Hypermedia.Client.Reader.ProblemJson
{
using System;
using System.Net.Http;
using global::Hypermedia.Client.Exceptions;
using global::Hypermedia.Client.Resolver;
using Newtonsoft.Json;
public static class ProblemJsonReader
{
public static bool TryReadProblemJson(HttpRes... | namespace Hypermedia.Client.Reader.ProblemJson
{
using System;
using System.Net.Http;
using global::Hypermedia.Client.Exceptions;
using global::Hypermedia.Client.Resolver;
using Newtonsoft.Json;
public static class ProblemJsonReader
{
public static bool TryReadProblemJson(HttpRes... | Fix TryReadProblemJson: ensure problem json could be read and an object was created | Fix TryReadProblemJson: ensure problem json could be read and an object was created
| C# | mit | bluehands/WebApiHypermediaExtensions,bluehands/WebApiHypermediaExtensions |
d7d786f60c4490ddc72ca4ad0ad67cb3fa51a98c | Deblocus/Program.cs | Deblocus/Program.cs | //
// Program.cs
//
// Author:
// Benito Palacios Sánchez (aka pleonex) <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez (c) 2015
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the F... | //
// Program.cs
//
// Author:
// Benito Palacios Sánchez (aka pleonex) <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez (c) 2015
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the F... | Add error message on exception | Add error message on exception
| C# | agpl-3.0 | pleonex/deblocus,pleonex/deblocus |
199300be1d7b565ea174562ff778fa7d46837ae7 | 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: AssemblyTitle("Re... | 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("Re... | Increase client version to 1.4.2.3 | Increase client version to 1.4.2.3
| C# | mit | jvalladolid/recurly-client-net |
0aee46701a778a6f6044bc53c41fe50c1400f3a8 | src/Sitecore.DataBlaster/Load/Processors/SyncHistoryTable.cs | src/Sitecore.DataBlaster/Load/Processors/SyncHistoryTable.cs | using System.Diagnostics;
using Sitecore.Configuration;
using Sitecore.DataBlaster.Load.Sql;
namespace Sitecore.DataBlaster.Load.Processors
{
public class SyncHistoryTable : ISyncInTransaction
{
public void Process(BulkLoadContext loadContext, BulkLoadSqlContext sqlContext)
{
if (!l... | using System.Diagnostics;
using Sitecore.Configuration;
using Sitecore.DataBlaster.Load.Sql;
namespace Sitecore.DataBlaster.Load.Processors
{
public class SyncHistoryTable : ISyncInTransaction
{
public void Process(BulkLoadContext loadContext, BulkLoadSqlContext sqlContext)
{
if (!l... | Change log lvl for history engine disable logging | Change log lvl for history engine disable logging
| C# | mit | delawarePro/sitecore-data-blaster |
0d70429cf04813f571a9cc1b4b05ce5a0d44d15b | GUI/Utils/Settings.cs | GUI/Utils/Settings.cs | using System.Collections.Generic;
using System.Drawing;
using System.IO;
namespace GUI.Utils
{
internal static class Settings
{
public static List<string> GameSearchPaths { get; } = new List<string>();
public static Color BackgroundColor { get; set; } = Color.Black;
public static voi... | using System.Collections.Generic;
using System.Drawing;
using System.IO;
namespace GUI.Utils
{
internal static class Settings
{
public static List<string> GameSearchPaths { get; } = new List<string>();
public static Color BackgroundColor { get; set; }
public static void Load()
... | Change default background color to be more grey | Change default background color to be more grey
| C# | mit | SteamDatabase/ValveResourceFormat |
fb0685dee75cba5cf25b6c4a5971c4b6ad8f8470 | src/Micro+/Entity/EntityInfo.cs | src/Micro+/Entity/EntityInfo.cs | using System.Collections.Generic;
using System;
namespace MicroORM.Entity
{
internal sealed class EntityInfo
{
internal EntityInfo()
{
this.EntityState = EntityState.None;
this.EntityHashSet = new Dictionary<string, string>();
this.LastCallTime = DateTime.No... | using System;
using System.Collections.Generic;
using System.Linq;
using MicroORM.Materialization;
using MicroORM.Reflection;
using MicroORM.Mapping;
namespace MicroORM.Entity
{
internal sealed class EntityInfo
{
internal EntityInfo()
{
this.EntityState = EntityState.None;
... | Rollback functionality and hash computing | Rollback functionality and hash computing
Added the functionality to compute the hash by himself and save or
rollback changes made to entity.
| C# | apache-2.0 | PowerMogli/Rabbit.Db |
f3b8a8a440116bd0153a58dc6c8d2178445bf26c | src/DslPackage/CustomCode/Messages.cs | src/DslPackage/CustomCode/Messages.cs | using System;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
namespace Sawczyn.EFDesigner.EFModel
{
internal static class Messages
{
private static readonly string MessagePaneTitle = "Entity Framework Designer";
private static IVsOutputWindow _outputWindow;
pr... | using System;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
namespace Sawczyn.EFDesigner.EFModel
{
internal static class Messages
{
private static readonly string MessagePaneTitle = "Entity Framework Designer";
private static IVsOutputWindow _outputWindow;
pr... | Format for output window message changed | Format for output window message changed
| C# | mit | msawczyn/EFDesigner,msawczyn/EFDesigner,msawczyn/EFDesigner |
0082d559145649066e3c16370f609f9fc94fef15 | src/Orchard.Web/Core/Common/Shapes.cs | src/Orchard.Web/Core/Common/Shapes.cs | using System;
using System.Web;
using System.Web.Mvc;
using Orchard.DisplayManagement;
using Orchard.DisplayManagement.Descriptors;
using Orchard.Localization;
using Orchard.Mvc.Html;
namespace Orchard.Core.Common {
public class Shapes : IShapeTableProvider {
public Shapes() {
T = NullLocalizer... | using System;
using System.Web;
using System.Web.Mvc;
using Orchard.DisplayManagement;
using Orchard.DisplayManagement.Descriptors;
using Orchard.Localization;
using Orchard.Mvc.Html;
namespace Orchard.Core.Common {
public class Shapes : IShapeTableProvider {
public Shapes() {
T = NullLocalizer... | Allow custom date format when displaying published state | Allow custom date format when displaying published state
Wen overriding the Parts.Common.Metadata.cshtml in a theme, this will allow for changing the date format used to display the date. | C# | bsd-3-clause | rtpHarry/Orchard,omidnasri/Orchard,LaserSrl/Orchard,fassetar/Orchard,OrchardCMS/Orchard,yersans/Orchard,bedegaming-aleksej/Orchard,AdvantageCS/Orchard,gcsuk/Orchard,yersans/Orchard,Serlead/Orchard,ehe888/Orchard,Serlead/Orchard,Dolphinsimon/Orchard,hbulzy/Orchard,AdvantageCS/Orchard,LaserSrl/Orchard,hbulzy/Orchard,fass... |
fad460d69e4a133b05de63d502288eca3066a56b | ArduinoWindowsRemoteControl/Services/RemoteCommandParserService.cs | ArduinoWindowsRemoteControl/Services/RemoteCommandParserService.cs | using Arduino;
using ArduinoWindowsRemoteControl.Repositories;
using Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArduinoWindowsRemoteControl.Services
{
/// <summary>
/// Service that returns parsers for differen... | using Arduino;
using ArduinoWindowsRemoteControl.Repositories;
using Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArduinoWindowsRemoteControl.Services
{
/// <summary>
/// Service that returns parsers for differen... | Add ability to save commands mapping | Add ability to save commands mapping
| C# | mit | StanislavUshakov/ArduinoWindowsRemoteControl |
e6ec883084899f368847d3367f7000f409844b68 | osu.Game.Rulesets.Osu/Objects/SliderTailCircle.cs | osu.Game.Rulesets.Osu/Objects/SliderTailCircle.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 osu.Framework.Bindables;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Obje... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Osu.Judgements;
using osu.Game.Rulesets.Scorin... | Remove slider tail circle judgement requirements | Remove slider tail circle judgement requirements
| C# | mit | peppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,peppy/osu-new |
f6d4108eb0e68db4fa3281335c44ab88e5dca71d | osu.Framework/Threading/AudioThread.cs | osu.Framework/Threading/AudioThread.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 osu.Framework.Statistics;
using System;
using System.Collections.Generic;
using osu.Framework.Audio;
namespace osu.Framework.Threading
{
public class AudioThr... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Statistics;
using System;
using System.Collections.Generic;
using osu.Framework.Audio;
namespace osu.Framework.Threading
{
public class AudioThr... | Fix audio thread not exiting correctly | Fix audio thread not exiting correctly
| C# | mit | ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework |
d29bcefb9c0d27b78aab12ba978f51e3c2cff547 | src/Persistence.RavenDB/RavenDBViewModelHelper.cs | src/Persistence.RavenDB/RavenDBViewModelHelper.cs | // <copyright file="RavenDBViewModelHelper.cs" company="Cognisant">
// Copyright (c) Cognisant. All rights reserved.
// </copyright>
namespace CR.ViewModels.Persistence.RavenDB
{
/// <summary>
/// Helper class used for code shared between <see cref="RavenDBViewModelReader"/> and <see cref="RavenDBViewModelWri... | // <copyright file="RavenDBViewModelHelper.cs" company="Cognisant">
// Copyright (c) Cognisant. All rights reserved.
// </copyright>
namespace CR.ViewModels.Persistence.RavenDB
{
/// <summary>
/// Helper class used for code shared between <see cref="RavenDBViewModelReader"/> and <see cref="RavenDBViewModelWri... | Add missing changes for last commit | Add missing changes for last commit
| C# | bsd-3-clause | cognisant/cr-viewmodels |
80aad36f9a523c42b401e76f4a7f192de14f7388 | CkanDotNet.Web/Views/Shared/Package/_Disqus.cshtml | CkanDotNet.Web/Views/Shared/Package/_Disqus.cshtml | @using CkanDotNet.Web.Models.Helpers
<div class="container">
<h2 class="container-title">Comments</h2>
<div class="container-content">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_s... | @using CkanDotNet.Web.Models.Helpers
<div class="container">
<h2 class="container-title">Comments</h2>
<div class="container-content">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_s... | Add support for dynamic resizing of iframe when disqus forum loads | Add support for dynamic resizing of iframe when disqus forum loads
| C# | apache-2.0 | DenverDev/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API,DenverDev/.NET-Wrapper-for-CKAN-API |
d8559f1ad7670279438d12daabd8eefffee55fdd | uhttpsharp-demo/Program.cs | uhttpsharp-demo/Program.cs | /*
* Copyright (C) 2011 uhttpsharp project - http://github.com/raistlinthewiz/uhttpsharp
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (... | /*
* Copyright (C) 2011 uhttpsharp project - http://github.com/raistlinthewiz/uhttpsharp
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (... | Change the port to 8000 so we can run as non-admin. | Change the port to 8000 so we can run as non-admin.
| C# | lgpl-2.1 | Code-Sharp/uHttpSharp,habibmasuro/uhttpsharp,int6/uhttpsharp,raistlinthewiz/uhttpsharp,lstefano71/uhttpsharp,lstefano71/uhttpsharp,raistlinthewiz/uhttpsharp,int6/uhttpsharp,habibmasuro/uhttpsharp,Code-Sharp/uHttpSharp |
b9f0cb1205f0269aac53387c44c474dab5a1d0d0 | AddIn/Command/MakeGridCommand.cs | AddIn/Command/MakeGridCommand.cs | namespace ExcelX.AddIn.Command
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ExcelX.AddIn.Config;
using Excel = Microsoft.Office.Interop.Excel;
/// <summary>
/// 「方眼紙」コマンド
/// </summary>
public cl... | namespace ExcelX.AddIn.Command
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ExcelX.AddIn.Config;
using Excel = Microsoft.Office.Interop.Excel;
/// <summary>
/// 「方眼紙」コマンド
/// </summary>
public cl... | Fix dependency of environment gap | Fix dependency of environment gap
| C# | mit | garafu/ExcelExtension |
094dfc698fc994fa24f75e3fe272453de853b026 | GitTfs/GitTfsConstants.cs | GitTfs/GitTfsConstants.cs | using System.Text.RegularExpressions;
namespace Sep.Git.Tfs
{
public static class GitTfsConstants
{
public static readonly Regex Sha1 = new Regex("[a-f\\d]{40}", RegexOptions.IgnoreCase);
public static readonly Regex Sha1Short = new Regex("[a-f\\d]{4,40}", RegexOptions.IgnoreCase);
publ... | using System.Text.RegularExpressions;
namespace Sep.Git.Tfs
{
public static class GitTfsConstants
{
public static readonly Regex Sha1 = new Regex("[a-f\\d]{40}", RegexOptions.IgnoreCase);
public static readonly Regex Sha1Short = new Regex("[a-f\\d]{4,40}", RegexOptions.IgnoreCase);
publ... | Create a prefix for Git-Tfs metadata | Create a prefix for Git-Tfs metadata
| C# | apache-2.0 | NathanLBCooper/git-tfs,WolfVR/git-tfs,kgybels/git-tfs,modulexcite/git-tfs,irontoby/git-tfs,steveandpeggyb/Public,bleissem/git-tfs,guyboltonking/git-tfs,adbre/git-tfs,TheoAndersen/git-tfs,modulexcite/git-tfs,bleissem/git-tfs,andyrooger/git-tfs,timotei/git-tfs,kgybels/git-tfs,allansson/git-tfs,timotei/git-tfs,jeremy-sylv... |
375c88a2512fa55f4ec505ce1132b613a735b224 | VkNet/Model/AudioAlbum.cs | VkNet/Model/AudioAlbum.cs | using VkNet.Utils;
namespace VkNet.Model
{
/// <summary>
/// Информация об аудиоальбоме.
/// </summary>
/// <remarks>
/// Страница документации ВКонтакте <see href="http://vk.com/dev/audio.getAlbums"/>.
/// </remarks>
public class AudioAlbum
{
/// <summary>
... | using VkNet.Utils;
namespace VkNet.Model
{
/// <summary>
/// Информация об аудиоальбоме.
/// </summary>
/// <remarks>
/// Страница документации ВКонтакте <see href="http://vk.com/dev/audio.getAlbums"/>.
/// </remarks>
public class AudioAlbum
{
/// <summary>
... | Add support for older versions API | Add support for older versions API
| C# | mit | mainefremov/vk,Soniclev/vk,vknet/vk,kadkin/vk,kkohno/vk,rassvet85/vk,vknet/vk |
04fc6b261c54226c9d8a4f91c9b35cdde5bed1d9 | src/NQuery.Authoring/Completion/Providers/TypeCompletionProvider.cs | src/NQuery.Authoring/Completion/Providers/TypeCompletionProvider.cs | using System;
using System.Collections.Generic;
using System.Linq;
using NQuery.Syntax;
namespace NQuery.Authoring.Completion.Providers
{
internal sealed class TypeCompletionProvider : ICompletionProvider
{
public IEnumerable<CompletionItem> GetItems(SemanticModel semanticModel, int position)
... | using System;
using System.Collections.Generic;
using System.Linq;
using NQuery.Syntax;
namespace NQuery.Authoring.Completion.Providers
{
internal sealed class TypeCompletionProvider : ICompletionProvider
{
public IEnumerable<CompletionItem> GetItems(SemanticModel semanticModel, int position)
... | Fix handling of CAST in type completion provider | Fix handling of CAST in type completion provider
When we are in a CAST expression, we shouldn't return types unless the
position is after the AS keyword. This implies that the AS keyword must
exist.
| C# | mit | terrajobst/nquery-vnext |
824fdc7c2db8a2f92a38e800ba67881478e4a461 | ReportObject.cs | ReportObject.cs | using Microsoft.Office365.ReportingWebServiceClient.Utils;
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
namespace Microsoft.Office365.ReportingWebServiceClient
{
/// <summary>
/// This is representing an object of the RWS Report returned... | using Microsoft.Office365.ReportingWebServiceClient.Utils;
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
namespace Microsoft.Office365.ReportingWebServiceClient
{
/// <summary>
/// This is representing an object of the RWS Report returned... | Test Commit for a GitHub from VS2015 | Test Commit for a GitHub from VS2015
| C# | mit | Microsoft/o365rwsclient |
766e7a1d582e58e8f7e9ea2e9e38a8c549deccc8 | cslatest/Csla.Test/LazyLoad/AParent.cs | cslatest/Csla.Test/LazyLoad/AParent.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace Csla.Test.LazyLoad
{
[Serializable]
public class AParent : Csla.BusinessBase<AParent>
{
private Guid _id;
public Guid Id
{
get { return _id; }
set
{
_id = value;
PropertyHasChanged();
... | using System;
using System.Collections.Generic;
using System.Text;
namespace Csla.Test.LazyLoad
{
[Serializable]
public class AParent : Csla.BusinessBase<AParent>
{
private Guid _id;
public Guid Id
{
get { return _id; }
set
{
_id = value;
PropertyHasChanged();
... | Fix bug with n-level undo of child objects. | Fix bug with n-level undo of child objects.
| C# | mit | rockfordlhotka/csla,JasonBock/csla,JasonBock/csla,JasonBock/csla,jonnybee/csla,rockfordlhotka/csla,MarimerLLC/csla,ronnymgm/csla-light,BrettJaner/csla,MarimerLLC/csla,MarimerLLC/csla,BrettJaner/csla,jonnybee/csla,rockfordlhotka/csla,ronnymgm/csla-light,jonnybee/csla,ronnymgm/csla-light,BrettJaner/csla |
014be649834ed7973de4eca31d1ced814a63dc6c | ExoWeb/Templates/MicrosoftAjax/AjaxPage.cs | ExoWeb/Templates/MicrosoftAjax/AjaxPage.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
namespace ExoWeb.Templates.MicrosoftAjax
{
/// <summary>
/// Microsoft AJAX specific implementation of <see cref="ExoWeb.Templates.Page"/> that supports
/// parsing and loading templates using the Microsoft AJAX... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
namespace ExoWeb.Templates.MicrosoftAjax
{
/// <summary>
/// Microsoft AJAX specific implementation of <see cref="ExoWeb.Templates.Page"/> that supports
/// parsing and loading templates using the Microsoft AJAX... | Check the user-agent string for "Trident" in order to identify IE11 as an IE browser. This is only needed for a workaround for comments within select elements in IE below version 10 and should be abandoned when possible. | Check the user-agent string for "Trident" in order to identify IE11 as an IE browser. This is only needed for a workaround for comments within select elements in IE below version 10 and should be abandoned when possible.
| C# | mit | vc3/ExoWeb,vc3/ExoWeb,vc3/ExoWeb,vc3/ExoWeb,vc3/ExoWeb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.