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
92128d4ef9594a9f3c653660cb6fa729eb61818f
Update svn properties.
zekizeki/agentservice,ft-/opensim-optimizations-wip-extras,QuillLittlefeather/opensim-1,TomDataworks/opensim,intari/OpenSimMirror,TomDataworks/opensim,RavenB/opensim,AlphaStaxLLC/taiga,cdbean/CySim,QuillLittlefeather/opensim-1,TechplexEngineer/Aurora-Sim,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,ft-/opensim-optimizations-wi...
OpenSim/Framework/IClientAPI2.cs
OpenSim/Framework/IClientAPI2.cs
using System; namespace OpenSim.Framework { #region Args Classes public class ICA2_ConnectionArgs : EventArgs { } public class ICA2_DisconnectionArgs : EventArgs { public bool Forced; // Static Constructor // Allows us to recycle these classes later more eas...
using System; namespace OpenSim.Framework { #region Args Classes public class ICA2_ConnectionArgs : EventArgs { } public class ICA2_DisconnectionArgs : EventArgs { public bool Forced; // Static Constructor // Allows us to recycle these classes...
bsd-3-clause
C#
2b80c3b716e9b1ab79b82a598b373ab728b9b0a3
Add ChromeOptions to ChromeDriver
atata-framework/atata-sample-app-tests
src/Atata.SampleApp.AutoTests/AutoTest.cs
src/Atata.SampleApp.AutoTests/AutoTest.cs
using NUnit.Framework; using NUnit.Framework.Interfaces; using OpenQA.Selenium.Chrome; using OpenQA.Selenium.Remote; namespace Atata.SampleApp.AutoTests { public class AutoTest { [SetUp] public void SetUp() { var log = new LogManager(). Use(new NUni...
using NUnit.Framework; using NUnit.Framework.Interfaces; using OpenQA.Selenium.Chrome; namespace Atata.SampleApp.AutoTests { public class AutoTest { [SetUp] public void SetUp() { var log = new LogManager(). Use(new NUnitTestContextLogConsumer()). ...
apache-2.0
C#
9c039ab8dd05514d0f13bb4c8d67e8d526b3c3a3
remove remaining reference to TestFramework
pharring/ApplicationInsights-dotnet,pharring/ApplicationInsights-dotnet,pharring/ApplicationInsights-dotnet,Microsoft/ApplicationInsights-dotnet
src/TelemetryChannels/ServerTelemetryChannel/Shared/AssemblyInfo.cs
src/TelemetryChannels/ServerTelemetryChannel/Shared/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyCopyright("Copyright © Microsoft. All Rights Reserved.")] [assembly: ComVisible(false)] [assembly: InternalsVisibleTo("Microsoft.ApplicationInsights.Core....
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyCopyright("Copyright © Microsoft. All Rights Reserved.")] [assembly: ComVisible(false)] [assembly: InternalsVisibleTo("Microsoft.ApplicationInsights.Core....
mit
C#
e10cca83ed240fc75a7535fd2713455b939cbdf6
Reorganize using
linquize/ProtoBuf.MSBuildTask
ProtoBuf.MSBuildTask/ProtoGen.cs
ProtoBuf.MSBuildTask/ProtoGen.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; namespace ProtoBuf.MSBuildTask { public class ProtoGen : Task { public ITaskItem[] SourceCodeFiles { get; set; } publ...
using System.Diagnostics; using System.IO; using System.Text; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using System.Collections.Generic; using System; namespace ProtoBuf.MSBuildTask { public class ProtoGen : Task { public ITaskItem[] SourceCodeFiles { get; set; } publ...
mit
C#
370b0dfcd27c719b902f1a875066c8b04b39f98e
Remove obsolete code analysis suppressions
FakeItEasy/FakeItEasy,FakeItEasy/FakeItEasy,adamralph/FakeItEasy,blairconrad/FakeItEasy,thomaslevesque/FakeItEasy,thomaslevesque/FakeItEasy,blairconrad/FakeItEasy,adamralph/FakeItEasy
src/FakeItEasy/Properties/AssemblyInfo.cs
src/FakeItEasy/Properties/AssemblyInfo.cs
using System; using System.Diagnostics.CodeAnalysis; using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyProduct("FakeItEasy")] [assembly: AssemblyTitle("FakeItEasy")] [assembly: AssemblyDescription("The FakeItEasy dynamic fake framework.")] [assembly: CLSCompliant(true)] [...
using System; using System.Diagnostics.CodeAnalysis; using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyProduct("FakeItEasy")] [assembly: AssemblyTitle("FakeItEasy")] [assembly: AssemblyDescription("The FakeItEasy dynamic fake framework.")] [assembly: CLSCompliant(true)] [...
mit
C#
d7211ba7cc5eb12a5aeaf608d0b598b2bbe0abb5
Remove unused using statement
feliwir/openSage,feliwir/openSage
src/OpenSage.Game/Mathematics/ColorRgb.cs
src/OpenSage.Game/Mathematics/ColorRgb.cs
namespace OpenSage.Mathematics { public struct ColorRgb { public byte R; public byte G; public byte B; public ColorRgb(byte r, byte g, byte b) { R = r; G = g; B = b; } public static ColorRgb FromUInt32(uint rgb) ...
using System; namespace OpenSage.Mathematics { public struct ColorRgb { public byte R; public byte G; public byte B; public ColorRgb(byte r, byte g, byte b) { R = r; G = g; B = b; } public static ColorRgb FromUInt32(...
mit
C#
852c5ace7b8a3f7aa9fb38c13d1cef2dd7471132
add validation to resource name param
takenet/blip-sdk-csharp
src/Take.Blip.Builder/Variables/BaseResourceVariableProvider.cs
src/Take.Blip.Builder/Variables/BaseResourceVariableProvider.cs
using Lime.Protocol; using Lime.Protocol.Network; using Lime.Protocol.Serialization; using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; using Take.Blip.Client; namespace Take.Blip.Builder.Variables { public class BaseResourceVariableProvider : ...
using Lime.Protocol; using Lime.Protocol.Network; using Lime.Protocol.Serialization; using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; using Take.Blip.Client; namespace Take.Blip.Builder.Variables { public class BaseResourceVariableProvider : ...
apache-2.0
C#
8ac566f7ffb39f200c6c7feef3542c26fc7f13f8
Make serializble
dotnet/roslyn,mavasani/roslyn,bartdesmet/roslyn,mavasani/roslyn,CyrusNajmabadi/roslyn,shyamnamboodiripad/roslyn,CyrusNajmabadi/roslyn,dotnet/roslyn,mavasani/roslyn,jasonmalinowski/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,dotnet/roslyn,jasonmalinowski/roslyn,shyamnamboodiripad/roslyn,CyrusNajmabadi/roslyn,shyamna...
src/Workspaces/Core/Portable/TaskList/TaskListItemDescriptor.cs
src/Workspaces/Core/Portable/TaskList/TaskListItemDescriptor.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.Globalization; using System.Runtime.Serialization; using Microsoft...
// 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.Globalization; using System.Runtime.Serialization; using Microsoft...
mit
C#
1ba744fafd02abc8547a7fef42951741c94aaf8d
Change serverity to Warning (#2133)
sergey-shandar/autorest,amarzavery/AutoRest,veronicagg/autorest,sergey-shandar/autorest,Azure/autorest,Azure/autorest,ljhljh235/AutoRest,sergey-shandar/autorest,veronicagg/autorest,vishrutshah/autorest,ljhljh235/AutoRest,jianghaolu/AutoRest,veronicagg/autorest,veronicagg/autorest,lmazuel/autorest,vishrutshah/autorest,v...
src/modeler/AutoRest.Swagger/Validation/BodyParametersValidation.cs
src/modeler/AutoRest.Swagger/Validation/BodyParametersValidation.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using AutoRest.Swagger.Validation.Core; using AutoRest.Core.Properties; using AutoRest.Swagger.Model; using AutoRest.Core.Logging; using System; namespace AutoR...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using AutoRest.Swagger.Validation.Core; using AutoRest.Core.Properties; using AutoRest.Swagger.Model; using AutoRest.Core.Logging; using System; namespace AutoR...
mit
C#
645f20e8eea0bd26a6a1bdf4f86eab3364b8d603
Set default theme color on load
larsbrubaker/MatterControl,mmoening/MatterControl,mmoening/MatterControl,mmoening/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,unlimitedbacon/MatterControl,u...
MatterControlLib/ApplicationView/Themes/DirectoryTheme.cs
MatterControlLib/ApplicationView/Themes/DirectoryTheme.cs
/* Copyright (c) 2018, John Lewin All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following ...
/* Copyright (c) 2018, John Lewin All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following ...
bsd-2-clause
C#
612a7974e6bd2d2ba2cc38f0eef5a5f8d7b3cd4f
Clean code for ODataConnectedService
LaylaLiu/lab
ODataConnectedService/src/ODataConnectedServiceHandler.cs
ODataConnectedService/src/ODataConnectedServiceHandler.cs
using System; using System.Threading; using System.Threading.Tasks; using EnvDTE; using Microsoft.OData.ConnectedService.CodeGeneration; using Microsoft.OData.ConnectedService.Common; using Microsoft.VisualStudio.ConnectedServices; namespace Microsoft.OData.ConnectedService { [ConnectedServiceHandlerExp...
using System; using System.Threading; using System.Threading.Tasks; using EnvDTE; using Microsoft.OData.ConnectedService.CodeGeneration; using Microsoft.OData.ConnectedService.Common; using Microsoft.VisualStudio.ConnectedServices; namespace Microsoft.OData.ConnectedService { [ConnectedServiceHandlerExp...
mit
C#
e646275c6380fff7a5d41b8b8a3682262b170e0d
remove not implemented exception
ChristianKis/HackathonEpam2016,ChristianKis/HackathonEpam2016
SlbHackWeek2016/HackathonApi/Models/TeamBuilderForSure.cs
SlbHackWeek2016/HackathonApi/Models/TeamBuilderForSure.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using HackathonAPI.Models; namespace GuessChangeListAuthor.Models { public class TeamBuilderForSure : IRule { public void GenerateData(List<ChangeList> allChangeLists) { } public int Execute(s...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using HackathonAPI.Models; namespace GuessChangeListAuthor.Models { public class TeamBuilderForSure : IRule { public void GenerateData(List<ChangeList> allChangeLists) { throw new NotImplementedExc...
mit
C#
1f971bc01a96d3736d1cf28724f3ac85ed833ef1
Fix code format.
dotnet-architecture/eShopOnContainers,dotnet-architecture/eShopOnContainers,albertodall/eShopOnContainers,productinfo/eShopOnContainers,andrelmp/eShopOnContainers,skynode/eShopOnContainers,skynode/eShopOnContainers,albertodall/eShopOnContainers,andrelmp/eShopOnContainers,albertodall/eShopOnContainers,andrelmp/eShopOnCo...
src/Services/Identity/Identity.API/Data/ConfigurationDbContextSeed.cs
src/Services/Identity/Identity.API/Data/ConfigurationDbContextSeed.cs
using IdentityServer4.EntityFramework.DbContexts; using IdentityServer4.EntityFramework.Mappers; using Microsoft.eShopOnContainers.Services.Identity.API.Configuration; using Microsoft.Extensions.Configuration; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Microsoft.eShop...
using IdentityServer4.EntityFramework.DbContexts; using IdentityServer4.EntityFramework.Mappers; using Microsoft.eShopOnContainers.Services.Identity.API.Configuration; using Microsoft.Extensions.Configuration; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Microsoft.eShop...
mit
C#
6e14f59679bb1a7fdc29011f50668acd2d13b762
prepare 1.0.1
emfmesquita/KabalistusTransformationTracker
KabalistusTransformationTracker/Properties/AssemblyInfo.cs
KabalistusTransformationTracker/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("IsaacTest")] [assembly: AssemblyDe...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("IsaacTest")] [assembly: AssemblyDe...
bsd-2-clause
C#
6124ebfb2fb2ebc75a3cbaa50256fa8dc4edf8c0
Update to Problem 1. Exchange If Greater
SimoPrG/CSharpPart1Homework
Conditional-Statements-Homework/ExchangeIfGreater/ExchangeIfGreater.cs
Conditional-Statements-Homework/ExchangeIfGreater/ExchangeIfGreater.cs
/*Problem 1. Exchange If Greater Write an if-statement that takes two double variables a and b and exchanges their values if the first one is greater than the second one. As a result print the values a and b, separated by a space. Examples: a b result 5 2 2 5 3 4 3 4 5.5 4.5 4...
/*Problem 1. Exchange If Greater Write an if-statement that takes two double variables a and b and exchanges their values if the first one is greater than the second one. As a result print the values a and b, separated by a space. Examples: a b result 5 2 2 5 3 4 3 4 5.5 4.5 4...
mit
C#
7e8e116d580585848e25f4c2eee145e0ba6b5e56
Fix to CachedProvider.ClearCache method
modesttree/Zenject,modesttree/Zenject,modesttree/Zenject
UnityProject/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs
UnityProject/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs
using System; using System.Collections.Generic; using ModestTree; namespace Zenject { public class CachedProvider : IProvider { readonly IProvider _creator; List<object> _instances; #if !ZEN_MULTITHREADING bool _isCreatingInstance; #endif public CachedProvider(IProvider creat...
using System; using System.Collections.Generic; using ModestTree; namespace Zenject { public class CachedProvider : IProvider { readonly IProvider _creator; List<object> _instances; #if !ZEN_MULTITHREADING bool _isCreatingInstance; #endif public CachedProvider(IProvider creat...
mit
C#
fc1cfbb07f5977dec1f2d93e6ad379f894477472
Mark `DefaultMethodBodyReader.ReadMethodBody` as virtual Method.
Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver
src/AsmResolver.DotNet/Serialized/DefaultMethodBodyReader.cs
src/AsmResolver.DotNet/Serialized/DefaultMethodBodyReader.cs
using System; using AsmResolver.DotNet.Code; using AsmResolver.DotNet.Code.Cil; using AsmResolver.PE.DotNet.Cil; using AsmResolver.PE.DotNet.Metadata.Tables; using AsmResolver.PE.DotNet.Metadata.Tables.Rows; namespace AsmResolver.DotNet.Serialized { /// <summary> /// Provides a default implementation of a <see...
using System; using AsmResolver.DotNet.Code; using AsmResolver.DotNet.Code.Cil; using AsmResolver.PE.DotNet.Cil; using AsmResolver.PE.DotNet.Metadata.Tables; using AsmResolver.PE.DotNet.Metadata.Tables.Rows; namespace AsmResolver.DotNet.Serialized { /// <summary> /// Provides a default implementation of a <see...
mit
C#
ee3e12267bbab7f3a822744867b6eb36d85173a8
Update AddWordArtWatermarkToWorksheet.cs
asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,ma...
Examples/CSharp/Articles/AddWordArtWatermarkToWorksheet.cs
Examples/CSharp/Articles/AddWordArtWatermarkToWorksheet.cs
using System.IO; using Aspose.Cells; using Aspose.Cells.Drawing; namespace Aspose.Cells.Examples.Articles { public class AddWordArtWatermarkToWorksheet { public static void Main(string[] args) { //ExStart:1 // The path to the documents directory. string data...
using System.IO; using Aspose.Cells; using Aspose.Cells.Drawing; namespace Aspose.Cells.Examples.Articles { public class AddWordArtWatermarkToWorksheet { public static void Main(string[] args) { // The path to the documents directory. string dataDir = Aspose.Cells.Examp...
mit
C#
701511cd85ca83bb9a015b96707af8ab8535893b
Fix a couple of potential race conditions in the ModelCacheManager
RvanDalen/Glass.Mapper,mikeedwards83/Glass.Mapper,pbustamante/Glass.Mapper,pbustamante/Glass.Mapper,RvanDalen/Glass.Mapper,RvanDalen/Glass.Mapper,mikeedwards83/Glass.Mapper,pbustamante/Glass.Mapper
Source/Glass.Mapper.Sc.Mvc/ModelCache/ModelCacheManager.cs
Source/Glass.Mapper.Sc.Mvc/ModelCache/ModelCacheManager.cs
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace Glass.Mapper.Sc.ModelCache { public class ModelCacheManager : IModelCacheManager { public static FileSys...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace Glass.Mapper.Sc.ModelCache { public class ModelCacheManager : IModelCacheManager { public static FileSys...
apache-2.0
C#
6d05eb6ab06f7369bdcf2e5a71c737cffd4b8357
Update ServiceKeys.cs
kphillpotts/IntroXamarinWithVS
app-imagesearch-cogs/ImageSearch/ImageSearch/Services/ServiceKeys.cs
app-imagesearch-cogs/ImageSearch/ImageSearch/Services/ServiceKeys.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ImageSearch.Services { public class GoogleServicesKeys { //Setup a custom search with Image enabled with a website of *: https://cse.google.com/cse/ public const string...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ImageSearch.Services { public class GoogleServicesKeys { //Setup a custom search with Image enabled with a website of *: https://cse.google.com/cse/ public const string...
mit
C#
7d75efda09d6753e536af60a5f93173a08b58825
Add one phrase to privacy policy
Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training
src/ChessVariantsTraining/Views/Misc/PrivacyPolicy.cshtml
src/ChessVariantsTraining/Views/Misc/PrivacyPolicy.cshtml
@section Title{Privacy policy} @section Description{Privacy policy of Chess Variants Training} <h1>Privacy policy</h1> <p>This document states what information Chess Variants Training collects, and how it gets used.</p> <p>Your information will never be sold to, or shared with, third parties, unless necessary by law.<...
@section Title{Privacy policy} @section Description{Privacy policy of Chess Variants Training} <h1>Privacy policy</h1> <p>This document states what information Chess Variants Training collects, and how it gets used.</p> <p>Your information will never be sold to, or shared with, third parties, unless necessary by law.<...
agpl-3.0
C#
45ab9fc3e899c70077f21d3a5b328fe97e973ad1
Allow downloading files from administrative mode
Sebazzz/IFS,Sebazzz/IFS,Sebazzz/IFS,Sebazzz/IFS
src/IFS.Web/Areas/Administration/Views/Files/Index.cshtml
src/IFS.Web/Areas/Administration/Views/Files/Index.cshtml
@using Humanizer @model FilesOverviewModel @{ ViewBag.Title = "Uploaded file overview"; } <h2>@ViewBag.Title</h2> @{ var sortedFiles = Model.Files.OrderBy(x => x.Metadata.OriginalFileName); } <table class="table table-striped"> <thead> <tr> <th>ID</th> <th>File name</th> <th...
@using Humanizer @model FilesOverviewModel @{ ViewBag.Title = "Uploaded file overview"; } <h2>@ViewBag.Title</h2> @{ var sortedFiles = Model.Files.OrderBy(x => x.Metadata.OriginalFileName); } <table class="table table-striped"> <thead> <tr> <th>ID</th> <th>File name</th> <th...
mit
C#
11a1587a42ddaf01a4e34bd927e222ba4ccedb36
Remove fields
mike-rowley/XamarinMediaManager,mike-rowley/XamarinMediaManager,martijn00/XamarinMediaManager,bubavanhalen/XamarinMediaManager,modplug/XamarinMediaManager,martijn00/XamarinMediaManager
MediaManager/Plugin.MediaManager.Abstractions/IMediaFile.cs
MediaManager/Plugin.MediaManager.Abstractions/IMediaFile.cs
using System; using System.ComponentModel; using Plugin.MediaManager.Abstractions; using Plugin.MediaManager.Abstractions.Implementations; namespace Plugin.MediaManager.Abstractions { /// <summary> /// Information about the mediafile /// </summary> /// <seealso cref="System.ComponentModel.INotifyPrope...
using System; using System.ComponentModel; using Plugin.MediaManager.Abstractions; using Plugin.MediaManager.Abstractions.Implementations; namespace Plugin.MediaManager.Abstractions { /// <summary> /// Information about the mediafile /// </summary> /// <seealso cref="System.ComponentModel.INotifyPrope...
mit
C#
5bb0515af5157d4cb61eee7a889921688a5e2ece
Call InitializeComponent, if no code-behind
canton7/Stylet,cH40z-Lord/Stylet,canton7/Stylet,cH40z-Lord/Stylet
MicroMVVM/ViewLocator.cs
MicroMVVM/ViewLocator.cs
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Windows; namespace MicroMVVM { public static class ViewLocator { public static UIElement LocateForModel(object...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Windows; namespace MicroMVVM { public static class ViewLocator { public static UIElement LocateForModel(object...
mit
C#
ce6c03f490051c9aac2ab48dbdc96a2732b42e9e
Add DPI property to Display.
roblillack/monoberry,roblillack/monoberry,roblillack/monoberry,roblillack/monoberry
libblackberry/screen/Display.cs
libblackberry/screen/Display.cs
using System; using System.Drawing; using System.Runtime.InteropServices; namespace BlackBerry.Screen { public class Display { [DllImport ("screen")] static extern int screen_get_display_property_iv (IntPtr handle, Property prop, out int val); [DllImport ("screen")] static extern int screen_get_display_pr...
using System; using System.Drawing; using System.Runtime.InteropServices; namespace BlackBerry.Screen { public class Display { [DllImport ("screen")] static extern int screen_get_display_property_iv (IntPtr handle, Property prop, out int val); [DllImport ("screen")] static extern int screen_get_display_pr...
mit
C#
37599b1ca38f3ac2d2f84aff77e6c2d260ff98ec
Add guards
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Fluent/ViewModels/Dialogs/EnterPasswordViewModel.cs
WalletWasabi.Fluent/ViewModels/Dialogs/EnterPasswordViewModel.cs
using System.Reactive.Linq; using System.Windows.Input; using ReactiveUI; using WalletWasabi.Gui.Validation; using WalletWasabi.Models; using WalletWasabi.Userfacing; namespace WalletWasabi.Fluent.ViewModels.Dialogs { public class EnterPasswordViewModel : DialogViewModelBase<string?> { private string? _confirmPass...
using System.Reactive.Linq; using System.Windows.Input; using ReactiveUI; using WalletWasabi.Gui.Validation; using WalletWasabi.Models; using WalletWasabi.Userfacing; namespace WalletWasabi.Fluent.ViewModels.Dialogs { public class EnterPasswordViewModel : DialogViewModelBase<string?> { private string? _confirmPass...
mit
C#
6b0b7e0b37a7d8c620627a58735a3b7b3e8ca769
Remove redundant finalizer
Excel-DNA/IntelliSense
Source/ExcelDna.IntelliSense/Util/RenewableDelayExecutor.cs
Source/ExcelDna.IntelliSense/Util/RenewableDelayExecutor.cs
using System; using System.Timers; namespace ExcelDna.IntelliSense.Util { /// <summary> /// Upon a signal, executes the specified action after the specified delay. /// If any other signal arrives during the waiting period, the delay interval begins anew. /// </summary> internal class RenewableDela...
using System; using System.Timers; namespace ExcelDna.IntelliSense.Util { /// <summary> /// Upon a signal, executes the specified action after the specified delay. /// If any other signal arrives during the waiting period, the delay interval begins anew. /// </summary> internal class RenewableDela...
mit
C#
9766591ce322ec172f6aa583919d2f43818266f1
Update the version to 1.7
ladimolnar/BitcoinDatabaseGenerator
Sources/BitcoinDatabaseGenerator/Properties/AssemblyInfo.cs
Sources/BitcoinDatabaseGenerator/Properties/AssemblyInfo.cs
//----------------------------------------------------------------------- // <copyright file="AssemblyInfo.cs"> // Copyright © Ladislau Molnar. All rights reserved. // </copyright> //----------------------------------------------------------------------- using System; using System.Reflection; using System.Runtime.Int...
//----------------------------------------------------------------------- // <copyright file="AssemblyInfo.cs"> // Copyright © Ladislau Molnar. All rights reserved. // </copyright> //----------------------------------------------------------------------- using System; using System.Reflection; using System.Runtime.Int...
apache-2.0
C#
59cdd2de132c098e03f1b2ba7090074787936652
define a stereotype for the ApiWriter role
CityofSantaMonica/Orchard.ParkingData,RaghavAbboy/Orchard.ParkingData
Permissions.cs
Permissions.cs
using System.Collections.Generic; using Orchard.Environment.Extensions.Models; using Orchard.Security.Permissions; namespace CSM.ParkingData { public class Permissions : IPermissionProvider { public static readonly Permission ApiWriter = new Permission { Name = "ApiWriter", ...
using System.Collections.Generic; using Orchard.Environment.Extensions.Models; using Orchard.Security.Permissions; namespace CSM.ParkingData { public class Permissions : IPermissionProvider { public static readonly Permission ApiWriter = new Permission { Name = "ApiWriter", ...
mit
C#
a99786d9c4a660b9096a6cff5aaf02e7bc71820c
Fix ICustomDrawOperation HitTest coordinate space.
jkoritzinsky/Avalonia,grokys/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,Perspex/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,grokys/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,wieslawsolt...
src/Avalonia.Visuals/Rendering/SceneGraph/CustomDrawOperation.cs
src/Avalonia.Visuals/Rendering/SceneGraph/CustomDrawOperation.cs
using System; using Avalonia.Media; using Avalonia.Platform; namespace Avalonia.Rendering.SceneGraph { internal sealed class CustomDrawOperation : DrawOperation { public Matrix Transform { get; } public ICustomDrawOperation Custom { get; } public CustomDrawOperation(ICustomDrawOperation...
using System; using Avalonia.Media; using Avalonia.Platform; namespace Avalonia.Rendering.SceneGraph { internal sealed class CustomDrawOperation : DrawOperation { public Matrix Transform { get; } public ICustomDrawOperation Custom { get; } public CustomDrawOperation(ICustomDrawOperation...
mit
C#
6356180b6abd5a11ab32508ad3dcd2984c561aee
Remove unnecessary code and fix double nesting causing filtering to not work
peppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu
osu.Game/Overlays/Settings/Sections/Gameplay/AudioSettings.cs
osu.Game/Overlays/Settings/Sections/Gameplay/AudioSettings.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.Graphics; using osu.Framework.Localisation; using osu.Game.Configuration; using osu.Game.Localisation; namespace osu....
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Localisation; using osu.Game.Configuration; using osu.Gam...
mit
C#
edac0dc83b6d2dac5ebd7c37dd0cf2ac632933e9
Update ArkUnconfirmedTransactionRequest.cs
sharkdev-j/ark-net,kristjank/ark-net
ark-net/Messages/Transaction/ArkUnconfirmedTransactionRequest.cs
ark-net/Messages/Transaction/ArkUnconfirmedTransactionRequest.cs
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ArkUnconfirmedTransactionRequest.cs" company="Ark"> // MIT License // // // // Copyright (c) 2017 Kristjan Košič // // // // Permission is hereby granted, free o...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ArkUnconfirmedTransactionRequest.cs" company="Ark Labs"> // MIT License // // // // Copyright (c) 2017 Kristjan Košič // // // // Permission is hereby granted, f...
mit
C#
02910e094f201be12b9a2f30d047b9c5d6d3cdb2
Remove unused parameter
BluewireTechnologies/cassette,andrewdavey/cassette,damiensawyer/cassette,andrewdavey/cassette,damiensawyer/cassette,andrewdavey/cassette,damiensawyer/cassette,honestegg/cassette,honestegg/cassette,BluewireTechnologies/cassette,honestegg/cassette
src/Cassette/HtmlTemplates/HtmlTemplateBundleDeserializer.cs
src/Cassette/HtmlTemplates/HtmlTemplateBundleDeserializer.cs
using System.Xml.Linq; namespace Cassette.HtmlTemplates { class HtmlTemplateBundleDeserializer : BundleDeserializer<HtmlTemplateBundle> { public HtmlTemplateBundleDeserializer(IUrlModifier urlModifier) : base(urlModifier) { } protected override HtmlTempla...
using System.Xml.Linq; using Cassette.IO; namespace Cassette.HtmlTemplates { class HtmlTemplateBundleDeserializer : BundleDeserializer<HtmlTemplateBundle> { public HtmlTemplateBundleDeserializer(IDirectory directory, IUrlModifier urlModifier) : base(urlModifier) { ...
mit
C#
5e8c636395117db228559425fccd57c7d85362b0
Test has wrong base class
amyzheng424/elasticsearch-net,UdiBen/elasticsearch-net,adam-mccoy/elasticsearch-net,geofeedia/elasticsearch-net,DavidSSL/elasticsearch-net,abibell/elasticsearch-net,DavidSSL/elasticsearch-net,faisal00813/elasticsearch-net,robertlyson/elasticsearch-net,elastic/elasticsearch-net,CSGOpenSource/elasticsearch-net,CSGOpenSou...
src/Tests/Nest.Tests.Integration/Core/Bulk/BulkUpdateTests.cs
src/Tests/Nest.Tests.Integration/Core/Bulk/BulkUpdateTests.cs
using System.Linq; using FluentAssertions; using NUnit.Framework; using Nest.Tests.MockData.Domain; namespace Nest.Tests.Integration.Core.Bulk { [TestFixture] public class BulkUpdateTests : IntegrationTests { [Test] public void BulkUpdateObject() { //Lets first insert some documents with id range 5000-60...
using System.Linq; using FluentAssertions; using NUnit.Framework; using Nest.Tests.MockData.Domain; namespace Nest.Tests.Integration.Core.Bulk { public class BulkUpdateTests : BulkTests { [Test] public void BulkUpdateObject() { //Lets first insert some documents with id range 5000-6000 var descriptor =...
apache-2.0
C#
cf3e4d9b2cb9776f960dabf10546a44749c6c95b
Update PowerShellLoggerFactoryExtensions.cs
tiksn/TIKSN-Framework
TIKSN.Core/PowerShell/PowerShellLoggerFactoryExtensions.cs
TIKSN.Core/PowerShell/PowerShellLoggerFactoryExtensions.cs
using System; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; namespace TIKSN.PowerShell { public static class PowerShellLoggerFactoryExtensions { public static ILoggerFactory AddPowerShell(this ILoggerFactory factory, IServicePro...
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using System; namespace TIKSN.PowerShell { public static class PowerShellLoggerFactoryExtensions { public static ILoggerFactory AddPowerShell(this ILoggerFactory factory, IServicePro...
mit
C#
7252afbc7e8578247ff4f560ec8cc16f3bb19151
Bump version to 0.9.3
quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot
CactbotOverlay/Properties/AssemblyInfo.cs
CactbotOverlay/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
apache-2.0
C#
cc5310e89f18ae126ad2aa703c3b2d76eb6d6f91
Bump version to 0.8.0
quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot
CactbotOverlay/Properties/AssemblyInfo.cs
CactbotOverlay/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
apache-2.0
C#
49c21241944c6f5704154adf4c26efb45c4bed48
Fix when specified date is out of the calendar range. (#1918)
ButchersBoy/MaterialDesignInXamlToolkit,ButchersBoy/MaterialDesignInXamlToolkit,ButchersBoy/MaterialDesignInXamlToolkit
MaterialDesignThemes.Wpf/Converters/CalendarYearMonthConverter.cs
MaterialDesignThemes.Wpf/Converters/CalendarYearMonthConverter.cs
using System; using System.Globalization; using System.Windows.Data; using System.Windows.Markup; namespace MaterialDesignThemes.Wpf.Converters { public sealed class CalendarYearMonthConverter: IMultiValueConverter { public object Convert(object[] values, Type targetType, object parameter, CultureInfo...
using System; using System.Globalization; using System.Windows.Data; using System.Windows.Markup; namespace MaterialDesignThemes.Wpf.Converters { public sealed class CalendarYearMonthConverter: IMultiValueConverter { public object Convert(object[] values, Type targetType, object parameter, CultureInfo...
mit
C#
8cdf3a1b7e681e49b6215d9be26a783c0725ee9d
Update ILRS to include VoidStatement
brianjmiller/TinCan.NET,limey98/TinCan.NET,RusticiSoftware/TinCan.NET
TinCan/ILRS.cs
TinCan/ILRS.cs
/* Copyright 2014 Rustici Software Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed t...
/* Copyright 2014 Rustici Software Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed t...
apache-2.0
C#
662f129a1b804c0d462440d5fb6240cb2d8fc637
Fix layout switcher tool menu path
spriest487/spacetrader-utils
Editor/AspectRatioLayoutSwitcherEditor.cs
Editor/AspectRatioLayoutSwitcherEditor.cs
using UnityEditor; using UnityEngine; namespace SpaceTrader.Util.EditorUtil { public static class AspectRatioLayoutSwitcherEditor { [MenuItem("Tools/SpaceTrader/Refresh All Layout Switchers")] private static void RefreshAllSwitchersInScene() { var switchers = Object.FindObjectsOfType<A...
using UnityEditor; using UnityEngine; namespace SpaceTrader.Util.EditorUtil { public static class AspectRatioLayoutSwitcherEditor { [MenuItem("SpaceTrader/Refresh All Layout Switchers")] private static void RefreshAllSwitchersInScene() { var switchers = Object.FindObjectsOfType<AspectR...
mit
C#
1bf5ad810214e532c60a9ed5f33cbe584fa37a05
Update SuperReducedString.cs
shreeharshas/hackerrank,shreeharshas/hackerrank,shreeharshas/Algorithms,shreeharshas/Algorithms,shreeharshas/Algorithms,shreeharshas/Algorithms,shreeharshas/hackerrank,shreeharshas/Algorithms,shreeharshas/hackerrank
hackerrank/SuperReducedString.cs
hackerrank/SuperReducedString.cs
/*Interim version, to be updated*/ /*Based on hackerrank question at https://www.hackerrank.com/challenges/reduced-string */ using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { string s = Console.ReadLine(); Console.WriteLine(new Solut...
/*Interim version, to be updated*/ /*Based on hackerrank question at https://www.hackerrank.com/challenges/reduced-string */ using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { string s = Console.ReadLine(); Console.WriteLine(reduce(s)...
mit
C#
353559810b7467984ba1d6df16c0dd98ab48e85a
Fix Unix build
shrah/corert,tijoytom/corert,shrah/corert,gregkalapos/corert,tijoytom/corert,gregkalapos/corert,gregkalapos/corert,krytarowski/corert,krytarowski/corert,yizhang82/corert,tijoytom/corert,shrah/corert,botaberg/corert,botaberg/corert,shrah/corert,tijoytom/corert,botaberg/corert,yizhang82/corert,yizhang82/corert,botaberg/c...
src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs
src/System.Private.CoreLib/src/System/Threading/Timer.Unix.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 Microsoft.Win32.SafeHandles; using System.Runtime.InteropServices; namespace System.Threading { // //...
// 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. namespace System.Threading { // // Unix-specific implementation of Timer // internal partial class T...
mit
C#
ed827d514f42d2d774f9b592dfee85c962036b94
Add comments
UselessToucan/osu,ppy/osu,ZLima12/osu,smoogipoo/osu,UselessToucan/osu,johnneijzen/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,2yangk23/osu,EVAST9919/osu,peppy/osu,2yangk23/osu,EVAST9919/osu,peppy/osu,peppy/osu-new,smoogipooo/osu,NeoAdonis/osu,smoogipoo/osu,ZLima12/osu,johnneijzen/o...
osu.Game/Online/API/Requests/Responses/APIKudosuHistory.cs
osu.Game/Online/API/Requests/Responses/APIKudosuHistory.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 Humanizer; using Newtonsoft.Json; namespace osu.Game.Online.API.Requests.Responses { public class APIKudosuHistory { [JsonProperty("...
// 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 Humanizer; using Newtonsoft.Json; namespace osu.Game.Online.API.Requests.Responses { public class APIKudosuHistory { [JsonProperty("...
mit
C#
576400d0221b4e13a11687e5db4377156a684e8e
Update #283 - Switch ADO message over to use ITimedMessage
dudzon/Glimpse,SusanaL/Glimpse,SusanaL/Glimpse,rho24/Glimpse,Glimpse/Glimpse,Glimpse/Glimpse,rho24/Glimpse,SusanaL/Glimpse,elkingtonmcb/Glimpse,elkingtonmcb/Glimpse,codevlabs/Glimpse,paynecrl97/Glimpse,flcdrg/Glimpse,rho24/Glimpse,codevlabs/Glimpse,dudzon/Glimpse,sorenhl/Glimpse,Glimpse/Glimpse,paynecrl97/Glimpse,dudzo...
source/Glimpse.Ado/Message/AdoMessage.cs
source/Glimpse.Ado/Message/AdoMessage.cs
using System; using System.Diagnostics; using System.Reflection; using Glimpse.Core.Message; namespace Glimpse.Ado.Message { public abstract class AdoMessage : ITimedMessage { protected AdoMessage(Guid connectionId) { Id = Guid.NewGuid(); ConnectionId = connectionId; ...
using System; using System.Diagnostics; using System.Reflection; using Glimpse.Core.Message; namespace Glimpse.Ado.Message { public abstract class AdoMessage : IMessage { protected AdoMessage(Guid connectionId) { Id = Guid.NewGuid(); ConnectionId = connectionId; ...
apache-2.0
C#
7f0ee6f608c36e66a9894c1013e3a7db68021e39
Make the test pass for PostgreSQL, using a bit of a hack
lnu/nhibernate-core,alobakov/nhibernate-core,fredericDelaporte/nhibernate-core,fredericDelaporte/nhibernate-core,RogerKratz/nhibernate-core,livioc/nhibernate-core,nkreipke/nhibernate-core,gliljas/nhibernate-core,RogerKratz/nhibernate-core,gliljas/nhibernate-core,lnu/nhibernate-core,hazzik/nhibernate-core,RogerKratz/nhi...
src/NHibernate.Test/ExpressionTest/InsensitiveLikeExpressionFixture.cs
src/NHibernate.Test/ExpressionTest/InsensitiveLikeExpressionFixture.cs
using System; using System.Data; using System.Text; using NHibernate.Engine; using NExpression = NHibernate.Expression; using NHibernate.SqlCommand; using NHibernate.Type; using NHibernate.DomainModel; using NUnit.Framework; namespace NHibernate.Test.ExpressionTest { /// <summary> /// Summary description for Insen...
using System; using System.Data; using System.Text; using NHibernate.Engine; using NExpression = NHibernate.Expression; using NHibernate.SqlCommand; using NHibernate.Type; using NHibernate.DomainModel; using NUnit.Framework; namespace NHibernate.Test.ExpressionTest { /// <summary> /// Summary description for Insen...
lgpl-2.1
C#
6bdcdec1b500093e8add11cfeee5f6de9900710a
Throw MultipleBeforeAttribute exception when multiple before attributes are decorated on same method/type.
lijunle/Nancy.AttributeRouting,lijunle/Nancy.AttributeRouting
Nancy.AttributeRouting/BeforeAttribute.cs
Nancy.AttributeRouting/BeforeAttribute.cs
namespace Nancy.AttributeRouting { using System; using System.Linq; using System.Reflection; using Nancy.AttributeRouting.Exceptions; using Nancy.TinyIoc; /// <summary> /// Before attribute provides a hook to execute before enter the view model execution. /// </summary> [AttributeU...
namespace Nancy.AttributeRouting { using System; using System.Linq; using System.Reflection; using Nancy.TinyIoc; /// <summary> /// Before attribute provides a hook to execute before enter the view model execution. /// </summary> [AttributeUsage(AttributeTargets.Class | AttributeTarget...
mit
C#
31a15075ed6947e6f7998279d6daf59438304728
Rename missed parameter
AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia
src/Avalonia.Controls/Platform/Screen.cs
src/Avalonia.Controls/Platform/Screen.cs
namespace Avalonia.Platform { /// <summary> /// Represents a single display screen. /// </summary> public class Screen { /// <summary> /// Gets the pixel density of the screen. /// This is a scaling factor so multiply by 100 to get a percentage. /// </summary> ...
namespace Avalonia.Platform { /// <summary> /// Represents a single display screen. /// </summary> public class Screen { /// <summary> /// Gets the pixel density of the screen. /// This is a scaling factor so multiply by 100 to get a percentage. /// </summary> ...
mit
C#
15e19a2406fbddc80801d595407eaec6c7363670
Refactor BoundedMemory to use a Dictionary instead a byte array
rmterra/NesZord
src/NesZord.Core/Memory/BoundedMemory.cs
src/NesZord.Core/Memory/BoundedMemory.cs
using System; using System.Collections.Generic; namespace NesZord.Core.Memory { internal class BoundedMemory : IBoundedMemory { private const int LENGTH = 0x0800; private Dictionary<int, byte> data; public BoundedMemory(MemoryAddress firstAddress, MemoryAddress lastAddress) { this.FirstAddress = firstA...
using System; namespace NesZord.Core.Memory { internal class BoundedMemory : IBoundedMemory { private const int LENGTH = 0x0800; private byte[] data; public BoundedMemory(MemoryAddress firstAddress, MemoryAddress lastAddress) { this.FirstAddress = firstAddress ?? throw new ArgumentNullException(nameof(...
apache-2.0
C#
77bfcf9607c5de0bae5de51b5af741f1c9b6e2b3
add version comment
yasokada/unity-150908-udpTimeGraph
Assets/AppInfo.cs
Assets/AppInfo.cs
using UnityEngine; using System.Collections; /* * v0.4 2015/09/10 * - can handle set,yrange command */ namespace NS_appInfo // NS stands for NameSpace { public static class AppInfo { public const string Version = "v0.4"; public const string Name = "udpTimeGraph"; } }
using UnityEngine; using System.Collections; namespace NS_appInfo // NS stands for NameSpace { public static class AppInfo { public const string Version = "v0.4"; public const string Name = "udpTimeGraph"; } }
mit
C#
69d997124bd3aa66b26aedb4c29b318b7cfb7d12
update sample to use MetricsHttpListener
Recognos/Metrics.NET,DeonHeyns/Metrics.NET,Recognos/Metrics.NET,ntent-ad/Metrics.NET,Liwoj/Metrics.NET,MetaG8/Metrics.NET,DeonHeyns/Metrics.NET,Liwoj/Metrics.NET,cvent/Metrics.NET,mnadel/Metrics.NET,alhardy/Metrics.NET,mnadel/Metrics.NET,ntent-ad/Metrics.NET,alhardy/Metrics.NET,huoxudong125/Metrics.NET,etishor/Metrics....
Samples/Metrics.SamplesConsole/Program.cs
Samples/Metrics.SamplesConsole/Program.cs
using System; using Metrics.Samples; using Metrics.Visualization; namespace Metrics.SamplesConsole { class Program { static void Main(string[] args) { Metric.MachineCounters.RegisterAll(); SampleMetrics.RunSomeRequests(); //Metric.Reports.PrintConsoleRepor...
using System; using Metrics.Samples; namespace Metrics.SamplesConsole { class Program { static void Main(string[] args) { Metric.MachineCounters.RegisterAll(); SampleMetrics.RunSomeRequests(); Metric.Reports.PrintConsoleReport(TimeSpan.FromSeconds(1)); ...
apache-2.0
C#
e01b5b224cafef1c8746871d9b1768d029c81f29
Add IncrementRecursionCounterThrow() which throws InfiniteRecursionException
jorik041/dnlib,Arthur2e5/dnlib,yck1509/dnlib,ZixiangBoy/dnlib,picrap/dnlib,ilkerhalil/dnlib,0xd4d/dnlib,modulexcite/dnlib,kiootic/dnlib
src/DotNet/RecursionCounter.cs
src/DotNet/RecursionCounter.cs
using System; namespace dot10.DotNet { [Serializable] class InfiniteRecursionException : Exception { /// <summary> /// Default constructor /// </summary> public InfiniteRecursionException() { } /// <summary> /// Constructor /// </summary> /// <param name="msg">Error message</param> public Infin...
using System; namespace dot10.DotNet { struct RecursionCounter { /// <summary> /// Max recursion count. If this is reached, we won't continue, and will use a default value. /// </summary> public const int MAX_RECURSION_COUNT = 100; int counter; /// <summary> /// Gets the recursion counter /// </summ...
mit
C#
5a7dbb2980fa66566bf3e9acdd06aa0ea8a9cee5
Reduce diff size: undo autoformat.
jamesmanning/RunProcessAsTask
src/DummyConsoleApp/Program.cs
src/DummyConsoleApp/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading; namespace DummyConsoleApp { public class Program { static void Main(string[] args) { int exitCodeToReturn = int.Parse(args[0]); int millisecondsToSleep = int.Parse(args[1]); ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; namespace DummyConsoleApp { public class Program { static void Main(string[] args) { var exitCodeToReturn = int.Parse(args[0]); var millisecondsToSleep = int.Parse(args[1]); ...
mit
C#
655768a47d04d50434b7bfaaa7dd7adf10d1c63f
Add TODO comment to IFindItemAttribute
YevgeniyShunevych/Atata,atata-framework/atata,YevgeniyShunevych/Atata,atata-framework/atata
src/Atata/Attributes/Behaviors/IFindItemAttribute.cs
src/Atata/Attributes/Behaviors/IFindItemAttribute.cs
namespace Atata { // TODO: Remove IFindItemAttribute. public interface IFindItemAttribute { IItemElementFindStrategy CreateStrategy(UIComponent component, UIComponentMetadata metadata); } }
namespace Atata { public interface IFindItemAttribute { IItemElementFindStrategy CreateStrategy(UIComponent component, UIComponentMetadata metadata); } }
apache-2.0
C#
57a004aeb3d76fff31a394c54b52c675f599e614
add UserMongoDB extension method
dotnetcore/CAP,ouraspnet/cap,dotnetcore/CAP,dotnetcore/CAP
src/DotNetCore.CAP.MongoDB/CAP.Options.Extensions.cs
src/DotNetCore.CAP.MongoDB/CAP.Options.Extensions.cs
// Copyright (c) .NET Core Community. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using DotNetCore.CAP; using DotNetCore.CAP.MongoDB; // ReSharper disable once CheckNamespace namespace Microsoft.Extensions.DependencyInjection { ...
// Copyright (c) .NET Core Community. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using DotNetCore.CAP; using DotNetCore.CAP.MongoDB; // ReSharper disable once CheckNamespace namespace Microsoft.Extensions.DependencyInjection { ...
mit
C#
06818a4911844071bb1e4e979a42ac8d4a98075a
Update AssemblyInfo.cs
LANDIS-II-Foundation/Landis-Spatial-Modeling-Library
src/Landscapes/AssemblyInfo.cs
src/Landscapes/AssemblyInfo.cs
using System.Reflection; [assembly: AssemblyDescription("Landscape data for spatial modeling")]
using System.Reflection; [assembly: AssemblyDescription("Landscape data for spatial modeling")] [assembly: AssemblyCopyright("Copyright 2010-2012 Green Code LLC")]
apache-2.0
C#
8eb94d3a494ce8ae74a660fc02a93fc076a9a130
Switch over to using Regex extension
peterblazejewicz/Glimpse.Prototype,pranavkm/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,zanetdev/Glimpse.Prototype,Glimpse/Glimpse.Prototype,zanetdev/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,pranavkm/Glimpse.Pr...
src/Glimpse.Agent.Web/GlimpseAgentWebOptionsSetup.cs
src/Glimpse.Agent.Web/GlimpseAgentWebOptionsSetup.cs
using System; using Glimpse.Agent.Web.Options; using Microsoft.Framework.OptionsModel; namespace Glimpse.Agent.Web { public class GlimpseAgentWebOptionsSetup : ConfigureOptions<GlimpseAgentWebOptions> { public GlimpseAgentWebOptionsSetup() : base(ConfigureGlimpseAgentWebOptions) { ...
using System; using Glimpse.Agent.Web.Options; using Microsoft.Framework.OptionsModel; namespace Glimpse.Agent.Web { public class GlimpseAgentWebOptionsSetup : ConfigureOptions<GlimpseAgentWebOptions> { public GlimpseAgentWebOptionsSetup() : base(ConfigureGlimpseAgentWebOptions) { ...
mit
C#
61354cf8f49c9260195f7c47bb7a251db0bdd815
Remove Test attribute from a method that is not a test
hazzik/nhibernate-core,hazzik/nhibernate-core,lnu/nhibernate-core,alobakov/nhibernate-core,nhibernate/nhibernate-core,alobakov/nhibernate-core,gliljas/nhibernate-core,gliljas/nhibernate-core,fredericDelaporte/nhibernate-core,nhibernate/nhibernate-core,hazzik/nhibernate-core,nkreipke/nhibernate-core,livioc/nhibernate-co...
src/NHibernate.Test/NHSpecificTest/NH1864/Fixture.cs
src/NHibernate.Test/NHSpecificTest/NH1864/Fixture.cs
using System; using NUnit.Framework; namespace NHibernate.Test.NHSpecificTest.NH1864 { [TestFixture] public class Fixture : BugTestCase { [Test] public void Bug() { Assert.DoesNotThrow(() => ExecuteQuery(s=> s.EnableFilter("validity").SetParameter("date", DateTime.Now))); } [Test] pub...
using System; using NUnit.Framework; namespace NHibernate.Test.NHSpecificTest.NH1864 { [TestFixture] public class Fixture : BugTestCase { [Test] public void ExecuteQuery(Action<ISession> sessionModifier) { using (ISession session = OpenSession()) { using (ITransaction tx = session.Begin...
lgpl-2.1
C#
c2e6d15747764c11ba37edc56ddfb84107b2de7b
Fix serialisation of UserAccount model.
DimensionDataResearch/cloudcontrol-client-core
src/DD.CloudControl.Client/Models/Directory/UserAccount.cs
src/DD.CloudControl.Client/Models/Directory/UserAccount.cs
using System; using System.Collections.Generic; using System.Xml.Serialization; namespace DD.CloudControl.Client.Models.Directory { /// <summary> /// Represents information about a Cloud Control user account. /// </summary> [XmlRoot("Account", Namespace = XmlNamespaces.Directory)] public class UserAccount { /...
using System; using System.Collections.Generic; using System.Xml.Serialization; namespace DD.CloudControl.Client.Models.Directory { /// <summary> /// Represents information about a Cloud Control user account. /// </summary> [XmlRoot("Account", Namespace = XmlNamespaces.Directory)] public class UserAccount { /...
mit
C#
28e3ded2e9a581797d62be648168cebe5e6ab117
Fix the test on MySQL, should work now
RogerKratz/nhibernate-core,RogerKratz/nhibernate-core,lnu/nhibernate-core,gliljas/nhibernate-core,fredericDelaporte/nhibernate-core,livioc/nhibernate-core,alobakov/nhibernate-core,hazzik/nhibernate-core,ngbrown/nhibernate-core,nhibernate/nhibernate-core,nhibernate/nhibernate-core,ManufacturingIntelligence/nhibernate-co...
src/NHibernate.Test/ExpressionTest/NotExpressionFixture.cs
src/NHibernate.Test/ExpressionTest/NotExpressionFixture.cs
using System; using System.Data; using System.Text; using NHibernate.Engine; using NExpression = NHibernate.Expression; using NHibernate.SqlCommand; using NHibernate.Type; using NHibernate.DomainModel; using NUnit.Framework; namespace NHibernate.Test.ExpressionTest { /// <summary> /// Summary description for NotEx...
using System; using System.Data; using System.Text; using NHibernate.Engine; using NExpression = NHibernate.Expression; using NHibernate.SqlCommand; using NHibernate.Type; using NHibernate.DomainModel; using NUnit.Framework; namespace NHibernate.Test.ExpressionTest { /// <summary> /// Summary description for NotEx...
lgpl-2.1
C#
fe5aabcd77192fa94850befb4b9d05c4149e9374
Add TODO
OvidiuCaba/StatisticsRomania,OvidiuCaba/StatisticsRomania,OvidiuCaba/StatisticsRomania,OvidiuCaba/StatisticsRomania
src/StatisticsRomania/StatisticsRomania.iOS/AppDelegate.cs
src/StatisticsRomania/StatisticsRomania.iOS/AppDelegate.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Foundation; using UIKit; using StatisticsRomania.Repository; // TODO: Add AdMob: https://xamarininsider.com/2019/04/10/monetising-your-xamarin-forms-app-with-admob/?utm_campaign=Weekly%2BXamarin&utm_medium=email&utm_source=Week...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Foundation; using UIKit; using StatisticsRomania.Repository; namespace StatisticsRomania.iOS { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the appl...
mit
C#
4bc4f35ec96c8ed1e408414487f8cc5510e8444e
Switch Thomas Rayner over to IWorkAtMicrosoft
planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell
src/Firehose.Web/Authors/ThomasRayner.cs
src/Firehose.Web/Authors/ThomasRayner.cs
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class ThomasRayner : IWorkAtMicrosoft { public string FirstName => "Thomas"; public string LastN...
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class ThomasRayner : IAmAMicrosoftMVP { public string FirstName => "Thomas"; public string LastN...
mit
C#
61373a6199995b93ab8bb3648096ce2471d2a159
Modify test to catch all possible nullable values
ritterim/zendesk-ticket-exporter
test/ZendeskTicketExporter.Core.Tests/TicketRetrieverTests.cs
test/ZendeskTicketExporter.Core.Tests/TicketRetrieverTests.cs
using Moq; using System; using System.Threading.Tasks; using Xunit; namespace ZendeskTicketExporter.Core.Tests { public class TicketRetrieverTests { private static readonly DateTime Jan1_2014 = new DateTime(2014, 1, 1); private readonly IWait _wait; private readonly IZendeskApi _zende...
using Moq; using System; using System.Threading.Tasks; using Xunit; namespace ZendeskTicketExporter.Core.Tests { public class TicketRetrieverTests { private static readonly DateTime Jan1_2014 = new DateTime(2014, 1, 1); private readonly IWait _wait; private readonly IZendeskApi _zende...
mit
C#
bc85c8cb3cfa4f9b557043770fc7b786e176221e
Remove Log
ApplETS/ETSMobile-WindowsPlatforms,ApplETS/ETSMobile-WindowsPlatforms
Ets.Mobile/Ets.Mobile.Shared/Views/Pages/Account/LoginPage.cs
Ets.Mobile/Ets.Mobile.Shared/Views/Pages/Account/LoginPage.cs
using Ets.Mobile.ViewModel.Pages.Account; using ReactiveUI; using System; using System.Reactive.Linq; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; namespace Ets.Mobile.Pages.Account { public partial class LoginPage : IViewFor<LoginViewModel> { ...
using Ets.Mobile.ViewModel.Pages.Account; using ReactiveUI; using System; using System.Reactive.Linq; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; namespace Ets.Mobile.Pages.Account { public partial class LoginPage : IViewFor<LoginViewModel> { ...
apache-2.0
C#
adc7d393da290bb7d6a420851fb63fd4004eaeaa
Apply readonly fields refactoring
eightlittlebits/elbsms
elbsms_core/Cartridge.cs
elbsms_core/Cartridge.cs
using System.IO; namespace elbsms_core { public class Cartridge { private readonly byte[] _romData; public static Cartridge LoadFromFile(string filename) { byte[] fileData = File.ReadAllBytes(filename); return new Cartridge(fileData); } privat...
using System.IO; namespace elbsms_core { public class Cartridge { private byte[] _romData; public static Cartridge LoadFromFile(string filename) { byte[] fileData = File.ReadAllBytes(filename); return new Cartridge(fileData); } private Cartrid...
mit
C#
6bdad4f9e4e643d93d6e0ff2c889a692704c4809
Work with Jeff's canvas modifications.
eightyeight/t3d-bones,eightyeight/t3d-bones
main.cs
main.cs
// Display a splash window immediately to improve app responsiveness before // engine is initialized and main window created displaySplashWindow("splash.bmp"); // Console does something. setLogMode(2); // Disable script trace. trace(false); //---------------------------------------------------------------------------...
// Display a splash window immediately to improve app responsiveness before // engine is initialized and main window created displaySplashWindow("splash.bmp"); // Console does something. setLogMode(2); // Disable script trace. trace(false); //---------------------------------------------------------------------------...
mit
C#
e4edd6608b6061466e5bea3cefb9af5ebf7a35c8
Update description text
imulus/census,imulus/census
Src/Census/UmbracoObjectRelations/DataTypeToPropertyEditor.cs
Src/Census/UmbracoObjectRelations/DataTypeToPropertyEditor.cs
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; using Census.Core; using Census.Core.Interfaces; using Census.UmbracoObject; using umbraco.cms.businesslogic.datatype; using umbraco.cms.businesslogic.web; using umbraco.interfaces; namespace Census.UmbracoObjectRel...
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; using Census.Core; using Census.Core.Interfaces; using Census.UmbracoObject; using umbraco.cms.businesslogic.datatype; using umbraco.cms.businesslogic.web; using umbraco.interfaces; namespace Census.UmbracoObjectRel...
mit
C#
b83634e4ca30fd02adfdfcc934e92729ee51583e
Fix potentially unblocking too early (due to `Running` state)
ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework
osu.Framework/Threading/GameThreadSynchronizationContext.cs
osu.Framework/Threading/GameThreadSynchronizationContext.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.Diagnostics; using System.Threading; #nullable enable namespace osu.Framework.Threading { /// <summary> /// A synchronisation context which posts a...
// 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.Diagnostics; using System.Threading; #nullable enable namespace osu.Framework.Threading { /// <summary> /// A synchronisation context which posts a...
mit
C#
3e7df3bf026b205d2922192e16567ebb05bdb02b
change heading font size
NeoAdonis/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu-new,peppy/osu,ppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu
osu.Game/Graphics/Containers/Markdown/OsuMarkdownHeading.cs
osu.Game/Graphics/Containers/Markdown/OsuMarkdownHeading.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 Markdig.Syntax; using osu.Framework.Graphics.Containers.Markdown; namespace osu.Game.Graphics.Containers.Markdown { public class OsuMarkdownHeading : MarkdownH...
// 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 Markdig.Syntax; using osu.Framework.Graphics.Containers.Markdown; namespace osu.Game.Graphics.Containers.Markdown { public class OsuMarkdownHeading : MarkdownH...
mit
C#
e944deb2bb68129e641269330cfca34313a84c4f
Mark sub-header navigation link as 'last' so that the trailing vertical bar goes away.
walty8/trac,walty8/trac,walty8/trac,jun66j5/trac-ja,netjunki/trac-Pygit2,netjunki/trac-Pygit2,netjunki/trac-Pygit2,jun66j5/trac-ja,walty8/trac,jun66j5/trac-ja,jun66j5/trac-ja
templates/log.cs
templates/log.cs
<?cs include "header.cs"?> <?cs include "macros.cs"?> <div id="page-content"> <ul class="subheader-links"> <li class="last"><a href="<?cs var:log.items.0.file_href ?>">View Latest Revision</a></li> </ul> <div id="main"> <div id="main-content"> <h1 id="log-hdr" class="hide">Revision log for <?cs var:log.path...
<?cs include "header.cs"?> <?cs include "macros.cs"?> <div id="page-content"> <ul class="subheader-links"> <li><a href="<?cs var:log.items.0.file_href ?>">View Latest Revision</a></li> </ul> <div id="main"> <div id="main-content"> <h1 id="log-hdr" class="hide">Revision log for <?cs var:log.path ?></h1> <?cs c...
bsd-3-clause
C#
31bfcb6b05262cad46fce35340932b742e1b88e6
Fix BindingValue comparison.
jkoritzinsky/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,Perspex/Perspex,jkoritzinsky/Ava...
src/Avalonia.Controls/NativeMenuBar.cs
src/Avalonia.Controls/NativeMenuBar.cs
using System; using Avalonia.Controls.Primitives; using Avalonia.Interactivity; namespace Avalonia.Controls { public class NativeMenuBar : TemplatedControl { public static readonly AttachedProperty<bool> EnableMenuItemClickForwardingProperty = AvaloniaProperty.RegisterAttached<NativeMenuBar...
using System; using Avalonia.Controls.Primitives; using Avalonia.Interactivity; using Avalonia.Styling; namespace Avalonia.Controls { public class NativeMenuBar : TemplatedControl { public static readonly AttachedProperty<bool> EnableMenuItemClickForwardingProperty = AvaloniaProperty.Regist...
mit
C#
1c82c382648f8a20216725e37d79d2c488cb647c
Add assemblywide cake namespace imports
vCipher/Cake.Hg
src/Cake.Hg/Properties/AssemblyInfo.cs
src/Cake.Hg/Properties/AssemblyInfo.cs
using Cake.Core.Annotations; 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....
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("Ca...
mit
C#
6de7bdb7b9ed5901c6bbc6fe12550d33ac7adab4
fix set switching
isse-augsburg/ssharp,isse-augsburg/ssharp,isse-augsburg/ssharp,isse-augsburg/ssharp,maul-esel/ssharp,maul-esel/ssharp,maul-esel/ssharp,isse-augsburg/ssharp,maul-esel/ssharp
Source/SafetySharp/Analysis/Heuristics/SubsumptionHeuristic.cs
Source/SafetySharp/Analysis/Heuristics/SubsumptionHeuristic.cs
namespace SafetySharp.Analysis.Heuristics { using System.Collections.Generic; using Modeling; using Runtime; public class SubsumptionHeuristic : IFaultSetHeuristic { private Fault[] allFaults; private readonly HashSet<FaultSet> subsumedSets = new HashSet<FaultSet>(); priv...
namespace SafetySharp.Analysis.Heuristics { using System.Collections.Generic; using Modeling; using Runtime; public class SubsumptionHeuristic : IFaultSetHeuristic { private Fault[] allFaults; private readonly HashSet<FaultSet> subsumedSets = new HashSet<FaultSet>(); priv...
mit
C#
e0a6fb4e125c79300cc32bab0527b16a2bc5bc97
Mark ROM region for Glulx
DustinCampbell/ifvm
src/ifvm.glulx/GlulxMachine.cs
src/ifvm.glulx/GlulxMachine.cs
using System; using IFVM.Core; namespace IFVM.Glulx { public class GlulxMachine : Machine { public GlulxHeader Header { get; } public GlulxMachine(Memory memory) : base(memory) { this.Header = new GlulxHeader(memory); VerifyChecksum(memory, this.Header.Checksu...
using System; using IFVM.Core; namespace IFVM.Glulx { public class GlulxMachine : Machine { public GlulxHeader Header { get; } public GlulxMachine(Memory memory) : base(memory) { this.Header = new GlulxHeader(memory); VerifyChecksum(memory, this.Header.Checksu...
mit
C#
294aff18f86a1a83d23a1a5b366fe6db0a0bf1e2
Update ProjectContainer.IImageCache.cs
wieslawsoltes/Core2D,Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Core2D/ViewModels/Containers/ProjectContainer.IImageCache.cs
src/Core2D/ViewModels/Containers/ProjectContainer.IImageCache.cs
using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using Core2D.Renderer; namespace Core2D.Containers { public partial class ProjectContainer : BaseContainer, IImageCache { private readonly IDictionary<string, byte[]> _images = new Dictionary<string, byte[]>(); ...
using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using Core2D.Renderer; namespace Core2D.Containers { [DataContract(IsReference = true)] public partial class ProjectContainer : BaseContainer, IImageCache { private readonly IDictionary<string, byte[]> _images...
mit
C#
6516dac27181a9a44c7361caa56d435cc41e822e
Fix bug with LastWiki
Brijen/lastfm,realworld666/lastfm
src/IF.Lastfm.Core/Objects/LastWiki.cs
src/IF.Lastfm.Core/Objects/LastWiki.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json.Linq; namespace IF.Lastfm.Core.Objects { public class LastWiki : ILastfmObject { #region Properties public DateTime Published { get; set; } public ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json.Linq; namespace IF.Lastfm.Core.Objects { public class LastWiki : ILastfmObject { #region Properties public DateTime Published { get; set; } public ...
mit
C#
9f1689251ad126db5ba2faa3b47f4d602423d9e8
Update AssemblyInfo.cs
BaamStudios/SharpAngie,BaamStudios/SharpAngie,BaamStudios/SharpAngie
BaamStudios.SharpAngieDemo/Properties/AssemblyInfo.cs
BaamStudios.SharpAngieDemo/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // ass...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // ass...
mit
C#
9a4e14569bba51cefc427f4d76875066808c33e1
Remove the Copy to Output Directory file property
DartVS/DartVS,DartVS/DartVS,DartVS/DartVS,modulexcite/DartVS,modulexcite/DartVS,modulexcite/DartVS
DanTup.DartVS.Vsix/ProjectSystem/DartFileNodeProperties.cs
DanTup.DartVS.Vsix/ProjectSystem/DartFileNodeProperties.cs
namespace DanTup.DartVS.ProjectSystem { using System.ComponentModel; using System.Runtime.InteropServices; using Microsoft.VisualStudio.Project; using prjBuildAction = VSLangProj.prjBuildAction; [ComVisible(true)] public class DartFileNodeProperties : FileNodeProperties { public Da...
namespace DanTup.DartVS.ProjectSystem { using System.ComponentModel; using System.Runtime.InteropServices; using Microsoft.VisualStudio.Project; using prjBuildAction = VSLangProj.prjBuildAction; [ComVisible(true)] public class DartFileNodeProperties : FileNodeProperties { public Da...
mit
C#
d2f5cd6f28096dc736ddc1276e2c33a81f1bc608
Update ITableService.cs
tamasflamich/nmemory
Main/Source/NMemory.Shared/Services/Contracts/ITableService.cs
Main/Source/NMemory.Shared/Services/Contracts/ITableService.cs
// ---------------------------------------------------------------------------------- // <copyright file="ITableService.cs" company="NMemory Team"> // Copyright (C) NMemory Team // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentati...
// ---------------------------------------------------------------------------------- // <copyright file="ITableService.cs" company="NMemory Team"> // Copyright (C) NMemory Team // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentati...
mit
C#
89005b69c1216bd93a5a972d4c77704916fcee2d
Fix mutation
ASP-NET-MVC-Boilerplate/Templates,ASP-NET-MVC-Boilerplate/Templates
Source/GraphQLTemplate/Source/GraphQLTemplate/Schemas/MutationObject.cs
Source/GraphQLTemplate/Source/GraphQLTemplate/Schemas/MutationObject.cs
namespace GraphQLTemplate.Schemas { using GraphQLTemplate.Resolvers; using HotChocolate.Types; /// <summary> /// All mutations defined in the schema used to modify data. /// </summary> /// <example> /// This is an example mutation to create a new human. /// <c> /// mutation createHu...
namespace GraphQLTemplate.Schemas { using GraphQLTemplate.Resolvers; using HotChocolate.Types; /// <summary> /// All mutations defined in the schema used to modify data. /// </summary> /// <example> /// This is an example mutation to create a new human. /// <c> /// mutation createHu...
mit
C#
97c583798a6f4aaa618db1b16087f0f81c3195e4
Update Address_Functions.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Test/AdventureWorksFunctionalModel/Person/Address_Functions.cs
Test/AdventureWorksFunctionalModel/Person/Address_Functions.cs
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requi...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requi...
apache-2.0
C#
d47fe0280355cdd768e5b837039650b0861dc13e
Order pages by title in dropdown
codevlabs/DirigoEdge,justincolangelo/EdgeInstallerTest,justincolangelo/EdgeInstallerTest,codevlabs/DirigoEdge,justincolangelo/EdgeInstallerTest,codevlabs/DirigoEdge,justincolangelo/EdgeInstallerTest,justincolangelo/EdgeInstallerTest,codevlabs/DirigoEdge,codevlabs/DirigoEdge
DirigoEdge/Areas/Admin/Models/ViewModels/RedirectViewModel.cs
DirigoEdge/Areas/Admin/Models/ViewModels/RedirectViewModel.cs
using System.Collections.Generic; using System.Linq; using DirigoEdgeCore.Data.Entities; using DirigoEdgeCore.Models; public class RedirectViewModel : DirigoBaseModel { public List<Redirect> Redirects; public List<string> Pages = new List<string>(); public RedirectViewModel() { BookmarkTitle ...
using System.Collections.Generic; using System.Linq; using DirigoEdgeCore.Data.Entities; using DirigoEdgeCore.Models; public class RedirectViewModel : DirigoBaseModel { public List<Redirect> Redirects; public List<string> Pages = new List<string>(); public RedirectViewModel() { BookmarkTitle ...
mit
C#
dbea6d4ceed7504ff104683efcdf316d3c712d47
Remove unused using
peppy/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu-new,smoogipooo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,ppy/osu,ppy/osu
osu.Game/Tests/Visual/Multiplayer/MultiplayerTestScene.cs
osu.Game/Tests/Visual/Multiplayer/MultiplayerTestScene.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.Graphics; using osu.Framework.Graphics.Containers; using osu.Gam...
// 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.Graphics; using osu.Framework.Graphics.Containers; using osu.Fra...
mit
C#
0d9abdc5db596c334a015431d9b603a5ff6cab98
disable voting on unauthorized user
army-of-two/when-its-done,army-of-two/when-its-done,army-of-two/when-its-done
WhenItsDone/Clients/WhenItsDone.WebFormsClient/Details.aspx.cs
WhenItsDone/Clients/WhenItsDone.WebFormsClient/Details.aspx.cs
using System; using WebFormsMvp; using WebFormsMvp.Web; using WhenItsDone.MVP.DetailsMVP; namespace WhenItsDone.WebFormsClient { [PresenterBinding(typeof(IDetailsPresenter))] public partial class Details : MvpPage<DetailsViewModel>, IDetailsView { public event EventHandler<DetailsGetDishDetailsE...
using System; using WebFormsMvp; using WebFormsMvp.Web; using WhenItsDone.MVP.DetailsMVP; namespace WhenItsDone.WebFormsClient { [PresenterBinding(typeof(IDetailsPresenter))] public partial class Details : MvpPage<DetailsViewModel>, IDetailsView { public event EventHandler<DetailsGetDishDetailsE...
mit
C#
da6db934b70498a1207749cc7be606bf4fc141a8
Remove unused MissingAuthID method.
sitofabi/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,sitofabi/duplicati,mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,sitofabi/duplicati,mnaiman/duplicati,sitofabi/duplicati,sitofabi/duplicati,duplicati/duplicati,duplicati/duplicati,duplicati/duplicati
Duplicati/Library/Backend/AmazonCloudDrive/Strings.cs
Duplicati/Library/Backend/AmazonCloudDrive/Strings.cs
// Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // 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 // L...
// Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // 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 // L...
lgpl-2.1
C#
7bb0cd588d82722a9a39002836aeaff30281c933
Allow IndexName to be serialized as an object key
elastic/elasticsearch-net,elastic/elasticsearch-net
src/Nest/CommonAbstractions/Infer/IndexName/IndexNameFormatter.cs
src/Nest/CommonAbstractions/Infer/IndexName/IndexNameFormatter.cs
using Utf8Json; namespace Nest { internal class IndexNameFormatter : IJsonFormatter<IndexName>, IObjectPropertyNameFormatter<IndexName> { public IndexName Deserialize(ref JsonReader reader, IJsonFormatterResolver formatterResolver) { if (reader.GetCurrentJsonToken() != JsonToken.String) return null; Inde...
using Utf8Json; namespace Nest { internal class IndexNameFormatter : IJsonFormatter<IndexName> { public IndexName Deserialize(ref JsonReader reader, IJsonFormatterResolver formatterResolver) { if (reader.GetCurrentJsonToken() != JsonToken.String) return null; IndexName indexName = reader.ReadString(); ...
apache-2.0
C#
bed732285ab07b1a92a7e2aeb637ff8829658b4f
Add a test case for the non-leaky constructor
JohanLarsson/Gu.Analyzers
Gu.Analyzers.Test/GU0051XmlSerializerNotCached/HappyPath.cs
Gu.Analyzers.Test/GU0051XmlSerializerNotCached/HappyPath.cs
namespace Gu.Analyzers.Test.GU0051XmlSerializerNotCached { using System.Threading.Tasks; using NUnit.Framework; internal class HappyPath : HappyPathVerifier<Analyzers.GU0051XmlSerializerNotCached> { [Test] public async Task NoCreationsOfTheSerializer() { var testCod...
namespace Gu.Analyzers.Test.GU0051XmlSerializerNotCached { using System.Threading.Tasks; using NUnit.Framework; internal class HappyPath : HappyPathVerifier<Analyzers.GU0051XmlSerializerNotCached> { [Test] public async Task NoCreationsOfTheSerializer() { var testCod...
mit
C#
3ab47cef377042e4e472dbe6f3889eaa040a508b
Remove other_files message box from the region selector
OatmealDome/SplatoonUtilities
MusicRandomizer/MusicRandomizer/VersionRequestForm.cs
MusicRandomizer/MusicRandomizer/VersionRequestForm.cs
using System; using System.IO; using System.Windows.Forms; namespace MusicRandomizer { public partial class VersionRequestForm : Form { public SplatoonRegion chosenRegion; public VersionRequestForm() { InitializeComponent(); } private void V...
using System; using System.IO; using System.Windows.Forms; namespace MusicRandomizer { public partial class VersionRequestForm : Form { public SplatoonRegion chosenRegion; public VersionRequestForm() { InitializeComponent(); } private void V...
mit
C#
1d580a06800b200a7069f6135cb3e255121adc4e
Rename BigEndian to IsBigEndian
terrafx/terrafx
sources/Audio/IAudioAdapter.cs
sources/Audio/IAudioAdapter.cs
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. using System; namespace TerraFX.Audio { /// <summary>An interface representing an audio adapter.</summary> public interface IAudioAdapter { /// <summary...
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. using System; namespace TerraFX.Audio { /// <summary>An interface representing an audio adapter.</summary> public interface IAudioAdapter { /// <summary...
mit
C#
af39c8ed8df4d6a8d6239928e9c5402c198fe105
Update app version
omniSpectrum/omniBill
appCS/omniBill/Properties/AssemblyInfo.cs
appCS/omniBill/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
epl-1.0
C#
1d0a4447f6ae20c5b2a21aef19ca1c3b71b95ad4
Fix doc string
MarinAtanasov/AppBrix,MarinAtanasov/AppBrix.NetCore
Modules/AppBrix.Web.Client/Configuration/WebClientConfig.cs
Modules/AppBrix.Web.Client/Configuration/WebClientConfig.cs
// Copyright (c) MarinAtanasov. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the project root for license information. // using AppBrix.Configuration; using System; namespace AppBrix.Web.Client.Configuration { /// <summary> /// Configures the web client. /// </summary> ...
// Copyright (c) MarinAtanasov. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the project root for license information. // using AppBrix.Configuration; using System; namespace AppBrix.Web.Client.Configuration { /// <summary> /// Configures the web client. /// </summary> ...
mit
C#
6661135573bf484c45e20cd0422cb7979238059c
Allow category to be null in Azure SQL listener
MRCollective/AzureTraceListeners
SimpleAzureTraceListener/Listeners/AzureSqlTraceListener.cs
SimpleAzureTraceListener/Listeners/AzureSqlTraceListener.cs
using System; using System.Data; using System.Data.SqlClient; using SimpleAzureTraceListener.Listeners.Base; using SimpleAzureTraceListener.Models; namespace SimpleAzureTraceListener.Listeners { public class AzureSqlTraceListener : AzureTraceListener { private readonly string _tableName; ...
using System.Data; using System.Data.SqlClient; using SimpleAzureTraceListener.Listeners.Base; using SimpleAzureTraceListener.Models; namespace SimpleAzureTraceListener.Listeners { public class AzureSqlTraceListener : AzureTraceListener { private readonly string _tableName; private r...
mit
C#
3a2e79aa89fc1aa59b9233b3341ac6bb2df251de
check that the binding works and that the right values are used
jgraber/Blog_Snippets,jgraber/Blog_Snippets,jgraber/Blog_Snippets,jgraber/Blog_Snippets
SpecFlowExamples/Specification/CodeStyle/CodeSteps.cs
SpecFlowExamples/Specification/CodeStyle/CodeSteps.cs
namespace Specification.CodeStyle { using System; using TechTalk.SpecFlow; [Binding] public class CodeSteps { [Given(@"I navigate to (.*)")] public void GivenINavigateToHttpLocalhostPersonCreate(string url) { Console.WriteLine(url); } [...
namespace Specification.CodeStyle { using TechTalk.SpecFlow; [Binding] public class CodeSteps { [Given(@"I navigate to (.*)")] public void GivenINavigateToHttpLocalhostPersonCreate(int p0) { ScenarioContext.Current.Pending(); } [Given(@"I en...
apache-2.0
C#
9151118c5375897040fa65dfe38bff19add2257e
rename property
tmk907/UWPMusicPlayerExtensions
UWPMusicPlayerExtensions/AvailableExtensionsHelper.cs
UWPMusicPlayerExtensions/AvailableExtensionsHelper.cs
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Threading.Tasks; using Windows.Web.Http; namespace UWPMusicPlayerExtensions { public class AvailableExtensionsHelper { public AvailableExtensionsHelper() { ExtensionsListUri = new Uri(@"https://raw....
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Threading.Tasks; using Windows.Web.Http; namespace UWPMusicPlayerExtensions { public class AvailableExtensionsHelper { public AvailableExtensionsHelper() { uri = new Uri(@"https://raw.githubusercont...
mit
C#
c2d8426976f6ef436ac1f02429094cc81b5cfcc3
Fix possible NRE in Cards.GetFromName
HearthSim/HearthDb
HearthDb/Cards.cs
HearthDb/Cards.cs
#region using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Xml.Serialization; using HearthDb.Enums; #endregion namespace HearthDb { public static class Cards { public static readonly Dictionary<string, Card> All = new Dictionary<string, Card...
#region using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Xml.Serialization; using HearthDb.Enums; #endregion namespace HearthDb { public static class Cards { public static readonly Dictionary<string, Card> All = new Dictionary<string, Card...
mit
C#
a44f9c068bc09013a958e839c05d471c29f2474e
Add assembly description for CLI project
Ackara/Daterpillar
src/Daterpillar.CommandLine/Properties/AssemblyInfo.cs
src/Daterpillar.CommandLine/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("Da...
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("Da...
mit
C#
06ba583297ba97d42bef8eb353217aa149c7bfe4
Bump version
MisinformedDNA/Elmah.AzureTableStorage,FreedomMercenary/Elmah.AzureTableStorage,LionLai/Elmah.AzureTableStorage
src/Elmah.AzureTableStorage/Properties/AssemblyInfo.cs
src/Elmah.AzureTableStorage/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...
apache-2.0
C#
cc40344690be01e3329e86fe9fa80db6a1e631cc
Fix image loading.
Kryptos-FR/markdig.wpf,Kryptos-FR/markdig-wpf
src/Markdig.Wpf/Renderers/Wpf/Inlines/LinkInlineRenderer.cs
src/Markdig.Wpf/Renderers/Wpf/Inlines/LinkInlineRenderer.cs
// Copyright (c) 2016-2017 Nicolas Musset. All rights reserved. // This file is licensed under the MIT license. // See the LICENSE.md file in the project root for more information. using System; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media.Imaging; using Markdig.Annotatio...
// Copyright (c) 2016-2017 Nicolas Musset. All rights reserved. // This file is licensed under the MIT license. // See the LICENSE.md file in the project root for more information. using System; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media.Imaging; using Markdig.Annotatio...
mit
C#
b8b0e5604a1fb0e432bd4fc895c1371f58ef3b80
add todo only
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EAS.Api/Orchestrators/StatisticsOrchestrator.cs
src/SFA.DAS.EAS.Api/Orchestrators/StatisticsOrchestrator.cs
using System.Threading.Tasks; using MediatR; using SFA.DAS.EAS.Account.Api.Types; using SFA.DAS.EAS.Application.Queries.GetFinancialStatistics; using SFA.DAS.EmployerAccounts.Api.Client; namespace SFA.DAS.EAS.Account.Api.Orchestrators { public class StatisticsOrchestrator { private readonly IMediator ...
using System.Threading.Tasks; using MediatR; using SFA.DAS.EAS.Account.Api.Types; using SFA.DAS.EAS.Application.Queries.GetFinancialStatistics; using SFA.DAS.EmployerAccounts.Api.Client; namespace SFA.DAS.EAS.Account.Api.Orchestrators { public class StatisticsOrchestrator { private readonly IMediator ...
mit
C#
976b303af2bd1d174c9c246c4bcf4619910e5c30
implement EventLoopScheduler.
atsushieno/mono-reactive,paulcbetts/mono-reactive,jorik041/mono-reactive
System.Reactive/System.Reactive.Concurrency/EventLoopScheduler.cs
System.Reactive/System.Reactive.Concurrency/EventLoopScheduler.cs
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using System.Reactive.Disposables; namespace System.Reactive.Concurrency { public sealed class EventLoopScheduler : IScheduler, IDisposable { public EventLoopScheduler () : this ((ts) => new Thread (ts)) { ...
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace System.Reactive.Concurrency { public sealed class EventLoopScheduler : IScheduler, IDisposable { public EventLoopScheduler () : this ((ts) => new Thread (ts)) { } Thread th; public Event...
mit
C#
4d14244e00fce0941d2753fdb6853f3470eca304
Update style.css
troke12/troke12.github.com,troke12/troke12.github.com,troke12/troke12.github.com
style.cs
style.cs
/*====================================================*/ /* Copyright by Troke */ /*====================================================*/ body { background-color: #FFFF00; background: url(https://raw.githubusercontent.com/troke12/trokewebsite/master/images/The-Night-Sky-Wallpaper.jpg) top center n...
/*====================================================*/ /* Copyright by Troke */ /*====================================================*/ body { background-color: #FFFF00; background: url(https://github.com/troke12/trokewebsite/blob/master/images/The-Night-Sky-Wallpaper.jpg?raw=true) top center no...
mit
C#