commit
stringlengths
40
40
subject
stringlengths
4
1.73k
repos
stringlengths
5
127k
old_file
stringlengths
2
751
new_file
stringlengths
2
751
new_contents
stringlengths
1
8.98k
old_contents
stringlengths
0
6.59k
license
stringclasses
13 values
lang
stringclasses
23 values
37eb2410770ce59aa6a7e7c6e681ab4b73bdbad1
Update Mvc.JQuery.Datatables.Example/Views/Home/Index.cshtml
Sohra/mvc.jquery.datatables,mcintyre321/mvc.jquery.datatables,seguemark/mvc.jquery.datatables,seguemark/mvc.jquery.datatables,mcintyre321/mvc.jquery.datatables,mcintyre321/mvc.jquery.datatables,offspringer/mvc.jquery.datatables,Sohra/mvc.jquery.datatables,offspringer/mvc.jquery.datatables
Mvc.JQuery.Datatables.Example/Views/Home/Index.cshtml
Mvc.JQuery.Datatables.Example/Views/Home/Index.cshtml
@{ ViewBag.Title = "title"; } @Html.DataTableIncludes(jqueryUi:false) <script type="text/javascript" src="http://balupton.github.com/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js"></script> <script type="text/javascript"> $.SyntaxHighlighter.init();</script> <h1>Strongly typed datatable exam...
@{ ViewBag.Title = "title"; } @Html.DataTableIncludes(jqueryUi:false) <script type="text/javascript" src="http://balupton.github.com/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js"></script> <script type="text/javascript"> $.SyntaxHighlighter.init();</script> <h1>Strongly typed datatable exam...
mit
C#
719bc5fa6cbc5fa86b4751a23fcc844fad145068
comment out unit test
tinohager/Nager.AmazonProductAdvertising,tinohager/Nager.AmazonProductAdvertising
Nager.AmazonProductAdvertising.UnitTest/AmazonTest.cs
Nager.AmazonProductAdvertising.UnitTest/AmazonTest.cs
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Nager.AmazonProductAdvertising.UnitTest { [TestClass] public class AmazonTest { //[TestMethod] //public void TestMethod1() //{ //} } }
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Nager.AmazonProductAdvertising.UnitTest { [TestClass] public class AmazonTest { [TestMethod] public void TestMethod1() { } } }
mit
C#
c6e3a6f7669b395af5f5945e899b2b31b7f7d0bf
Make "add account" button nonexecutable when running.
decred/Paymetheus,jrick/Paymetheus
Paymetheus/ViewModels/CreateAccountDialogViewModel.cs
Paymetheus/ViewModels/CreateAccountDialogViewModel.cs
// Copyright (c) 2016 The btcsuite developers // Copyright (c) 2016 The Decred developers // Licensed under the ISC license. See LICENSE file in the project root for full license information. using Grpc.Core; using Paymetheus.Framework; using System; using System.Threading.Tasks; using System.Windows; using System.W...
// Copyright (c) 2016 The btcsuite developers // Copyright (c) 2016 The Decred developers // Licensed under the ISC license. See LICENSE file in the project root for full license information. using Paymetheus.Framework; using System; using System.Windows; using System.Windows.Input; namespace Paymetheus.ViewModels ...
isc
C#
a853391e25e2b02c1746adfa059e3266c359f2b5
Update SilentOperationProgressFactory.cs
tiksn/TIKSN-Framework
TIKSN.Core/Progress/SilentOperationProgressFactory.cs
TIKSN.Core/Progress/SilentOperationProgressFactory.cs
namespace TIKSN.Progress { public class SilentOperationProgressFactory : IOperationProgressFactory { public DisposableProgress<OperationProgressReport> Create(string activity, string statusDescription) => new(); } }
namespace TIKSN.Progress { public class SilentOperationProgressFactory : IOperationProgressFactory { public DisposableProgress<OperationProgressReport> Create(string activity, string statusDescription) { return new DisposableProgress<OperationProgressReport>(); } } }
mit
C#
6ba5b34690090f49c3fd5b11ad78a2efcfc5a9ba
Fix MemoryStreamCache bug
yufeih/Common
src/MemoryStreamCache.cs
src/MemoryStreamCache.cs
using System.Threading; using System.Text; namespace System.IO { internal static class MemoryStreamCache { private const int MAX_BUILDER_SIZE = 1024; private const int DEFAULT_CAPACITY = 256; [ThreadStatic] private static MemoryStream t_cachedInstance; public static Me...
using System.Threading; using System.Text; namespace System.IO { internal static class MemoryStreamCache { private const int MAX_BUILDER_SIZE = 1024; private const int DEFAULT_CAPACITY = 256; [ThreadStatic] private static MemoryStream t_cachedInstance; public static Me...
mit
C#
bac1b6cf5df4a2b3d08ad0c9804178bce15fd6e3
Add sample to blogs index
restful-routing/restful-routing,restful-routing/restful-routing,stevehodgkiss/restful-routing,stevehodgkiss/restful-routing,stevehodgkiss/restful-routing,restful-routing/restful-routing
src/RestfulRouting.Sample/Controllers/BlogsController.cs
src/RestfulRouting.Sample/Controllers/BlogsController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web.Mvc; using RestfulRouting.Sample.Infrastructure; using RestfulRouting.Sample.Models; namespace RestfulRouting.Sample.Controllers { public class BlogsController : Controller { protected ActionResult RespondTo(Action<For...
using System.Web.Mvc; using RestfulRouting.Sample.Infrastructure; using RestfulRouting.Sample.Models; namespace RestfulRouting.Sample.Controllers { public class BlogsController : Controller { public ActionResult Index() { return View(SampleData.Blogs()); } public A...
mit
C#
e543a934ab23670ae874feb9bfff41cf1184faff
Remove ViewWillAppear, ViewWillDisappear overrides. Update code style according to guidelines
nervevau2/monotouch-samples,sakthivelnagarajan/monotouch-samples,W3SS/monotouch-samples,kingyond/monotouch-samples,W3SS/monotouch-samples,haithemaraissia/monotouch-samples,andypaul/monotouch-samples,robinlaide/monotouch-samples,andypaul/monotouch-samples,W3SS/monotouch-samples,davidrynn/monotouch-samples,haithemaraissi...
CoreAnimation/Screens/iPad/NavTable/MasterNavTableViewController.cs
CoreAnimation/Screens/iPad/NavTable/MasterNavTableViewController.cs
using System; using MonoTouch.UIKit; using System.Collections.Generic; using Example_CoreAnimation.Code.NavigationTable; namespace Example_CoreAnimation.Screens.iPad.NavTable { public class MasterNavTableViewController : UITableViewController { public event EventHandler<RowClickedEventArgs> RowClicked; private ...
using System; using MonoTouch.UIKit; using System.Collections.Generic; using Example_CoreAnimation.Code.NavigationTable; namespace Example_CoreAnimation.Screens.iPad.NavTable { public class MasterNavTableViewController : UITableViewController { public event EventHandler<RowClickedEventArgs> RowClicked; // d...
mit
C#
f98e3505d30cf162caf24e6d18fd8712dea92f75
Improve logging
arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5
src/Arkivverket.Arkade.CLI/MetadataExampleGenerator.cs
src/Arkivverket.Arkade.CLI/MetadataExampleGenerator.cs
using System; using System.IO; using Arkivverket.Arkade.Core.Base; using Arkivverket.Arkade.Core.Metadata; using Arkivverket.Arkade.Core.Util; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Serilog; namespace Arkivverket.Arkade.CLI { internal class MetadataExampleGenerator { public void...
using System; using System.IO; using Arkivverket.Arkade.Core.Base; using Arkivverket.Arkade.Core.Metadata; using Arkivverket.Arkade.Core.Util; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Serilog; namespace Arkivverket.Arkade.CLI { internal class MetadataExampleGenerator { public void...
agpl-3.0
C#
16c6d41e09f33d833e6238066c3ab6f952215620
Change DatabaseContextFactory to use IServiceScopeFactory. Perform some constructor time validation
Cyberboss/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,Cyberboss/tgstation-server,tgstation/tgstation-server
src/Tgstation.Server.Host/Core/DatabaseContextFactory.cs
src/Tgstation.Server.Host/Core/DatabaseContextFactory.cs
using Microsoft.Extensions.DependencyInjection; using System; using System.Threading.Tasks; using Tgstation.Server.Host.Models; namespace Tgstation.Server.Host.Core { /// <inheritdoc /> sealed class DatabaseContextFactory : IDatabaseContextFactory { /// <summary> /// The <see cref="IServiceScopeFactory"/> for ...
using Microsoft.Extensions.DependencyInjection; using System; using System.Threading.Tasks; using Tgstation.Server.Host.Models; namespace Tgstation.Server.Host.Core { /// <inheritdoc /> sealed class DatabaseContextFactory : IDatabaseContextFactory { /// <summary> /// The <see cref="IServiceProvider"/> for the ...
agpl-3.0
C#
8c7c14694353f4b79db43e1174ba36b3d5d25b33
Fix unset MySqlServerVersion error
Cyberboss/tgstation-server,Cyberboss/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools
src/Tgstation.Server.Host/Models/MySqlDatabaseContext.cs
src/Tgstation.Server.Host/Models/MySqlDatabaseContext.cs
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Pomelo.EntityFrameworkCore.MySql.Infrastructure; using System; using Tgstation.Server.Host.Configuration; namespace Tgstation.Server.Host.Models { /// <summary> /// <see cref="DatabaseContext{TParentCo...
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Pomelo.EntityFrameworkCore.MySql.Infrastructure; using System; using Tgstation.Server.Host.Configuration; namespace Tgstation.Server.Host.Models { /// <summary> /// <see cref="DatabaseContext{TParentCo...
agpl-3.0
C#
e5954753969b6551376e97e79220a4ab2d0d437d
Make sealed
weltkante/roslyn,jasonmalinowski/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,bartdesmet/roslyn,weltkante/roslyn,CyrusNajmabadi/roslyn,dotnet/roslyn,CyrusNajmabadi/roslyn,jasonmalinowski/roslyn,shyamnamboodiripad/roslyn,mavasani/roslyn,weltkante/roslyn,bartdesmet/roslyn,dotn...
src/Workspaces/Remote/Core/SolutionAssetStorage.Scope.cs
src/Workspaces/Remote/Core/SolutionAssetStorage.Scope.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Remote { internal partial class Solutio...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Remote { internal partial class Solutio...
mit
C#
335b9f893a9243e6daa53faceda25002fa28e62d
Add TODO
OvidiuCaba/StatisticsRomania,OvidiuCaba/StatisticsRomania,OvidiuCaba/StatisticsRomania,OvidiuCaba/StatisticsRomania
src/WebClient/Program.cs
src/WebClient/Program.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; // TODO: Ar fi interesant o statistica pe tot anul, mai ales cele care s-au incheiat. Nu doar pe luni. [de la Sabin Uivarosan] // TODO: Acum daca faci si totalul/media a...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; // TODO: Ar fi interesant o statistica pe tot anul, mai ales cele care s-au incheiat. Nu doar pe luni. [de la Sabin Uivarosan] namespace WebClient { public class Pr...
mit
C#
39c154b6ffda8e85d3ca24bf9961aee3f3efb7ea
Add docs
AmadeusW/roslyn,davkean/roslyn,genlu/roslyn,shyamnamboodiripad/roslyn,jmarolf/roslyn,mavasani/roslyn,mgoertz-msft/roslyn,bartdesmet/roslyn,ErikSchierboom/roslyn,ErikSchierboom/roslyn,stephentoub/roslyn,wvdd007/roslyn,eriawan/roslyn,diryboy/roslyn,brettfo/roslyn,jmarolf/roslyn,aelij/roslyn,eriawan/roslyn,KevinRansom/ros...
src/Workspaces/Core/Portable/Remote/RemoteUtilities.cs
src/Workspaces/Core/Portable/Remote/RemoteUtilities.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnaly...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnaly...
mit
C#
d8f669d084680b6ec0cddd85b6443559f17090ac
Add some strong type APIs instead of the NSDictionary ways
kangaroo/monomac,dlech/monomac,PlayScriptRedux/monomac
src/QTKit/QTMovie.cs
src/QTKit/QTMovie.cs
// // Copyright 2010, Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, ...
// // Copyright 2010, Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, ...
apache-2.0
C#
923fa211a05663524689e132b1967c08df613dad
Rearrange code.
ctigeek/FileAuditManager
src/WebAppStartup.cs
src/WebAppStartup.cs
using System.Net; using FileAuditManager.Controllers.Registration; using FileAuditManager.Controllers.Validation; using log4net; using Owin; using FileAuditManager.Logging; namespace FileAuditManager { public class WebAppStartup { private static readonly ILog Log = LogManager.GetLogger(type...
using System.Net; using FileAuditManager.Controllers.Registration; using FileAuditManager.Controllers.Validation; using log4net; using Owin; using FileAuditManager.Logging; namespace FileAuditManager { public class WebAppStartup { private static readonly ILog Log = LogManager.GetLogger(type...
mit
C#
5690810c982ffdcbe47dd335f3165fc2a1f493ff
Revert "postsharp disposable"
Softlr/selenium-webdriver-extensions,Softlr/Selenium.WebDriver.Extensions,Softlr/selenium-webdriver-extensions,RaYell/selenium-webdriver-extensions
test/Selenium.WebDriver.Extensions.IntegrationTests/TestsBase.cs
test/Selenium.WebDriver.Extensions.IntegrationTests/TestsBase.cs
namespace Selenium.WebDriver.Extensions.IntegrationTests { using System; using System.Diagnostics.CodeAnalysis; using Nancy.Hosting.Self; using OpenQA.Selenium; [ExcludeFromCodeCoverage] public abstract class TestsBase : IDisposable { private readonly NancyHost _host; privat...
namespace Selenium.WebDriver.Extensions.IntegrationTests { using System; using System.Diagnostics.CodeAnalysis; using JetBrains.Annotations; using Nancy.Hosting.Self; using OpenQA.Selenium; using PostSharp.Patterns.Model; [Disposable] [PublicAPI] [ExcludeFromCodeCoverage] public...
apache-2.0
C#
af8972c85c60db4f360bc2dd3d28427940a4e2b7
Change default find country code
markashleybell/MAB.PCAPredictCapturePlus,markashleybell/MAB.PCAPredictCapturePlus,markashleybell/MAB.PCAPredictCapturePlus
MAB.PCAPredictCapturePlus.TestHarness/Controllers/HomeController.cs
MAB.PCAPredictCapturePlus.TestHarness/Controllers/HomeController.cs
using System.Configuration; using System.Linq; using System.Web.Mvc; namespace MAB.PCAPredictCapturePlus.TestHarness.Controllers { public class HomeController : Controller { private CapturePlusClient _client = new CapturePlusClient( apiVersion: "2.10", key: ConfigurationManager...
using System.Configuration; using System.Linq; using System.Web.Mvc; namespace MAB.PCAPredictCapturePlus.TestHarness.Controllers { public class HomeController : Controller { private CapturePlusClient _client = new CapturePlusClient( apiVersion: "2.10", key: ConfigurationManager...
mit
C#
94d1057e37c1f6a9afba069cf232b00634d50b73
Remove AppVeyor mention from docs [build-doc]
k94ll13nn3/Strinken
docs/input/index.cshtml
docs/input/index.cshtml
Title: Home NoSidebar: true NoContainer: true NoGutter: true --- <div class="jumbotron"> <div class="container"> <h1>A parametrized string library!</h1> </div> <br/> <br/> <div class="container"> <p> <h3><strong>Strinken</strong> is focused on giving the possibility to th...
Title: Home NoSidebar: true NoContainer: true NoGutter: true --- <div class="jumbotron"> <div class="container"> <h1>A parametrized string library!</h1> </div> <br/> <br/> <div class="container"> <p> <h3><strong>Strinken</strong> is focused on giving the possibility to th...
mit
C#
343246995ba98a6e1549e5099f895ec3e51b14fd
Update IPathConverter.cs
wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Core2D/Model/IPathConverter.cs
src/Core2D/Model/IPathConverter.cs
#nullable enable using System.Collections.Generic; using Core2D.Model.Renderer; using Core2D.ViewModels.Shapes; namespace Core2D.Model; public interface IPathConverter { PathShapeViewModel? ToPathShape(ISet<BaseShapeViewModel>? shapes); PathShapeViewModel? ToPathShape(BaseShapeViewModel? shape); PathSh...
#nullable enable using System.Collections.Generic; using Core2D.Model.Renderer; using Core2D.ViewModels.Shapes; namespace Core2D.Model; public interface IPathConverter { PathShapeViewModel? ToPathShape(IEnumerable<BaseShapeViewModel>? shapes); PathShapeViewModel? ToPathShape(BaseShapeViewModel? shape); ...
mit
C#
3933dd2138fbf9d7af8ce49144574da58251df7b
Allow player to walk through unlocked doors
jooeycheng/xna-prison-break-game,hhoulin94/game-algo-assignment,jooeycheng/game-algo-assignment
Game_Algo/Game_Algo/Tile.cs
Game_Algo/Game_Algo/Tile.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Game_Algo { class Tile { /// <summary> /// 0 - Floor /// 1 - Wall /// </summary> public int TypeId { get; set; } public Tile(int MapCellId) { thi...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Game_Algo { class Tile { /// <summary> /// 0 - Floor /// 1 - Wall /// </summary> public int TypeId { get; set; } public Tile(int MapCellId) { thi...
mit
C#
a00b7c3d6f116081ac438466888a08040d83fe8c
Add implicit cast to ServiceObject.
FacilityApi/FacilityCSharp
src/Facility.Core/ServiceObject.cs
src/Facility.Core/ServiceObject.cs
using System.Diagnostics.CodeAnalysis; using System.Text.Json.Nodes; using Newtonsoft.Json.Linq; namespace Facility.Core; /// <summary> /// Encapsulates a JSON object. /// </summary> [Newtonsoft.Json.JsonConverter(typeof(ServiceObjectNewtonsoftJsonConverter))] [System.Text.Json.Serialization.JsonConverter(typeof(Serv...
using System.Diagnostics.CodeAnalysis; using System.Text.Json.Nodes; using Newtonsoft.Json.Linq; namespace Facility.Core; /// <summary> /// Encapsulates a JSON object. /// </summary> [Newtonsoft.Json.JsonConverter(typeof(ServiceObjectNewtonsoftJsonConverter))] [System.Text.Json.Serialization.JsonConverter(typeof(Serv...
mit
C#
f4f7712da429814945df87fd51c7a0c07e71c5c5
Add Id to SettingsPageViewModel
File-New-Project/EarTrumpet
EarTrumpet/UI/ViewModels/SettingsPageViewModel.cs
EarTrumpet/UI/ViewModels/SettingsPageViewModel.cs
using System; using EarTrumpet.UI.Helpers; using EarTrumpet.UI.ViewModels; namespace EarTrumpet.UI.ViewModels { // Intended to be used as a base class for every type of settings page public class SettingsPageViewModel : BindableBase { public static readonly string DefaultManagementGroupName = Pro...
using System; using EarTrumpet.UI.Helpers; using EarTrumpet.UI.ViewModels; namespace EarTrumpet.UI.ViewModels { // Intended to be used as a base class for every type of settings page public class SettingsPageViewModel : BindableBase { public static readonly string DefaultManagementGroupName = Pro...
mit
C#
4e54d94746f63b239509c2f8670d6a1d30ec7cb4
use the settings for properties
viktorbalog/Maileon
MaileonTests/MaileonContactFiltersServiceTests.cs
MaileonTests/MaileonContactFiltersServiceTests.cs
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using Maileon; using Maileon.Contactfilters; namespace MaileonTests { [TestClass] public class MaileonContactFiltersServiceTests { protected MaileonContactFiltersService service; public MaileonContactFiltersServiceTests() ...
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using Maileon; using Maileon.Contactfilters; namespace MaileonTests { [TestClass] public class MaileonContactFiltersServiceTests { protected MaileonContactFiltersService service; protected const string BASE_URI = "https://a...
mit
C#
3a9f53ce72212f9a1bbc2cdc821eae67f9a369ff
bump version
chinaboard/PureCat
PureCat/Properties/AssemblyInfo.cs
PureCat/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // 有关程序集的一般信息由以下 // 控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("PureCat")] [assembly: AssemblyDescription("Cat.Net Client")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] ...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // 有关程序集的一般信息由以下 // 控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("PureCat")] [assembly: AssemblyDescription("Cat.Net Client")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] ...
mit
C#
063e0d460182cbaea49cf8f161c14c0f395102a2
Make logging configurable by external consumers
young-zhang/Lean,young-zhang/Lean,bizcad/LeanJJN,devalkeralia/Lean,bdilber/Lean,Mendelone/forex_trading,Jay-Jay-D/LeanSTP,jameschch/Lean,redmeros/Lean,Mendelone/forex_trading,Jay-Jay-D/LeanSTP,bizcad/Lean,Obawoba/Lean,bdilber/Lean,kaffeebrauer/Lean,AnObfuscator/Lean,bizcad/Lean,QuantConnect/Lean,tomhunter-gh/Lean,bizca...
QuantConnect.ToolBox/Log.cs
QuantConnect.ToolBox/Log.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QuantConnect.ToolBox { /// <summary> /// Provides time stamped writing to the console /// </summary> public static class Log { /// <summary> /// Defines the...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QuantConnect.ToolBox { /// <summary> /// Provides time stamped writing to the console /// </summary> public static class Log { /// <summary> /// Writes the ...
apache-2.0
C#
b2a3f8a99d9e271c722139e5ca54b26b7a76e734
Update ValidatorFactory.cs
bruce-dunwiddie/ReflectionPresentation
ReflectionPresentation/06_Loading/ValidatorFactory.cs
ReflectionPresentation/06_Loading/ValidatorFactory.cs
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using ReflectionPresentation.Invocation; namespace ReflectionPresentation.Loading { /// <summary> /// Class definition that will be shared across app domains //...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using ReflectionPresentation.Invocation; namespace ReflectionPresentation.Loading { /// <summary> /// Class definition that will be shared across app domains //...
apache-2.0
C#
760d0389fe535d006759bdc0fb6089309a780180
Update InsertingARow.cs
aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,as...
Examples/CSharp/RowsColumns/InsertingAndDeleting/InsertingARow.cs
Examples/CSharp/RowsColumns/InsertingAndDeleting/InsertingARow.cs
using System.IO; using Aspose.Cells; namespace Aspose.Cells.Examples.RowsColumns.InsertingAndDeleting { public class InsertingARow { public static void Main(string[] args) { // ExStart:1 // The path to the documents directory. string dataDir = Aspose.Cells.E...
using System.IO; using Aspose.Cells; namespace Aspose.Cells.Examples.RowsColumns.InsertingAndDeleting { public class InsertingARow { public static void Main(string[] args) { // The path to the documents directory. string dataDir = Aspose.Cells.Examples.Utils.GetDataDir(...
mit
C#
e89a363e68c968467755a848e72bcb189e9c3a89
Rename HashSet cross product test
StanJav/language-ext,louthy/language-ext
LanguageExt.Tests/Transformer/Traverse/Lst/Collections/HashSet.cs
LanguageExt.Tests/Transformer/Traverse/Lst/Collections/HashSet.cs
using Xunit; using Xunit.Abstractions; using static LanguageExt.Prelude; namespace LanguageExt.Tests.Transformer.Traverse.Lst.Collections { public class HashSetLst { private readonly ITestOutputHelper _log; public HashSetLst(ITestOutputHelper log) => _log = log; [Fact] public v...
using Xunit; using Xunit.Abstractions; using static LanguageExt.Prelude; namespace LanguageExt.Tests.Transformer.Traverse.Lst.Collections { public class HashSetLst { private readonly ITestOutputHelper _log; public HashSetLst(ITestOutputHelper log) => _log = log; [Fact] public v...
mit
C#
b6b7e17fc63abbfcad8ba3587c27cd4263cf5cdd
Remove properties from interface as they are no longer needed
liemqv/EventFlow,AntoineGa/EventFlow,rasmus/EventFlow
Source/EventFlow/EventStores/ICommittedDomainEvent.cs
Source/EventFlow/EventStores/ICommittedDomainEvent.cs
// The MIT License (MIT) // // Copyright (c) 2015 Rasmus Mikkelsen // https://github.com/rasmus/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in // the Software without restriction, including...
// The MIT License (MIT) // // Copyright (c) 2015 Rasmus Mikkelsen // https://github.com/rasmus/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in // the Software without restriction, including...
mit
C#
54cca3d74ec7b75e1a81ab1e48528d9262902023
Update RavenUnitOfWorkFactoryBase.cs
tiksn/TIKSN-Framework
TIKSN.Core/Data/RavenDB/RavenUnitOfWorkFactoryBase.cs
TIKSN.Core/Data/RavenDB/RavenUnitOfWorkFactoryBase.cs
using System; using Microsoft.Extensions.Options; using Raven.Client.Documents; namespace TIKSN.Data.RavenDB { public abstract class RavenUnitOfWorkFactoryBase<TUnitOfWork> : IRavenUnitOfWorkFactory<TUnitOfWork>, IDisposable where TUnitOfWork : IUnitOfWork { private readonly IDocumentStore _st...
using Microsoft.Extensions.Options; using Raven.Client.Documents; using System; namespace TIKSN.Data.RavenDB { public abstract class RavenUnitOfWorkFactoryBase<TUnitOfWork> : IRavenUnitOfWorkFactory<TUnitOfWork>, IDisposable where TUnitOfWork : IUnitOfWork { private readonly IDocumentStore _st...
mit
C#
6eae82fb43706a4aadbf41960bf20785bb2f68b1
fix env variable
Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek
Tweek.ApiService.SmokeTests/TweekApiServiceFactory.cs
Tweek.ApiService.SmokeTests/TweekApiServiceFactory.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using RestEase; namespace Tweek.ApiService.SmokeTests { public static class TweekApiServiceFactory { public static ITweekApi GetTweekApiClient() { var targetBaseUrl =...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using RestEase; namespace Tweek.ApiService.SmokeTests { public static class TweekApiServiceFactory { public static ITweekApi GetTweekApiClient() { var targetBaseUrl =...
mit
C#
7cca200ba707fe7f38cdeca5d8ebbee8c5a8208e
Fix return values in ReferenceDataWriteServiceHostFactory
AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud
src/server/Adaptive.ReactiveTrader.Server.ReferenceDataWrite/ReferenceDataWriteServiceHostFactory.cs
src/server/Adaptive.ReactiveTrader.Server.ReferenceDataWrite/ReferenceDataWriteServiceHostFactory.cs
using Adaptive.ReactiveTrader.Common; using Adaptive.ReactiveTrader.EventStore.Connection; using Adaptive.ReactiveTrader.EventStore.Domain; using Adaptive.ReactiveTrader.Messaging; using Adaptive.ReactiveTrader.Server.Core; using Common.Logging; using EventStore.ClientAPI; using System; using System.Reactive.Disposable...
using System; using System.Reactive.Disposables; using System.Threading.Tasks; using Adaptive.ReactiveTrader.Common; using Adaptive.ReactiveTrader.EventStore; using Adaptive.ReactiveTrader.EventStore.Connection; using Adaptive.ReactiveTrader.EventStore.Domain; using Adaptive.ReactiveTrader.Messaging; using Adaptive.Rea...
apache-2.0
C#
8f6ac096ce7b7b9e0b475e53a2857d84df57cce7
Update Cake.Issues.Recipe to 0.4.3
cake-contrib/Cake.Recipe,cake-contrib/Cake.Recipe
Cake.Recipe/Content/addins.cake
Cake.Recipe/Content/addins.cake
/////////////////////////////////////////////////////////////////////////////// // ADDINS /////////////////////////////////////////////////////////////////////////////// #addin nuget:?package=Cake.Codecov&version=0.9.1 #addin nuget:?package=Cake.Coveralls&version=0.10.2 #addin nuget:?package=Cake.Coverlet&version=2.5....
/////////////////////////////////////////////////////////////////////////////// // ADDINS /////////////////////////////////////////////////////////////////////////////// #addin nuget:?package=Cake.Codecov&version=0.9.1 #addin nuget:?package=Cake.Coveralls&version=0.10.2 #addin nuget:?package=Cake.Coverlet&version=2.5....
mit
C#
bee49608f61ce18e68d54ff2c4ba6e42d2a3f51e
Update the appdelegate to make sure FreshEssentials is deployed
coatsy/xplat-graph
src/ExcelFormsTest/ExcelFormsTest/ExcelFormsTest.iOS/AppDelegate.cs
src/ExcelFormsTest/ExcelFormsTest/ExcelFormsTest.iOS/AppDelegate.cs
using System; using System.Collections.Generic; using System.Linq; using Foundation; using UIKit; namespace ExcelFormsTest.iOS { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as listening (and optionally responding...
using System; using System.Collections.Generic; using System.Linq; using Foundation; using UIKit; namespace ExcelFormsTest.iOS { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as listening (and optionally responding...
mit
C#
c22b4fda29da2671c6229f4fd474304d744ca946
Fix auto-prefixing of address URL
openchargemap/ocm-system,openchargemap/ocm-system,openchargemap/ocm-system,openchargemap/ocm-system
API/OCM.Net/OCM.API.Core/Common/Extensions/AddressInfo.cs
API/OCM.Net/OCM.API.Core/Common/Extensions/AddressInfo.cs
using System; using System.Collections.Generic; using System.Linq; namespace OCM.API.Common.Model.Extensions { public class AddressInfo { public static Model.AddressInfo FromDataModel(Core.Data.AddressInfo source, bool isVerboseMode) { if (source == null) return null; ...
using System; using System.Collections.Generic; using System.Linq; namespace OCM.API.Common.Model.Extensions { public class AddressInfo { public static Model.AddressInfo FromDataModel(Core.Data.AddressInfo source, bool isVerboseMode) { if (source == null) return null; ...
mit
C#
657fc9fbe26c1f2c9029df1a8080a6a9306cc7a9
Rename Entitiy to Entity.
sschmid/Entitas-CSharp,sschmid/Entitas-CSharp
Entitas/Entitas/Group/IGroup.cs
Entitas/Entitas/Group/IGroup.cs
namespace Entitas { public delegate void GroupChanged<TEntity>( IGroup<TEntity> group, TEntity entity, int index, IComponent component ) where TEntity : class, IEntity, new(); public delegate void GroupUpdated<TEntity>( IGroup<TEntity> group, TEntity entity, int index, IComponent p...
namespace Entitas { public delegate void GroupChanged<TEntitiy>( IGroup<TEntitiy> group, TEntitiy entity, int index, IComponent component ) where TEntitiy : class, IEntity, new(); public delegate void GroupUpdated<TEntitiy>( IGroup<TEntitiy> group, TEntitiy entity, int index, IComp...
mit
C#
76300d5df5c7452942cc35689592f4f665fe334b
Increment version
SeatwaveOpenSource/psakify,SeatwaveOpenSource/psakify,SeatwaveOpenSource/psakify
psakify/Properties/AssemblyInfo.cs
psakify/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
mit
C#
bc5596e81eb68b981db6e9aab72a0f2a4e823d8f
Use net4+ validation API on SimpleConfig, so we have detailed error messages.
evicertia/HermaFx,evicertia/HermaFx,evicertia/HermaFx
HermaFx.SimpleConfig/CompositeConfigurationValidator.cs
HermaFx.SimpleConfig/CompositeConfigurationValidator.cs
using System; using System.ComponentModel.DataAnnotations; using System.Configuration; using System.Linq; using System.Text; namespace HermaFx.SimpleConfig { internal class CompositeConfigurationValidator : ConfigurationValidatorBase { private readonly ValidationAttribute[] _validationAttributes; ...
using System; using System.ComponentModel.DataAnnotations; using System.Configuration; using System.Linq; using System.Text; namespace HermaFx.SimpleConfig { internal class CompositeConfigurationValidator : ConfigurationValidatorBase { private readonly ValidationAttribute[] _validationAttributes; ...
mit
C#
e0e0176e627e7f37eea9f327bf132f733c6ac292
Add tests
openstardrive/server,openstardrive/server,openstardrive/server
OpenStardriveServer.UnitTests/StandardTransformsTest.cs
OpenStardriveServer.UnitTests/StandardTransformsTest.cs
using OpenStardriveServer.Domain.Systems; using OpenStardriveServer.Domain.Systems.Standard; namespace OpenStardriveServer.UnitTests; public abstract class StandardTransformsTest<T, TState> : WithAnAutomocked<T> where T : IStandardTransforms<TState> where TState : StandardSystemBaseState { protected void ...
using OpenStardriveServer.Domain.Systems; using OpenStardriveServer.Domain.Systems.Standard; namespace OpenStardriveServer.UnitTests; public abstract class StandardTransformsTest<T, TState> : WithAnAutomocked<T> where T : IStandardTransforms<TState> where TState : StandardSystemBaseState { protected void ...
apache-2.0
C#
40b0e04e3e78e97ba4b27706e28cab9f13e32a57
Add fields related to 5b3c493
Zalodu/Schedutalk,Zalodu/Schedutalk
Schedutalk/Schedutalk/Schedutalk/Logic/KTHPlaces/RoomDataContract.cs
Schedutalk/Schedutalk/Schedutalk/Logic/KTHPlaces/RoomDataContract.cs
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace Schedutalk.Logic.KTHPlaces { [DataContract] public class RoomDataContract { [DataMember(Name = "floorUid")] public string FloorU...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace Schedutalk.Logic.KTHPlaces { [DataContract] public class RoomDataContract { [DataMember(Name = "floorUid")] public string FloorU...
mit
C#
60ccf906a200edd4ff4725fd2712c5a30f3facc7
Rename NetDisk.Plus.NetDiskModule to NetDisk.Plus.NetDiskPlusModule.
ResourceHunter/BaiduPanDownloadWpf
Source/Accelerider.Windows.Modules.NetDisk.Plus/NetDiskPlusModule.cs
Source/Accelerider.Windows.Modules.NetDisk.Plus/NetDiskPlusModule.cs
using Accelerider.Windows.Infrastructure; using Microsoft.Practices.Unity; using Prism.Regions; namespace Accelerider.Windows.Modules.NetDisk.Plus { public class NetDiskPlusModule : ModuleBase { private readonly IRegionManager _regionManager; public NetDiskPlusModule(IUnityContainer container...
using Accelerider.Windows.Infrastructure; using Microsoft.Practices.Unity; using Prism.Regions; namespace Accelerider.Windows.Modules.NetDisk.Plus { public class NetDiskModule : ModuleBase { private readonly IRegionManager _regionManager; public NetDiskModule(IUnityContainer container, IRegio...
mit
C#
0eb82c3cb69be9d6d5a48158b70056ca31f3d0a7
Fix for persisting the known devices.
SamDel/ChromeCast-Desktop-Audio-Streamer
Source/ChromeCast.Desktop.AudioStreamer/Discover/DiscoveredDevice.cs
Source/ChromeCast.Desktop.AudioStreamer/Discover/DiscoveredDevice.cs
using ChromeCast.Desktop.AudioStreamer.Application; using System.Xml.Serialization; namespace ChromeCast.Desktop.AudioStreamer.Discover { public class DiscoveredDevice { private const string GroupIdentifier = "\"md=Google Cast Group\""; public string Name { get; set; } public string I...
using ChromeCast.Desktop.AudioStreamer.Application; namespace ChromeCast.Desktop.AudioStreamer.Discover { public class DiscoveredDevice { private const string GroupIdentifier = "\"md=Google Cast Group\""; public string Name { get; set; } public string IPAddress { get; set; } p...
mit
C#
fcc131c5254cb0cd93f8092b601266fdbe073bc2
Work around for mono failing to clear struct fields by default.
dotnetbio/bio
bio/Source/Framework/Bio/Algorithms/SuffixTree/MultiWaySuffixEdge.cs
bio/Source/Framework/Bio/Algorithms/SuffixTree/MultiWaySuffixEdge.cs
using System.Diagnostics; namespace Bio.Algorithms.SuffixTree { /// <summary> /// Structure to hold the suffix edge information. /// </summary> [DebuggerDisplay("StartIndex= {StartIndex}, IsLeaf= {IsLeaf}")] public struct MultiWaySuffixEdge { /// <summary> /// Gets o...
using System.Diagnostics; namespace Bio.Algorithms.SuffixTree { /// <summary> /// Structure to hold the suffix edge information. /// </summary> [DebuggerDisplay("StartIndex= {StartIndex}, IsLeaf= {IsLeaf}")] public struct MultiWaySuffixEdge { /// <summary> /// Gets o...
apache-2.0
C#
388679a20f2e7ce7446c9d03fb88a912ff401a3b
Change the padding on the exception message
infinity8/StructuredXmlEditor
StructuredXmlEditor/App.xaml.cs
StructuredXmlEditor/App.xaml.cs
using StructuredXmlEditor.View; using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; using System.Windows; namespace StructuredXmlEditor { /// <summary> /// Interaction logic f...
using StructuredXmlEditor.View; using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; using System.Windows; namespace StructuredXmlEditor { /// <summary> /// Interaction logic f...
apache-2.0
C#
e92b6f10736bb3ad2ca917348c68735d021f815e
Update FirstReverse.cs
michaeljwebb/Algorithm-Practice
Coderbyte/FirstReverse.cs
Coderbyte/FirstReverse.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; public class FirstReverse { static void Main(string[] args) { Console.WriteLine(First_Reverse(Console.ReadLine())); } public static string First_Reverse(string str) ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; class FirstReverse { static void Main(string[] args) { Console.WriteLine(First_Reverse(Console.ReadLine())); } public static string First_Reverse(string str) { ...
mit
C#
805d72a7d89d5c64788a13e84af3d1de62977851
Add a link to "about trac" on the trac version number at the end
rbaumg/trac,rbaumg/trac,rbaumg/trac,rbaumg/trac
templates/footer.cs
templates/footer.cs
<script type="text/javascript">searchHighlight()</script> <?cs if:len(links.alternate) ?> <div id="altlinks"> <h3>Download in other formats:</h3> <ul><?cs each:link = links.alternate ?> <li<?cs if:name(link) == len(links.alternate) - #1 ?> class="last"<?cs /if ?>> <a href="<?cs var:link.href ?>"<?cs if:link.cla...
<script type="text/javascript">searchHighlight()</script> <?cs if:len(links.alternate) ?> <div id="altlinks"> <h3>Download in other formats:</h3> <ul><?cs each:link = links.alternate ?> <li<?cs if:name(link) == len(links.alternate) - #1 ?> class="last"<?cs /if ?>> <a href="<?cs var:link.href ?>"<?cs if:link.cla...
bsd-3-clause
C#
e709604710992be04e8c10f78aa745e9cae84542
Fix users controller.
BibliothecaTeam/Bibliotheca.Server.Gateway,BibliothecaTeam/Bibliotheca.Server.Gateway
src/Bibliotheca.Server.Gateway.Api/Controllers/UsersController.cs
src/Bibliotheca.Server.Gateway.Api/Controllers/UsersController.cs
using System.Collections.Generic; using System.Threading.Tasks; using Bibliotheca.Server.Gateway.Core.DataTransferObjects; using Bibliotheca.Server.Gateway.Core.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Bibliotheca.Server.Gateway.Api.Controllers { [Authorize] ...
using System.Collections.Generic; using System.Threading.Tasks; using Bibliotheca.Server.Gateway.Core.DataTransferObjects; using Bibliotheca.Server.Gateway.Core.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Bibliotheca.Server.Gateway.Api.Controllers { [Authorize] ...
mit
C#
0c5aae53143701ed71324cbf35e23e335475eece
Fix MySqlQuoterTest quote value char
spaccabit/fluentmigrator,spaccabit/fluentmigrator
src/FluentMigrator.Tests/Unit/Generators/MySql/MySqlQuoterTest.cs
src/FluentMigrator.Tests/Unit/Generators/MySql/MySqlQuoterTest.cs
using System; using System.Globalization; using System.Threading; using FluentMigrator.Model; using FluentMigrator.Runner.Generators; using FluentMigrator.Runner.Generators.Generic; using FluentMigrator.Runner.Generators.Jet; using FluentMigrator.Runner.Generators.MySql; using FluentMigrator.Runner.Generators.Oracle; ...
using System; using System.Globalization; using System.Threading; using FluentMigrator.Model; using FluentMigrator.Runner.Generators; using FluentMigrator.Runner.Generators.Generic; using FluentMigrator.Runner.Generators.Jet; using FluentMigrator.Runner.Generators.MySql; using FluentMigrator.Runner.Generators.Oracle; ...
apache-2.0
C#
550ed92de43a9ab34305f906cba1403c838147af
Implement standard disposal pattern, add null-conditional
ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ZLima12/osu-framework
osu.Framework/Graphics/Textures/ArrayPoolTextureUpload.cs
osu.Framework/Graphics/Textures/ArrayPoolTextureUpload.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Buffers; using osu.Framework.Graphics.Primitives; using osuTK.Graphics.ES30; using SixLabors.ImageSharp.Memory; using SixLabors.ImageSharp.Pixe...
// 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.Buffers; using osu.Framework.Graphics.Primitives; using osuTK.Graphics.ES30; using SixLabors.ImageSharp.Memory; using SixLabors.ImageSharp.Pixe...
mit
C#
021a11609326c10de152d53963c04bebc2a77e21
Add extra xmldoc covering the fact that MatchStarted is received by all users
UselessToucan/osu,peppy/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,ppy/osu
osu.Game/Online/RealtimeMultiplayer/IMultiplayerClient.cs
osu.Game/Online/RealtimeMultiplayer/IMultiplayerClient.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.Threading.Tasks; namespace osu.Game.Online.RealtimeMultiplayer { /// <summary> /// An interface defining a multiplayer client instance. /// </su...
// 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.Threading.Tasks; namespace osu.Game.Online.RealtimeMultiplayer { /// <summary> /// An interface defining a multiplayer client instance. /// </su...
mit
C#
0a2603015e3c1c2267842127b022fc48bc4f9556
simplify jsondeserializer
ceee/UptimeSharp
UptimeSharp/JsonDeserializer.cs
UptimeSharp/JsonDeserializer.cs
using RestSharp; using RestSharp.Deserializers; using ServiceStack.Text; using System; using System.Net; namespace UptimeSharp { /// <summary> /// Custom JSON Deserializer which implements ServiceStack.Text /// </summary> internal class JsonDeserializer : IDeserializer { public const string JsonContentT...
using RestSharp; using RestSharp.Deserializers; using ServiceStack.Text; using System; using System.Net; namespace UptimeSharp { /// <summary> /// Custom JSON Deserializer which implements ServiceStack.Text /// </summary> internal class JsonDeserializer : IDeserializer { public const string JsonContentT...
mit
C#
c77db02f43c7cf5fed481dfb001782bd7ef2b0f2
Update TerminalBlockInspector.cs
Pharap/SpengyUtils
Utils/TerminalBlockInspector.cs
Utils/TerminalBlockInspector.cs
// Lists all actions and properties of a terminal block public void Main(string argument) { var block = GridTerminalSystem.GetBlockWithName(argument) as IMyTerminalBlock; var builder = new StringBuilder(); builder.AppendLine("Actions"); var actions = new List<ITerminalAction>(); block.GetA...
// Lists all actions and properties of a terminal block public void Main(string argument) { var block = GridTerminalSystem.GetBlockWithName(argument) as IMyTerminalBlock; var builder = new StringBuilder(); var actions = new List<ITerminalAction>(); block.GetActions(actions); foreach(var action in...
apache-2.0
C#
a71519da9d249003f52a7e2dc1087da2a1238a96
Add HTTP request verb and url to echo response
davidsh/NetworkingTestServer,davidsh/NetworkingTestServer,davidsh/NetworkingTestServer
WebServer/RequestInformation.cs
WebServer/RequestInformation.cs
using System; using System.Collections.Specialized; using System.IO; using System.Web; using Newtonsoft.Json; namespace WebServer { public class RequestInformation { public string Verb { get; private set; } public string Url { get; private set; } public NameValueCollection Headers {...
using System; using System.Collections.Specialized; using System.IO; using System.Web; using Newtonsoft.Json; namespace WebServer { public class RequestInformation { public NameValueCollection Headers { get; private set; } public string BodyContent { get; private set; } public int B...
mit
C#
66d7091a49488f629b81d8e0bc03321d9d864955
Test for CreateTable(Type ty)
mattleibow/SQLite.Net-PCL,igrali/SQLite.Net-PCL,caseydedore/SQLite.Net-PCL,haithemaraissia/sqlite-net,fernandovm/SQLite.Net-PCL,TiendaNube/SQLite.Net-PCL,daynin/net-sqlite,nicolehaugen79/sqlite-net,CutFlame/sqlite-net,koush/sqlite-net,daynin/net-sqlite,molinch/SQLite.Net-PCL,igrali/SQLite.Net-PCL,peterhuene/sqlite-net,...
tests/CreateTableTest.cs
tests/CreateTableTest.cs
using System; using System.Linq; using NUnit.Framework; namespace SQLite.Tests { [TestFixture] public class CreateTableTest { [Test] public void CreateThem () { var db = new TestDb (); db.CreateTable<Product> (); db.CreateTable<Order> (); db.CreateTable<OrderLine> (); db.CreateTable<OrderHi...
using System; using System.Linq; using NUnit.Framework; namespace SQLite.Tests { [TestFixture] public class CreateTableTest { [Test] public void CreateThem () { var db = new TestDb (); db.CreateTable<Product> (); db.CreateTable<Order> (); db.CreateTable<OrderLine> (); db.CreateTable<OrderHi...
mit
C#
8acb6de497996ed4126765c7b592beb5fa1e5728
Add sending of all http header values
riganti/dotvvm,riganti/dotvvm,riganti/dotvvm,riganti/dotvvm
src/DotVVM.Framework/Diagnostics/Models/HttpHeaderItem.cs
src/DotVVM.Framework/Diagnostics/Models/HttpHeaderItem.cs
using System.Collections.Generic; namespace DotVVM.Framework.Diagnostics.Models { public class HttpHeaderItem { public string Key { get; set; } public string Value { get; set; } public static HttpHeaderItem FromKeyValuePair(KeyValuePair<string, string[]> pair) { re...
using System.Collections.Generic; namespace DotVVM.Framework.Diagnostics.Models { public class HttpHeaderItem { public string Key { get; set; } public string Value { get; set; } public static HttpHeaderItem FromKeyValuePair(KeyValuePair<string, string[]> pair) { re...
apache-2.0
C#
716affb33ed53daff02e69e8e7c2152cd9250eba
Fix up menu for IE
Ampla/Ampla-Data,Ampla/Ampla-Data
src/AmplaWeb.Sample/Views/shared/_LoginPartial.cshtml
src/AmplaWeb.Sample/Views/shared/_LoginPartial.cshtml
 @if (Request.IsAuthenticated) { <li> <div class="btn-group"> <a class="btn btn-inverse" href="#"><i class="icon-user icon-white"></i> @User.Identity.Name</a> <a class="btn btn-inverse dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a> <ul c...
 @if (Request.IsAuthenticated) { <div class="btn-group"> <a class="btn btn-inverse" href="#"><i class="icon-user icon-white"></i> @User.Identity.Name</a> <a class="btn btn-inverse dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a> <ul class="dropdown-menu"> ...
mit
C#
1f68267390cfe9b19b40e4d598778643daf3728e
update the version number of the right assemblyinfo
trpalmer/AttributeAuthorization
src/AttributeAuthorization/Properties/AssemblyInfo.cs
src/AttributeAuthorization/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Attribute Authorization")] [assembly: AssemblyDescription("Attribute based authorization for WebApi projects")] [assembly: AssemblyCompany("Todd Palmer")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyProduct("Attribut...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Attribute Authorization")] [assembly: AssemblyDescription("Attribute based authorization for WebApi projects")] [assembly: AssemblyCompany("Todd Palmer")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyProduct("Attribut...
mit
C#
a2239c3d411eec6ed86f94469612206ae86bd79e
Fix some spacing in class
Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,zanetdev/Glimpse.Prototype,Glimpse/Glimpse.Prototype,pranavkm/Glimpse.Prototype,zanetdev/Glimpse.Prototype,pranavkm/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,z...
src/Glimpse.Agent.AspNet.Mvc/ActionSelectedMessage.cs
src/Glimpse.Agent.AspNet.Mvc/ActionSelectedMessage.cs
using System; using System.Collections.Generic; namespace Glimpse.Agent.AspNet.Mvc { internal class ActionSelectedMessage : IMessage { public Guid Id { get; } = Guid.NewGuid(); public DateTime Time { get; } = DateTime.Now; public string ActionId { get; set; } public string D...
using System; using System.Collections.Generic; namespace Glimpse.Agent.AspNet.Mvc { internal class ActionSelectedMessage : IMessage { public Guid Id { get; } = Guid.NewGuid(); public DateTime Time { get; } = DateTime.Now; public string ActionId { get; set; } public string D...
mit
C#
f8173d647daf2c3aaf7c8c5b9a6f0f19b5d4e623
fix error message for unresolved types
Kukkimonsuta/Odachi
src/Odachi.CodeModel/Builders/TypeReferenceBuilder.cs
src/Odachi.CodeModel/Builders/TypeReferenceBuilder.cs
using Odachi.CodeModel.Mapping; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Odachi.CodeModel.Builders.Abstraction; using Odachi.CodeModel.Description; using System.Reflection; namespace Odachi.CodeModel.Builders { public class TypeReferenceBuilder : BuilderBa...
using Odachi.CodeModel.Mapping; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Odachi.CodeModel.Builders.Abstraction; using Odachi.CodeModel.Description; using System.Reflection; namespace Odachi.CodeModel.Builders { public class TypeReferenceBuilder : BuilderBa...
apache-2.0
C#
5b42695f3228cde435ed0036190814057b71368a
Bump version
dylanplecki/BasicOidcAuthentication,dylanplecki/KeycloakOwinAuthentication,joelnet/KeycloakOwinAuthentication
src/Owin.Security.Keycloak/Properties/AssemblyInfo.cs
src/Owin.Security.Keycloak/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("Ke...
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("Ke...
mit
C#
37153ab3573e08e01ffb1a76dd0cb4a0813562f2
Make SigningParameterNames values const
carbon/Amazon
src/Amazon.Core/Security/SigningParameterNames.cs
src/Amazon.Core/Security/SigningParameterNames.cs
namespace Amazon.Security; internal static class SigningParameterNames { public const string Algorithm = "X-Amz-Algorithm"; public const string Credential = "X-Amz-Credential"; public const string Expires = "X-Amz-Expires"; public const string Date = "X-Amz-Date"; pub...
namespace Amazon.Security; internal static class SigningParameterNames { public static readonly string Algorithm = "X-Amz-Algorithm"; public static readonly string Credential = "X-Amz-Credential"; public static readonly string Expires = "X-Amz-Expires"; public static readonly strin...
mit
C#
72c950588afedd3827858f58ed6bd74754cea97a
add some more menu implementation.
jkoritzinsky/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,grokys/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Perspex,...
src/Avalonia.Native/AvaloniaNativeMenuExporter.cs
src/Avalonia.Native/AvaloniaNativeMenuExporter.cs
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using Avalonia.Controls; using Avalonia.Controls.Platform; using Avalonia.Threading; namespace Avalonia.Native { class AvaloniaNativeMenuExporter : ITopLevelNativeMenuExporter { private NativeMenu ...
using System; using System.Collections.Generic; using System.Text; using Avalonia.Controls; using Avalonia.Controls.Platform; namespace Avalonia.Native { class AvaloniaNativeMenuExporter : ITopLevelNativeMenuExporter { public bool IsNativeMenuExported => throw new NotImplementedException(); p...
mit
C#
7dc959c0589b972736883917fd47f446413283f2
return empty policies array if none
bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core
src/Core/Models/Api/Response/SyncResponseModel.cs
src/Core/Models/Api/Response/SyncResponseModel.cs
using System; using System.Collections.Generic; using System.Linq; using Bit.Core.Models.Data; using Bit.Core.Models.Table; using Core.Models.Data; namespace Bit.Core.Models.Api { public class SyncResponseModel : ResponseModel { public SyncResponseModel( GlobalSettings globalSettings, ...
using System; using System.Collections.Generic; using System.Linq; using Bit.Core.Models.Data; using Bit.Core.Models.Table; using Core.Models.Data; namespace Bit.Core.Models.Api { public class SyncResponseModel : ResponseModel { public SyncResponseModel( GlobalSettings globalSettings, ...
agpl-3.0
C#
01a06dc088054f26cf9ecd2495fdc176a7acbd8c
Add general options section
earalov/Skylines-ElevatedTrainStationTrack
Options.cs
Options.cs
 using MetroOverhaul.Detours; using MetroOverhaul.OptionsFramework.Attibutes; namespace MetroOverhaul { [Options("MetroOverhaul")] public class Options { private const string WIP = "WIP features"; private const string STYLES = "Additional styles"; private const string GENERAL = "Ge...
 using MetroOverhaul.Detours; using MetroOverhaul.OptionsFramework.Attibutes; namespace MetroOverhaul { [Options("MetroOverhaul")] public class Options { private const string WIP = "WIP features"; private const string STYLES = "Additional styles"; public Options() { #if DEB...
mit
C#
06cb52e1d559a4f317bd879c92ab6020db665e9b
add comments to repository
wilcommerce/Wilcommerce.Catalog
src/Wilcommerce.Catalog/Repository/IRepository.cs
src/Wilcommerce.Catalog/Repository/IRepository.cs
namespace Wilcommerce.Catalog.Repository { /// <see cref="Core.Infrastructure.IRepository"/> public interface IRepository : Core.Infrastructure.IRepository { } }
namespace Wilcommerce.Catalog.Repository { public interface IRepository : Core.Infrastructure.IRepository { } }
mit
C#
d0108e16e9b64f57319f041c17f7daa7e3d0f49c
add commands
iganchev87/HolidaysBetweenTwoDates
Program.cs
Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HolidaysBetweenTwoDates { class Program { static void Main(string[] args) { // HolidaysBetweenTwoDates var startDate = DateTime.P...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HolidaysBetweenTwoDates { class Program { static void Main(string[] args) { } } }
mit
C#
16d5776842f7e9131a891fd04ff7ff356fa3136e
change from storage account connection string to separate account name and account key parameters
kreuzhofer/AzureLargeFileUploader
Program.cs
Program.cs
using System; using System.IO; namespace AzureLargeFileUploader { class Program { static int Main(string[] args) { if (args.Length != 4) { Help(); return -1; } var fileToUpload = args[0]; if (!File.Exi...
using System; using System.IO; namespace AzureLargeFileUploader { class Program { static int Main(string[] args) { if (args.Length != 3) { Help(); return -1; } var fileToUpload = args[0]; if (!File.Exi...
mit
C#
facc301de339ae428f279f14df9cba37f55a177b
Set MinimumSize of button
astorch/motoi
src/plug-ins/motoi.ui.windowsforms/controls/Button.cs
src/plug-ins/motoi.ui.windowsforms/controls/Button.cs
using System; using System.Drawing; using motoi.platform.ui; using motoi.platform.ui.actions; using motoi.platform.ui.widgets; namespace motoi.ui.windowsforms.controls { /// <summary> /// Provides an implementation of <see cref="IButton"/>. /// </summary> public class Button : System.Windows...
using System; using motoi.platform.ui; using motoi.platform.ui.actions; using motoi.platform.ui.widgets; namespace motoi.ui.windowsforms.controls { /// <summary> /// Provides an implementation of <see cref="IButton"/>. /// </summary> public class Button : System.Windows.Forms.Button, IButton ...
mit
C#
52a817d054706e4b6f1984949566ad05039be943
Switch addin from Incubator to Kudu.Client * addresses incompatibilty issues with Cake 1.0
devlead/cake,cake-build/cake,devlead/cake,patriksvensson/cake,cake-build/cake,gep13/cake,gep13/cake,patriksvensson/cake
tests/integration/Cake.Core/Scripting/AddinDirective.cake
tests/integration/Cake.Core/Scripting/AddinDirective.cake
#addin nuget:?package=Cake.Kudu.Client&version=0.9.0 Task("Cake.Core.Scripting.AddinDirective.LoadNetStandardAddin") .Does(() => { DotNetCorePack($"{Paths.Resources}/Cake.Core/Scripting/netstandard2.addin/netstandard2.addin.csproj", new DotNetCorePackSettings { Configuration = "Release" ...
#addin nuget:?package=Cake.Incubator&version=5.1.0 Task("Cake.Core.Scripting.AddinDirective.LoadNetStandardAddin") .Does(() => { DotNetCorePack($"{Paths.Resources}/Cake.Core/Scripting/netstandard2.addin/netstandard2.addin.csproj", new DotNetCorePackSettings { Configuration = "Release" ...
mit
C#
6297606baaec8865d2201647746bb379c0e37ac9
Make sMake spinner's EndTime correct on construction
smoogipooo/osu,ppy/osu,johnneijzen/osu,johnneijzen/osu,peppy/osu,peppy/osu-new,EVAST9919/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,2yangk23/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,EVAST9919/osu,peppy/osu,2yangk23/osu,peppy/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu
osu.Game.Rulesets.Osu/Objects/Spinner.cs
osu.Game.Rulesets.Osu/Objects/Spinner.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.Game.Beatmaps; using osu.Game.Rulesets.Objects.Types; using osu.Game.Beatmaps.ControlPoints; using osu.Game.Rulesets.Judgements; using osu.Game.R...
// 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.Game.Beatmaps; using osu.Game.Rulesets.Objects.Types; using osu.Game.Beatmaps.ControlPoints; using osu.Game.Rulesets.Judgements; using osu.Game.R...
mit
C#
63d094cae04bd167f2c303893aaa4b303c33f8b7
Update Move
yishn/GTPWrapper
GTPWrapper/DataTypes/Move.cs
GTPWrapper/DataTypes/Move.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GTPWrapper.DataTypes { /// <summary> /// Represents a move. /// </summary> public struct Move { /// <summary> /// The color of the move. /// </summary> ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GTPWrapper.DataTypes { /// <summary> /// Represents a move. /// </summary> public class Move : Board { /// <summary> /// The color of the move. /// </su...
mit
C#
e0636a8276788473ec1148516c2bf0a07f660cc3
Add more tests for get by id
Branimir123/PhotoLife,Branimir123/PhotoLife,Branimir123/PhotoLife
PhotoLife/PhotoLife.Services.Tests/UserServiceTests/GetById_Should.cs
PhotoLife/PhotoLife.Services.Tests/UserServiceTests/GetById_Should.cs
using Moq; using NUnit.Framework; using PhotoLife.Data.Contracts; using PhotoLife.Models; namespace PhotoLife.Services.Tests.UserServiceTests { [TestFixture] public class GetById_Should { [TestCase("some id")] [TestCase("other id")] public void _CallRepository_GetByIdMethod(string ...
using Moq; using NUnit.Framework; using PhotoLife.Data.Contracts; using PhotoLife.Models; namespace PhotoLife.Services.Tests.UserServiceTests { [TestFixture] public class GetById_Should { [TestCase("some id")] [TestCase("other id")] public void _CallRepository_GetByIdMethod(string ...
mit
C#
fcdcd173afc7335a83096c2643566e7bd795cd64
update clear input method
army-of-two/when-its-done,army-of-two/when-its-done,army-of-two/when-its-done
WhenItsDone/Clients/WhenItsDone.WebFormsClient/Create/Default.aspx.cs
WhenItsDone/Clients/WhenItsDone.WebFormsClient/Create/Default.aspx.cs
using System; using WebFormsMvp; using WebFormsMvp.Web; using WhenItsDone.MVP.CreatePages; namespace WhenItsDone.WebFormsClient.Create { [PresenterBinding(typeof(ICreatePresenter))] public partial class Default : MvpPage<CreateViewModel>, ICreateView { public event EventHandler<CreateEventArgs> ...
using System; using System.Web.UI; using System.Web.UI.HtmlControls; using WebFormsMvp; using WebFormsMvp.Web; using WhenItsDone.MVP.CreatePages; namespace WhenItsDone.WebFormsClient.Create { [PresenterBinding(typeof(ICreatePresenter))] public partial class Default : MvpPage<CreateViewModel>, ICreateView ...
mit
C#
d1e8b5abc3738b3148cad3bd50773aeaed1e6fce
Fix uppercase codename
blackmamba97/Transformer-Toolkit
Toolkit/Classes/Device.cs
Toolkit/Classes/Device.cs
/* * Device.cs - Developed by Max Röhrl for Transformer Toolkit */ using System; using System.Linq; namespace Toolkit { public class Device { /// <summary> /// Android version of the latest Asus firmware for TF700T/TF300T/ME301T /// </summary> private const string MinAnd...
/* * Device.cs - Developed by Max Röhrl for Transformer Toolkit */ using System; using System.Linq; namespace Toolkit { public class Device { /// <summary> /// Android version of the latest Asus firmware for TF700T/TF300T/ME301T /// </summary> private const string MinAnd...
mit
C#
07949c350d6f82d2352c3925b84519c8ce77e5f9
update mod_id for torch mod
TorchAPI/Torch
Torch.Mod/TorchModCore.cs
Torch.Mod/TorchModCore.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Sandbox.ModAPI; using VRage.Game.Components; namespace Torch.Mod { [MySessionComponentDescriptor(MyUpdateOrder.AfterSimulation)] public class TorchModCore : MySessionComponentBase { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Sandbox.ModAPI; using VRage.Game.Components; namespace Torch.Mod { [MySessionComponentDescriptor(MyUpdateOrder.AfterSimulation)] public class TorchModCore : MySessionComponentBase { ...
apache-2.0
C#
37a90e621f8ec69518bc8170cb7a55dee971857a
Add metadata to AssemblyInfo.cs
neoeinstein/xpdm
Xpdm.Math/AssemblyInfo.cs
Xpdm.Math/AssemblyInfo.cs
// // AssemblyInfo.cs // // Author: // Marcus Griep <marcus@griep.us> // // Copyright (c) 2009 Marcus Griep // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restrictio...
// // AssemblyInfo.cs // // Author: // Marcus Griep <marcus@griep.us> // // Copyright (c) 2009 Marcus Griep // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restrictio...
mit
C#
4f6106d1d9c906f3f9f69156d39ce1dec2a80057
correct typo
NeutroniumCore/Neutronium,David-Desmaisons/Neutronium,NeutroniumCore/Neutronium,NeutroniumCore/Neutronium,David-Desmaisons/Neutronium,David-Desmaisons/Neutronium
Neutronium.Core/JavascriptFramework/IJavascriptFrameworkManager.cs
Neutronium.Core/JavascriptFramework/IJavascriptFrameworkManager.cs
using Neutronium.Core.WebBrowserEngine.JavascriptObject; using System; namespace Neutronium.Core.JavascriptFramework { /// <summary> /// IJavascriptFrameworkManager factory /// </summary> public interface IJavascriptFrameworkManager { /// <summary> /// Get the name of unferlying ja...
using Neutronium.Core.WebBrowserEngine.JavascriptObject; using System; namespace Neutronium.Core.JavascriptFramework { /// <summary> /// IJavascriptFrameworkManager factory /// </summary> public interface IJavascriptFrameworkManager { /// <summary> /// Get the name of unferlying ja...
mit
C#
07a1c39fe525dc11f06917fc3d7f3510c21e4d27
Use random default background on starting the game
peppy/osu,2yangk23/osu,DrabWeb/osu,NeoAdonis/osu,naoey/osu,ppy/osu,johnneijzen/osu,ZLima12/osu,peppy/osu,NeoAdonis/osu,ZLima12/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,naoey/osu,ppy/osu,DrabWeb/osu,smoogipooo/osu,peppy/osu-new,EVAST9919/osu,johnneijzen/osu,smoogipoo/osu,DrabWeb/...
osu.Game/Screens/Backgrounds/BackgroundScreenDefault.cs
osu.Game/Screens/Backgrounds/BackgroundScreenDefault.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.Framework.MathUtils; using osu.Framework.Threading; using osu.Game.Graphics.Backgrounds; namespa...
// 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.Framework.Threading; using osu.Game.Graphics.Backgrounds; namespace osu.Game.Screens.Background...
mit
C#
5cfd27e2f953a40d6dd431fb9fc4b1d1455b8286
Change grenade explosion sound.
fr1tz/rotc-ethernet-game,fr1tz/rotc-ethernet-game,fr1tz/rotc-ethernet-game,fr1tz/rotc-ethernet-game
game/server/weapons/grenade.sfx.cs
game/server/weapons/grenade.sfx.cs
//------------------------------------------------------------------------------ // Revenge Of The Cats: Ethernet // Copyright (C) 2008, mEthLab Interactive //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ ...
//------------------------------------------------------------------------------ // Revenge Of The Cats: Ethernet // Copyright (C) 2008, mEthLab Interactive //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ ...
lgpl-2.1
C#
deda5f4f058738d2684cd51d118b809f0a0a3da8
change to BrowserDriver.Firefox
andyshao/NHibernate.AspNet.Identity,nhibernate/NHibernate.AspNet.Identity,lnu/NHibernate.AspNet.Identity,nhibernate/NHibernate.AspNet.Identity,andyshao/NHibernate.AspNet.Identity,lnu/NHibernate.AspNet.Identity,smallkid/NHibernate.AspNet.Identity,lnu/NHibernate.AspNet.Identity,andyshao/NHibernate.AspNet.Identity,smallki...
source/NHibernate.AspNet.Web.Specs/AssemblyStartup.cs
source/NHibernate.AspNet.Web.Specs/AssemblyStartup.cs
using System; using System.IO; using NUnit.Framework; using SharpArch.NHibernate; using SpecsFor.Mvc; namespace NHibernate.AspNet.Web.Specs { [SetUpFixture] public class AssemblyStartup { private SpecsForIntegrationHost _host; [SetUp] public void SetupTestRun() { HostStart(); Confi...
using System; using System.IO; using NUnit.Framework; using SharpArch.NHibernate; using SpecsFor.Mvc; namespace NHibernate.AspNet.Web.Specs { [SetUpFixture] public class AssemblyStartup { private SpecsForIntegrationHost _host; [SetUp] public void SetupTestRun() { HostStart(); Confi...
mit
C#
0017d1a2e41fe7bc0f58489ade7ebec3b6cb3d99
Fix issue to throw exception when wallpaper isn't set.
mntone/SylphyHorn
source/SylphyHorn/UI/Controls/UnlockImageConverter.cs
source/SylphyHorn/UI/Controls/UnlockImageConverter.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Windows; using System.Windows.Data; using System.Windows.Media.Imaging; using SylphyHorn.Services; namespace SylphyHorn.UI.Controls { public class UnlockImageConve...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Windows; using System.Windows.Data; using System.Windows.Media.Imaging; using SylphyHorn.Services; namespace SylphyHorn.UI.Controls { public class UnlockImageConve...
mit
C#
624880d69a64109f6c102de40976735b28547cae
add DI with tag helper
ProfessionalCSharp/ProfessionalCSharp7,ProfessionalCSharp/ProfessionalCSharp7,ProfessionalCSharp/ProfessionalCSharp7,ProfessionalCSharp/ProfessionalCSharp7
MVC/MVCSampleApp/TagHelperSamples/MarkdownTagHelper.cs
MVC/MVCSampleApp/TagHelperSamples/MarkdownTagHelper.cs
using Markdig; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Razor.TagHelpers; using System; using System.IO; using System.Threading.Tasks; namespace TagHelperSamples { [HtmlTargetElement("markdown", TagStructure = TagStructure.NormalOrSelfClosing)] [HtmlTargetElement(Attributes = "markdownfi...
using Markdig; using Microsoft.AspNetCore.Razor.TagHelpers; using System; using System.IO; using System.Threading.Tasks; namespace TagHelperSamples { [HtmlTargetElement("markdown", TagStructure = TagStructure.NormalOrSelfClosing)] [HtmlTargetElement(Attributes = "markdownfile")] public class MarkdownTagHe...
mit
C#
8482a060010eb0cba44f80ea099dee3f49c8468f
Remove AllowPartiallyTrustedCallers to fix Appveyor build failure
palantirza/Numeric,palantirza/Numeric
src/Antlr3.Runtime.CoreCLR/Properties/AssemblyInfo.cs
src/Antlr3.Runtime.CoreCLR/Properties/AssemblyInfo.cs
/* * [The "BSD license"] * Copyright (c) 2011 Terence Parr * All rights reserved. * * Conversion to C#: * Copyright (c) 2011 Sam Harwell, Pixel Mine, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following co...
/* * [The "BSD license"] * Copyright (c) 2011 Terence Parr * All rights reserved. * * Conversion to C#: * Copyright (c) 2011 Sam Harwell, Pixel Mine, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following co...
mit
C#
97096aca56a25e7729e11fae8f1c303dccae4f86
update assembly version to match package version 1.0.8
AsrOneSdk/azure-sdk-for-net,nathannfan/azure-sdk-for-net,atpham256/azure-sdk-for-net,pankajsn/azure-sdk-for-net,btasdoven/azure-sdk-for-net,pankajsn/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net,djyou/azure-sdk-for-net,olydis/azure-sdk-for-net,pankajsn/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,hyonholee/azure...
src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/Properties/AssemblyInfo.cs
src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/Properties/AssemblyInfo.cs
// // Copyright (c) Microsoft. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable la...
// // Copyright (c) Microsoft. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable la...
mit
C#
97cbfbdad2cec529f9ab7bbbc564558a56304914
add factory method for eval working set
jobeland/GeneticAlgorithm
NeuralNetwork.GeneticAlgorithm/Utils/EvalWorkingSet.cs
NeuralNetwork.GeneticAlgorithm/Utils/EvalWorkingSet.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NeuralNetwork.GeneticAlgorithm.Utils { public class EvalWorkingSet : IEvalWorkingSet { private LinkedList<Double> _pastEvals; private int _size; private EvalWo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NeuralNetwork.GeneticAlgorithm.Utils { public class EvalWorkingSet : IEvalWorkingSet { private LinkedList<Double> _pastEvals; private int _size; public EvalWor...
mit
C#
a3cbab7dfadeb1784f1d7a090623853127ac60e2
Use Task.FromResult
jeff-pang/Nancy,sadiqhirani/Nancy,dbolkensteyn/Nancy,davidallyoung/Nancy,sloncho/Nancy,VQComms/Nancy,jchannon/Nancy,anton-gogolev/Nancy,blairconrad/Nancy,dbolkensteyn/Nancy,danbarua/Nancy,damianh/Nancy,charleypeng/Nancy,khellang/Nancy,damianh/Nancy,dbolkensteyn/Nancy,grumpydev/Nancy,jchannon/Nancy,charleypeng/Nancy,ant...
src/Nancy.Tests/Fakes/FakeRoute.cs
src/Nancy.Tests/Fakes/FakeRoute.cs
namespace Nancy.Tests.Fakes { using System; using System.Threading; using System.Threading.Tasks; using Nancy.Routing; public class FakeRoute : Route { private static Func<dynamic, CancellationToken, Task<dynamic>>DefaultAction = (parameters, token) => null; public...
namespace Nancy.Tests.Fakes { using System; using System.Threading; using System.Threading.Tasks; using Nancy.Routing; public class FakeRoute : Route { private static Func<dynamic, CancellationToken, Task<dynamic>>DefaultAction = (parameters, token) => null; public...
mit
C#
2a4569d0bd1f2fee14b15f7ddb1eae6d85083835
Update tests
Backendless/.NET-SDK,Backendless/.NET-SDK
Projects/GeometryTestProject/ExcludePropertiesClass.cs
Projects/GeometryTestProject/ExcludePropertiesClass.cs
using Microsoft.VisualStudio.TestTools.UnitTesting; using BackendlessAPI; using BackendlessAPI.Persistence; using System; using System.Collections.Generic; using System.Linq; namespace GeometryTestProject { [TestClass] public class ExcludePropertiesClass { [TestMethod] public void TestExcludeTwoFields()...
using Microsoft.VisualStudio.TestTools.UnitTesting; using BackendlessAPI; using BackendlessAPI.Persistence; using System; using System.Collections.Generic; using System.Linq; namespace GeometryTestProject { [TestClass] public class ExcludePropertiesClass { [TestMethod] public void TestExcludeTwoFields()...
apache-2.0
C#
e712727d0e55075cc61d86477da3232eef2f8ae8
Fix on mapped image service path
pjmagee/swtor-caster
SwtorCaster/Core/Services/Images/MappedImageService.cs
SwtorCaster/Core/Services/Images/MappedImageService.cs
namespace SwtorCaster.Core.Services.Images { using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; using System.Linq; using System.Reflection; using Newtonsoft.Json; public class MappedImageService : IImageService { private readonly st...
namespace SwtorCaster.Core.Services.Images { using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; using System.Linq; using System.Reflection; using Newtonsoft.Json; public class MappedImageService : IImageService { private readonly st...
mit
C#
818b61dc7ae4e884fe6a9321093f03e72fe8d53e
Fix System.Text.Json BigInteger JsonConverter (#2990)
joemcbride/graphql-dotnet,graphql-dotnet/graphql-dotnet,joemcbride/graphql-dotnet,graphql-dotnet/graphql-dotnet,graphql-dotnet/graphql-dotnet
src/GraphQL.SystemTextJson/JsonConverterBigInteger.cs
src/GraphQL.SystemTextJson/JsonConverterBigInteger.cs
using System.Buffers; using System.Globalization; using System.Numerics; using System.Text; using System.Text.Json; using System.Text.Json.Serialization; namespace GraphQL.SystemTextJson { /// <summary> /// Json converter for reading and writing <see cref="BigInteger"/> values. /// While it is not able to ...
using System.Buffers; using System.Globalization; using System.Numerics; using System.Text; using System.Text.Json; using System.Text.Json.Serialization; namespace GraphQL.SystemTextJson { /// <summary> /// Json converter for reading and writing <see cref="BigInteger"/> values. /// While it is not able to ...
mit
C#
c74655bbe18b5a51389c1f866d8375b2f2b9edc4
Fix issue with UserGroup ids in the spec
tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server
src/Tgstation.Server.Api/Models/Internal/UserGroup.cs
src/Tgstation.Server.Api/Models/Internal/UserGroup.cs
namespace Tgstation.Server.Api.Models.Internal { /// <summary> /// Represents a group of users. /// </summary> public class UserGroup : NamedEntity { /// <inheridoc /> [RequestOptions(FieldPresence.Required)] public override long? Id { get => base.Id; set => base.Id = value; } /// <summary> //...
namespace Tgstation.Server.Api.Models.Internal { /// <summary> /// Represents a group of users. /// </summary> public class UserGroup : NamedEntity { /// <summary> /// The <see cref="Models.PermissionSet"/> of the <see cref="UserGroup"/>. /// </summary> public PermissionSet? PermissionSet { get; set; } } ...
agpl-3.0
C#
580441f45725a916a728e7c286d812652ec00a55
add proper implementation of ObservableBatchCollection (courtesy of Johan Larsson)
milleniumbug/Taxonomy
Common/ObservableBatchCollection.cs
Common/ObservableBatchCollection.cs
/** * The MIT License (MIT) * * Copyright (c) 2015 Johan Larsson * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of this * software and associated documentation files (the "Software"), to deal in the Software * without restriction, including without li...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { // a dumb workaround until Johan adds ObservableBatchCollection // to the Gu.Reactive's public interface public class ObservableBatchCollectio...
mit
C#
ec2a97e7f106d9d307dab1c3c1823f1de09b09ea
Update IBuildTask.cs
urbas/Bud.Builder,urbas/Bud.Building
Bud.Builder/IBuildTask.cs
Bud.Builder/IBuildTask.cs
using System.Collections.Immutable; namespace Bud { /// <summary> /// The basic building block of a build. /// </summary> /// <remarks> /// <para>Build tasks take some input files and produce some output files.</para> /// /// <para>Each build task can depend on other build tasks.</para> /// /// <p...
using System.Collections.Immutable; namespace Bud { /// <summary> /// The basic building block of a build. /// </summary> /// <remarks> /// <para>Build tasks take some input files and produce some output files.</para> /// /// <para>Each build task can depend on other build tasks.</para> /// /// <p...
mit
C#
bd4cfa548919ac0dbcc9c0a00dfa99b77cd827ae
Fix deprecation...
MrJoy/UnityColorBlindness,MrJoy/UnityColorBlindness,MrJoy/UnityColorBlindness
Assets/UnityColorBlindness/ColorBlindnessEffect.cs
Assets/UnityColorBlindness/ColorBlindnessEffect.cs
/* Red/Green Color-Blindness Simulation Effect (C)Copyright 2008, MrJoy Inc, All rights reserved. Version: 1.0, 2008-04-28 Changes: -2008-04-28, jfrisby: Initial version. Notes: This is intended to help you look for problems that may make it difficult for users of your game to play if they s...
/* Red/Green Color-Blindness Simulation Effect (C)Copyright 2008, MrJoy Inc, All rights reserved. Version: 1.0, 2008-04-28 Changes: -2008-04-28, jfrisby: Initial version. Notes: This is intended to help you look for problems that may make it difficult for users of your game to play if they s...
mit
C#
f117ba7a8ca45e27db9a8ef093292e5da06dd1b1
Make SUTA email UIC
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Web/Events/SUTARequestChanged.cs
Battery-Commander.Web/Events/SUTARequestChanged.cs
using System.Collections.Generic; using System.IO; using System.Threading; using System.Threading.Tasks; using BatteryCommander.Web.Models; using BatteryCommander.Web.Queries; using BatteryCommander.Web.Services; using FluentEmail.Core; using FluentEmail.Core.Models; using MediatR; namespace BatteryCommander.Web.Even...
using System.Collections.Generic; using System.IO; using System.Threading; using System.Threading.Tasks; using BatteryCommander.Web.Models; using BatteryCommander.Web.Queries; using BatteryCommander.Web.Services; using FluentEmail.Core; using FluentEmail.Core.Models; using MediatR; namespace BatteryCommander.Web.Even...
mit
C#
7a5d220e5829be46f723958056055d11ce92153f
Validate in setter of ByRefSchema.Id
drewnoakes/dasher
Dasher.Schemata/Schema.cs
Dasher.Schemata/Schema.cs
using System; using System.Collections.Generic; using System.Xml.Linq; using JetBrains.Annotations; namespace Dasher.Schemata { public interface IWriteSchema { /// <summary> /// Creates a deep copy of this schema within <paramref name="collection"/>. /// </summary> /// <param na...
using System.Collections.Generic; using System.Xml.Linq; using JetBrains.Annotations; namespace Dasher.Schemata { public interface IWriteSchema { /// <summary> /// Creates a deep copy of this schema within <paramref name="collection"/>. /// </summary> /// <param name="collection...
apache-2.0
C#
45181e783eef97974812bef3f2d223a96d4890c1
remove powerup sound within RegenerationBehavior
billtowin/mega-epic-super-tankz,billtowin/mega-epic-super-tankz
modules/myModule/scripts/behaviors/combat/powerups/Regeneration.cs
modules/myModule/scripts/behaviors/combat/powerups/Regeneration.cs
if (!isObject(RegenerationBehavior)) { %template = new BehaviorTemplate(RegenerationBehavior); %template.friendlyName = "Tank Life Regeneration"; %template.behaviorType = "Combat"; %template.description = "Tank Regeneration Ability"; %template.addBehaviorField(duration, "Duration of Powerup/Ability (n...
if (!isObject(RegenerationBehavior)) { %template = new BehaviorTemplate(RegenerationBehavior); %template.friendlyName = "Tank Life Regeneration"; %template.behaviorType = "Combat"; %template.description = "Tank Regeneration Ability"; %template.addBehaviorField(duration, "Duration of Powerup/Ability (n...
mit
C#
6774fadb87dde5cde5fd975b88fd507fe22a6cd4
stop meetings without crashing
octoblu/meshblu-connector-skype,octoblu/meshblu-connector-skype
src/csharp/stop-meetings.cs
src/csharp/stop-meetings.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.Lync.Model; using Microsoft.Lync.Model.Conversation; using Microsoft.Lync.Model.Conversation.AudioVideo; using Microsoft.Lync.Model.Extensibility; public class Startup { private as...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.Lync.Model; using Microsoft.Lync.Model.Conversation; using Microsoft.Lync.Model.Conversation.AudioVideo; using Microsoft.Lync.Model.Extensibility; public class Startup { private as...
mit
C#
e5e5fa387010c94e2f65c67fe7ae946480b35e19
Fix datetime schema for content.
Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex
src/Squidex.Domain.Apps.Core.Operations/GenerateJsonSchema/Builder.cs
src/Squidex.Domain.Apps.Core.Operations/GenerateJsonSchema/Builder.cs
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ===========================...
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ===========================...
mit
C#
54dc29c4dee5df41cc96423183a20c27377957ea
Remove unused parameters from EditableBuilder (resolves #359)
VoidPointerAB/n2cms,nicklv/n2cms,VoidPointerAB/n2cms,nimore/n2cms,bussemac/n2cms,VoidPointerAB/n2cms,bussemac/n2cms,nimore/n2cms,nicklv/n2cms,SntsDev/n2cms,DejanMilicic/n2cms,bussemac/n2cms,EzyWebwerkstaden/n2cms,EzyWebwerkstaden/n2cms,n2cms/n2cms,nimore/n2cms,SntsDev/n2cms,nicklv/n2cms,nicklv/n2cms,nimore/n2cms,EzyWeb...
src/Framework/N2/Definitions/Runtime/EditableBuilder.cs
src/Framework/N2/Definitions/Runtime/EditableBuilder.cs
using System; using System.Linq; namespace N2.Definitions.Runtime { public class EditableBuilder<T> : Builder<T> where T : IEditable { public string PropertyName { get; private set; } public EditableBuilder(string propertyName, ContentRegistration re) : base(propertyName, re) { this.Prope...
using System; using System.Linq; namespace N2.Definitions.Runtime { public class EditableBuilder<T> : Builder<T> where T : IEditable { public string PropertyName { get; private set; } public EditableBuilder(string propertyName, ContentRegistration re) : base(propertyName, re) { this.PropertyName = p...
lgpl-2.1
C#
4a876b1ac7997a06bf963ea2a36daa74f3bec7bd
make MySqlSqlNullabilityProcessor in MySqlParameterBasedSqlProcessor transient (#1380)
PomeloFoundation/Pomelo.EntityFrameworkCore.MySql,PomeloFoundation/Pomelo.EntityFrameworkCore.MySql
src/EFCore.MySql/Query/Internal/MySqlParameterBasedSqlProcessor.cs
src/EFCore.MySql/Query/Internal/MySqlParameterBasedSqlProcessor.cs
// Copyright (c) Pomelo Foundation. All rights reserved. // Licensed under the MIT. See LICENSE in the project root for license information. using System.Collections.Generic; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore.Query; using Microsoft.EntityFrameworkCore.Query.SqlExpressions; using Microso...
// Copyright (c) Pomelo Foundation. All rights reserved. // Licensed under the MIT. See LICENSE in the project root for license information. using System.Collections.Generic; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore.Query; using Microsoft.EntityFrameworkCore.Query.SqlExpressions; using Microso...
mit
C#