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
5fde40b8c6bce0d2516af9761efdf4de59e9f6ae
Resolve #AG113 - Fix issues found in testing
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
Agiil.Data/NHibernateSchemaExportingDatabaseCreator.cs
Agiil.Data/NHibernateSchemaExportingDatabaseCreator.cs
using System; using System.Data; using System.IO; using System.Text; using Agiil.Data.Maintenance; using NHibernate; using NHibernate.Cfg; using NHibernate.Tool.hbm2ddl; namespace Agiil.Data { public class NHibernateSchemaExportingDatabaseCreator : ICreatesDatabaseSchema, IExportsDatabaseSchema { readonly ISe...
using System; using System.Data; using System.IO; using System.Text; using Agiil.Data.Maintenance; using NHibernate; using NHibernate.Cfg; using NHibernate.Tool.hbm2ddl; namespace Agiil.Data { public class NHibernateSchemaExportingDatabaseCreator : ICreatesDatabaseSchema, IExportsDatabaseSchema { readonly ISe...
mit
C#
600deedbe401dd16e89e852e0e8ce4c11785d24c
バージョンアップ。
Implem/Implem.Pleasanter,Implem/Implem.Pleasanter,Implem/Implem.Pleasanter
Implem.Pleasanter/Properties/AssemblyInfo.cs
Implem.Pleasanter/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Implem.Pleasanter")] [assembly: AssemblyDescription("Web tool that helps the efficiency of business")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Implem.Pleasanter")] [assembl...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Implem.Pleasanter")] [assembly: AssemblyDescription("Web tool that helps the efficiency of business")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Implem.Pleasanter")] [assembl...
agpl-3.0
C#
aae5af0f839f8bf54c6ef5cc61fe0d728a8500e8
Remove synchronous GetResponse method (it deadlocks the request thread). Remove GetResponseString method because it may deadklock the thread and it is only a convenience method for debugging.
andyfmiller/LtiLibrary
LtiLibrary.Core/Extensions/HttpExtensions.cs
LtiLibrary.Core/Extensions/HttpExtensions.cs
using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace LtiLibrary.Core.Extensions { internal static class HttpExtensions { public static async Task<HttpResponseMessage> GetResponseAsync(this HttpRequestMessage message, bool allowAutoRedirect = false) { ...
using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace LtiLibrary.Core.Extensions { internal static class HttpExtensions { public static async Task<HttpResponseMessage> GetResponseAsync(this HttpRequestMessage message, bool allowAutoRedirect = false) { usin...
apache-2.0
C#
dc796bb0caed2ae2075ea2fa675a8073ef169748
Bump version for new logging output.
illfelder/compute-image-windows,adjackura/compute-image-windows,ning-yang/compute-image-windows,adjackura/compute-image-windows,illfelder/compute-image-windows,GoogleCloudPlatform/compute-image-windows,ning-yang/compute-image-windows,GoogleCloudPlatform/compute-image-windows,Derekolds/compute-image-windows
agent/Common/Properties/VersionInfo.cs
agent/Common/Properties/VersionInfo.cs
/* * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
/* * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
apache-2.0
C#
f440ff5d56d500317360046b0032eea179ccccad
Revert unneeded changes
Bohdan127/VisaCrawler
Visa/Visa.WinForms/Program.cs
Visa/Visa.WinForms/Program.cs
using NLog; using System; using System.Globalization; using System.Threading; using System.Windows.Forms; using Visa.WinForms.ErrorProvider; namespace Visa.WinForms { internal static class Program { private static readonly Logger _logger = LogManager.GetCurrentClassLogger(); ...
using NLog; using System; using System.Globalization; using System.Threading; using System.Windows.Forms; using Visa.WinForms.ErrorProvider; namespace Visa.WinForms { internal static class Program { private static readonly Logger _logger = LogManager.GetCurrentClassLogger(); ...
mit
C#
6da80d697bbc451149f809bfdba01710000176eb
Update SiteLockState enum
OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core
Core/OfficeDevPnP.Core/Enums/TenantEnums.cs
Core/OfficeDevPnP.Core/Enums/TenantEnums.cs
namespace OfficeDevPnP.Core { public enum SiteLockState { Unlock, NoAccess, ReadOnly } public enum TenantOperationMessage { None, CreatingSiteCollection, DeletingSiteCollection, RemovingDeletedSiteCollectionFromRecycleBin, SettingSiteLock...
namespace OfficeDevPnP.Core { public enum SiteLockState { Unlock, NoAccess } public enum TenantOperationMessage { None, CreatingSiteCollection, DeletingSiteCollection, RemovingDeletedSiteCollectionFromRecycleBin, SettingSiteLockState, Set...
mit
C#
137196291b5edd421e34dbd283486b4640a9334b
Add overloads of ConfigureWebJobs to expose HostBuilderContext
Azure/azure-webjobs-sdk,Azure/azure-webjobs-sdk
src/Microsoft.Azure.WebJobs.Host/Hosting/WebJobsHostBuilderExtensions.cs
src/Microsoft.Azure.WebJobs.Host/Hosting/WebJobsHostBuilderExtensions.cs
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Host.Config; using Microsoft.Azure.WebJobs.Hosting; using Microsoft.Extensions.Configuration...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Host.Config; using Microsoft.Azure.WebJobs.Hosting; using Microsoft.Extensions.Configuration...
mit
C#
a468c3685f77b3386fc15989704fa1a501f5e172
Make Notifier thread-safe
jacobdufault/forge,jacobdufault/forge
Entities/Notifier.cs
Entities/Notifier.cs
using System; namespace Neon.Entities { /// <summary> /// Wraps the notification pattern, where something happens multiple times but the listeners /// should only be notified once. /// </summary> /// <remarks> /// The Notifier API is thread-safe. /// </remarks> /// <typeparam name="Par...
using System; namespace Neon.Entities { /// <summary> /// Wraps the notification pattern, where something happens multiple times but the listeners /// should only be notified once. /// </summary> /// <typeparam name="ParamType">The type of the parameter.</typeparam> public class Notifier<Param...
mit
C#
c834026c80a9095b5d8f954b9937ce637e8a35b9
test commit
sasuke010101/unity-framework,cleavetv/unity-framework
Assets/CleaveFramework/SceneViews/LoadingSceneView.cs
Assets/CleaveFramework/SceneViews/LoadingSceneView.cs
using CleaveFramework.Scene; namespace CleaveFramework.SceneViews { class LoadingSceneView : SceneView { public override void Initialize() { // test } } }
using CleaveFramework.Scene; namespace CleaveFramework.SceneViews { class LoadingSceneView : SceneView { public override void Initialize() { } } }
apache-2.0
C#
9907fce01eb96093f7c652b85e9369792186bee6
Remove random xml comment from file header
rockfordlhotka/csla,rockfordlhotka/csla,MarimerLLC/csla,MarimerLLC/csla,MarimerLLC/csla,rockfordlhotka/csla
Source/Csla/Server/DataPortalMethodCache.cs
Source/Csla/Server/DataPortalMethodCache.cs
//----------------------------------------------------------------------- // <copyright file="DataPortalMethodCache.cs" company="Marimer LLC"> // Copyright (c) Marimer LLC. All rights reserved. // Website: https://cslanet.com // </copyright> //-------------------------------------------------------------------...
//----------------------------------------------------------------------- // <copyright file="DataPortalMethodCache.cs" company="Marimer LLC"> // Copyright (c) Marimer LLC. All rights reserved. // Website: https://cslanet.com // </copyright> // <summary>Gets a reference to the DataPortal_Create method for</sum...
mit
C#
a09e0790e1815b8ddd4ab38af20d319aa56b31ea
Fix storyboards not dimming
peppy/osu,naoey/osu,DrabWeb/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,johnneijzen/osu,ZLima12/osu,naoey/osu,naoey/osu,EVAST9919/osu,ppy/osu,ppy/osu,peppy/osu-new,2yangk23/osu,UselessToucan/osu,EVAST9919/osu,johnneijzen/osu,DrabWeb/osu,NeoAdonis/osu,smoogipoo/osu,smoogip...
osu.Game/Screens/Play/ScreenWithBeatmapBackground.cs
osu.Game/Screens/Play/ScreenWithBeatmapBackground.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 FFmpeg.AutoGen; using osu.Framework.Allocation; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Screens; using osu.Game.Config...
// 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.Configuration; using osu.Framework.Graphics; using osu.Framework.Screens; using osu.Game.Configuration; using osu.Gam...
mit
C#
d6b34048a800b676661adf09c19cdcae585ca767
Update version to 2.6.3 for dev
sharpdx/Toolkit,tomba/Toolkit,sharpdx/Toolkit
Source/SharedAssemblyInfo.cs
Source/SharedAssemblyInfo.cs
// Copyright (c) 2010-2014 SharpDX - Alexandre Mutel // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modi...
// Copyright (c) 2010-2014 SharpDX - Alexandre Mutel // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modi...
mit
C#
fd5db4435b420ee3f7bf78f2f409da94affa52ea
Comment Fail classes #7 - disabled Resharper warn in a sample UT
synergy-software/synergy.contracts,synergy-software/synergy.contracts
Synergy.Contracts.Test/Failures/FailTest.cs
Synergy.Contracts.Test/Failures/FailTest.cs
using NUnit.Framework; using Synergy.Contracts.Samples.Domain; namespace Synergy.Contracts.Test.Failures { [TestFixture] public class FailTest { [Test] public void Because() { // ACT DesignByContractViolationException exception = Fail.Because("Always"); ...
using NUnit.Framework; using Synergy.Contracts.Samples.Domain; namespace Synergy.Contracts.Test.Failures { [TestFixture] public class FailTest { [Test] public void Because() { // ACT DesignByContractViolationException exception = Fail.Because("Always"); ...
mit
C#
d632f5e262a154900435e41f6ee81f33e00a0d0b
Change buried cards to screen bar in search page
AnkiUniversal/Anki-Universal,AnkiUniversal/Anki-Universal,AnkiUniversal/Anki-Universal
AnkiU/UIUtilities/DataBindingConverters/CardStateToSolidBrushConverter.cs
AnkiU/UIUtilities/DataBindingConverters/CardStateToSolidBrushConverter.cs
/* Copyright (C) 2016 Anki Universal Team <ankiuniversal@outlook.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ...
/* Copyright (C) 2016 Anki Universal Team <ankiuniversal@outlook.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ...
agpl-3.0
C#
b8a3e9e7e78c04593db4e20df731c70b4a97d8ec
Improve readability of DbContextOptions code
VegasoftTI/Demo-EF7,rowanmiller/Demo-EF7,micdenny/Demo-EF7,micdenny/Demo-EF7,rowanmiller/Demo-EF7,VegasoftTI/Demo-EF7,VegasoftTI/Demo-EF7,micdenny/Demo-EF7
StartingSource/CycleSales/CycleSales/CycleSalesModel/CycleSalesContext.cs
StartingSource/CycleSales/CycleSales/CycleSalesModel/CycleSalesContext.cs
using Microsoft.Data.Entity; using Microsoft.Data.Entity.Infrastructure; using Microsoft.Data.Entity.Metadata; using System; using System.Configuration; using System.Linq; namespace CycleSales.CycleSalesModel { public class CycleSalesContext : DbContext { public CycleSalesContext() ...
using Microsoft.Data.Entity; using Microsoft.Data.Entity.Infrastructure; using Microsoft.Data.Entity.Metadata; using System; using System.Configuration; using System.Linq; namespace CycleSales.CycleSalesModel { public class CycleSalesContext : DbContext { public CycleSalesContext() ...
apache-2.0
C#
018dc904a4d1812f59271956a35d0fe32fef6fad
Add default constructor for OrthographicCamera
tainicom/Aether
Source/Core/Cameras/OrthographicCamera.cs
Source/Core/Cameras/OrthographicCamera.cs
#region License // Copyright 2015 Kastellanos Nikolaos // // 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...
#region License // Copyright 2015 Kastellanos Nikolaos // // 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#
cb790f146b45f2b0fbccd4aff8bf01a7918f60b3
use UserTypeId to indicate which password to reset.
SnapMD/connectedcare-sdk,dhawalharsora/connectedcare-sdk
SnapMD.ConnectedCare.ApiModels/ResetPasswordRequest.cs
SnapMD.ConnectedCare.ApiModels/ResetPasswordRequest.cs
using SnapMD.ConnectedCare.ApiModels.Enums; namespace SnapMD.ConnectedCare.ApiModels { public class ResetPasswordRequest { public string Email { get; set; } public int HospitalId { get; set; } public UserType? UserTypeId { get; set; } } }
namespace SnapMD.ConnectedCare.ApiModels { public class ResetPasswordRequest { public string Email { get; set; } public int HospitalId { get; set; } public bool? Admin { get; set; } } }
apache-2.0
C#
f387527f0e0a0b8dc2b9634ba164fa8a4458077a
Split Downloading tests
akorb/SteamShutdown
SteamShutdown.Tests/IsDownloadingTests.cs
SteamShutdown.Tests/IsDownloadingTests.cs
using Microsoft.VisualStudio.TestTools.UnitTesting; using static SteamShutdown.App; namespace SteamShutdown.Tests { [TestClass] public class IsDownloadingTests { [TestMethod] public void Downloading_6() { Assert.IsTrue(CheckDownloading(6)); } [TestMetho...
using Microsoft.VisualStudio.TestTools.UnitTesting; using static SteamShutdown.App; namespace SteamShutdown.Tests { [TestClass] public class IsDownloadingTests { [TestMethod] public void TestDownloadingStates() { int[] downloadingStates = { 6...
mit
C#
6d4e88d2f81fcb3df92be021fe3e4570067dffde
Fix rotation in TeleportToPosition handling
HelloKitty/Booma.Proxy
src/Booma.Proxy.Client.Unity.GladMMO/Interop/Handlers/Incoming/Command/Movement/InteropSub60TeleportToPositionCommandHandler.cs
src/Booma.Proxy.Client.Unity.GladMMO/Interop/Handlers/Incoming/Command/Movement/InteropSub60TeleportToPositionCommandHandler.cs
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using Common.Logging; using Glader.Essentials; using GladMMO; using GladNet; using UnityEngine; namespace Booma.Proxy { [PSOBBHandler] public sealed class InteropSub60TeleportToPositionCommandHandler : InteropCommand60H...
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using Common.Logging; using Glader.Essentials; using GladMMO; using GladNet; using UnityEngine; namespace Booma.Proxy { [PSOBBHandler] public sealed class InteropSub60TeleportToPositionCommandHandler : InteropCommand60H...
agpl-3.0
C#
ea268ba098d9872baab49ad8648f04b0c3811584
Clean up matcher test code in `ExtensibilityFixture`
Moq/moq4,ocoanet/moq4
tests/Moq.Tests/ExtensibilityFixture.cs
tests/Moq.Tests/ExtensibilityFixture.cs
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System; using System.Collections.Generic; using System.Linq; using Xunit; namespace Moq.Tests { public class ExtensibilityFixture { [Fact] publ...
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System; using System.Collections.Generic; using System.Linq; using Xunit; namespace Moq.Tests { public class ExtensibilityFixture { [Fact] publi...
bsd-3-clause
C#
253afd4b54173aaa2423a615aac12e57faa8f283
Fix view bug!
VelizarIT/WebServices-TheRoadRunner,Cheeesus/WebServices-TheRoadRunner,Cheeesus/WebServices-TheRoadRunner,VelizarIT/WebServices-TheRoadRunner
JustRunnerChat/JustRunnerChat/Views/_ViewStart.cshtml
JustRunnerChat/JustRunnerChat/Views/_ViewStart.cshtml
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
@{ //Layout = "~/Views/Shared/_Layout.cshtml"; Layout = "~/Views/Chat/_Layout.cshtml"; }
mit
C#
6952b844f510108c063e610742743cbab9efceda
Fix assembly reference
qmfrederik/AS.TurboJpegWrapper,qmfrederik/AS.TurboJpegWrapper
Quamotion.TurboJpegWrapper/Properties/AssemblyInfo.cs
Quamotion.TurboJpegWrapper/Properties/AssemblyInfo.cs
using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("Quamotion.TurboJpegWrapper.Tests, PublicKey=00240000048000009400000006020000002400005253413100040000010001004decc8b96d1ccad611db90eca2b646c396a482f41d00bfdf7cc9580a4eb26b1c4562a80d62b786f6b7ee0517114a2a29c1253d254d61f56c3ee8dbe773d4177303ae2d5a3cb...
using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("Quamotion.TurboJpegWrapper, PublicKey=00240000048000009400000006020000002400005253413100040000010001004decc8b96d1ccad611db90eca2b646c396a482f41d00bfdf7cc9580a4eb26b1c4562a80d62b786f6b7ee0517114a2a29c1253d254d61f56c3ee8dbe773d4177303ae2d5a3cb8e023f...
mit
C#
d1eac59a08edef7f1f5eec0bbbc81f4c7e2c1e97
Use ConcurrentDictionary for collector registry
andrasm/prometheus-net,ceepeeuk/prometheus-net,brian-brazil/prometheus-net,qed-/prometheus-net
prometheus-net/Advanced/DefaultCollectorRegistry.cs
prometheus-net/Advanced/DefaultCollectorRegistry.cs
using System; using System.Collections.Concurrent; using System.Collections.Generic; using Prometheus.Advanced.DataContracts; namespace Prometheus.Advanced { public class DefaultCollectorRegistry : ICollectorRegistry { public readonly static DefaultCollectorRegistry Instance = new DefaultCollectorRegi...
using System; using System.Collections.Generic; using System.Linq; using Prometheus.Advanced.DataContracts; namespace Prometheus.Advanced { public class DefaultCollectorRegistry : ICollectorRegistry { public readonly static DefaultCollectorRegistry Instance = new DefaultCollectorRegistry(); /...
mit
C#
be787872112b049de93e65fb41e002bbdf5fcc03
fix crash on gunner bombardment
Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns
TCC.Core/ViewModels/ClassManagers/GunnerBarManager.cs
TCC.Core/ViewModels/ClassManagers/GunnerBarManager.cs
using TCC.Data; namespace TCC.ViewModels { public class GunnerBarManager : ClassManager { public DurationCooldownIndicator BurstFire { get; set; } public DurationCooldownIndicator Balder { get; set; } public DurationCooldownIndicator Bombardment { get; set; } private void Fla...
using TCC.Data; namespace TCC.ViewModels { public class GunnerBarManager : ClassManager { public DurationCooldownIndicator BurstFire { get; set; } public DurationCooldownIndicator Balder { get; set; } public DurationCooldownIndicator Bombardment { get; set; } private void Fla...
mit
C#
3710b5098f053c947786670e5edf7494a5cd443a
Bump version to 0.9.4
ar3cka/Journalist
src/SolutionInfo.cs
src/SolutionInfo.cs
// <auto-generated/> using System.Reflection; [assembly: AssemblyProductAttribute("Journalist")] [assembly: AssemblyVersionAttribute("0.9.4")] [assembly: AssemblyInformationalVersionAttribute("0.9.4")] [assembly: AssemblyFileVersionAttribute("0.9.4")] [assembly: AssemblyCompanyAttribute("Anton Mednonogov")] namespace...
// <auto-generated/> using System.Reflection; [assembly: AssemblyProductAttribute("Journalist")] [assembly: AssemblyVersionAttribute("0.9.3")] [assembly: AssemblyInformationalVersionAttribute("0.9.3")] [assembly: AssemblyFileVersionAttribute("0.9.3")] [assembly: AssemblyCompanyAttribute("Anton Mednonogov")] namespace...
apache-2.0
C#
e9d17523adcc8939340f431b3aa701664941ae21
Document ViscousForce API
drewnoakes/boing
Boing/Forces/ViscousForce.cs
Boing/Forces/ViscousForce.cs
#region License // Copyright 2015-2017 Drew Noakes, Krzysztof Dul // // 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...
#region License // Copyright 2015-2017 Drew Noakes, Krzysztof Dul // // 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...
apache-2.0
C#
cc0220a9bf4c9caf98df56a2ce0114084d20362d
Remove Console.ReadKey() from the UnitTest program
PowerOfCode/lidgren-network-gen3,lidgren/lidgren-network-gen3,forestrf/lidgren-network-gen3,jbruening/lidgren-network-gen3,SacWebDeveloper/lidgren-network-gen3,RainsSoft/lidgren-network-gen3,dragutux/lidgren-network-gen3
UnitTests/Program.cs
UnitTests/Program.cs
using System; using System.Reflection; using Lidgren.Network; using System.Net; using System.Net.Sockets; namespace UnitTests { class Program { static void Main(string[] args) { NetPeerConfiguration config = new NetPeerConfiguration("unittests"); config.EnableUPnP = true; NetPeer peer = n...
using System; using System.Reflection; using Lidgren.Network; using System.Net; using System.Net.Sockets; namespace UnitTests { class Program { static void Main(string[] args) { NetPeerConfiguration config = new NetPeerConfiguration("unittests"); config.EnableUPnP = true; NetPeer peer = n...
mit
C#
1b4a0bc1070d78682355e507a11b049401bd55dd
order software by name alphabetically
collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists
src/FilterLists.Services/Software/SoftwareService.cs
src/FilterLists.Services/Software/SoftwareService.cs
using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AutoMapper; using AutoMapper.QueryableExtensions; using FilterLists.Data; using FilterLists.Services.Software.Models; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore; namespace FilterLists.Services.Software { ...
using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using AutoMapper.QueryableExtensions; using FilterLists.Data; using FilterLists.Services.Software.Models; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore; namespace FilterLists.Services.Software { [UsedImplicitly] ...
mit
C#
8baa5f39a7dca155b2ce8a1a493f1108f8d77254
Make debug log store work in release builds
bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework
src/Server/Bit.Owin/Implementations/DebugLogStore.cs
src/Server/Bit.Owin/Implementations/DebugLogStore.cs
#define DEBUG using System; using System.Threading.Tasks; using Bit.Core.Contracts; using Bit.Core.Models; using System.Diagnostics; namespace Bit.Owin.Implementations { public class DebugLogStore : ILogStore { private readonly IContentFormatter _formatter; public DebugLogStore(IContentFormat...
using System; using System.Threading.Tasks; using Bit.Core.Contracts; using Bit.Core.Models; using System.Diagnostics; namespace Bit.Owin.Implementations { public class DebugLogStore : ILogStore { private readonly IContentFormatter _formatter; public DebugLogStore(IContentFormatter formatter)...
mit
C#
b83d86c0e765cdc33070e3d37336b4524a001529
Update SerilogTracingExtensions.cs
SimonCropp/NServiceBus.Serilog
src/NServiceBus.Serilog/SerilogTracingExtensions.cs
src/NServiceBus.Serilog/SerilogTracingExtensions.cs
using NServiceBus.Configuration.AdvancedExtensibility; using NServiceBus.Serilog; using Serilog; namespace NServiceBus { /// <summary> /// Extensions to enable and configure Serilog Tracing. /// </summary> public static class SerilogTracingExtensions { /// <summary> /// Enable Seri...
using NServiceBus.Configuration.AdvancedExtensibility; using NServiceBus.Serilog; using Serilog; namespace NServiceBus { /// <summary> /// Extensions to enable and configure Serilog Tracing. /// </summary> public static class SerilogTracingExtensions { /// <summary> /// Enable Seri...
mit
C#
7820137ad524c40bd09c70ddbd0c71cdef9a0a57
Add xml comments to HubInvocationContext (#11683)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/SignalR/server/Core/src/HubInvocationContext.cs
src/SignalR/server/Core/src/HubInvocationContext.cs
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.AspNetCore.Authorization; namespace Microsoft.AspNetCore.SignalR { /// <summary> /// Context ...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; namespace Microsoft.AspNetCore.SignalR { public class HubInvocationContext { public HubInvocationCont...
apache-2.0
C#
70b0c2115e892e967c7dcaf3b53dec31b47d07a3
Fix test
Inumedia/SlackAPI
SlackAPI.Tests/Timestamp.cs
SlackAPI.Tests/Timestamp.cs
using Newtonsoft.Json; using System; using System.IO; using Xunit; namespace SlackAPI.Tests { [Collection("Unit tests")] public class Timestamp { [Theory] [InlineData("12345.000000")] [InlineData("12345.900000")] [InlineData("12345.123456")] [InlineData("12345.12345...
using Newtonsoft.Json; using System; using System.IO; using Xunit; namespace SlackAPI.Tests { [Collection("Unit tests")] public class Timestamp { [Theory] [InlineData("12345.000000")] [InlineData("12345.900000")] [InlineData("12345.123456")] [InlineData("12345.12345...
mit
C#
5f4fbfd55f88560140f5b44493e78442239a244d
Add UserRepository singleton
Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training
src/AtomicChessPuzzles/Startup.cs
src/AtomicChessPuzzles/Startup.cs
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.Extensions.DependencyInjection; using AtomicChessPuzzles.DbRepositories; namespace AtomicChessPuzzles { public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddMv...
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.Extensions.DependencyInjection; namespace AtomicChessPuzzles { public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddMvc(); } public void Confi...
agpl-3.0
C#
948eb5273a5ad02725e22828a3f3886da9424c3f
Add Parse 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 struct Move { /// <summary> /// The color of the move. /// </summary> ...
mit
C#
831261b2939a78b432b8361b740eddbd4845c19a
Update Parse for ReadOnly FileAccess (#876)
cucumber/gherkin-dotnet,cucumber/gherkin-dotnet,cucumber/gherkin-dotnet
Gherkin/Parser.Extensions.cs
Gherkin/Parser.Extensions.cs
using System.IO; using Gherkin.Ast; namespace Gherkin { public class Parser : Parser<GherkinDocument> { public Parser() { } public Parser(IAstBuilder<GherkinDocument> astBuilder) : base(astBuilder) { } public GherkinDocument...
using System.IO; using Gherkin.Ast; namespace Gherkin { public class Parser : Parser<GherkinDocument> { public Parser() { } public Parser(IAstBuilder<GherkinDocument> astBuilder) : base(astBuilder) { } public GherkinDocument...
mit
C#
0f1f53e1ea192720fb29930de7be56159805c450
Update ToDoItemMarkCompleteShould
ardalis/CleanArchitecture,ardalis/CleanArchitecture,ardalis/CleanArchitecture
tests/CleanArchitecture.Tests/Core/Entities/ToDoItemMarkCompleteShould.cs
tests/CleanArchitecture.Tests/Core/Entities/ToDoItemMarkCompleteShould.cs
using CleanArchitecture.Core.Entities; using CleanArchitecture.Core.Events; using System.Linq; using Xunit; namespace CleanArchitecture.Tests.Core.Entities { public class ToDoItemMarkCompleteShould { [Fact] public void SetIsDoneToTrue() { var item = new ToDoItem(); ...
using CleanArchitecture.Core.Entities; using CleanArchitecture.Core.Events; using System.Linq; using Xunit; namespace CleanArchitecture.Tests.Core.Entities { public class ToDoItemMarkCompleteShould { [Fact] public void SetIsDoneToTrue() { var item = new ToDoItem(); ...
mit
C#
2f2fc7f7e2da005b57eff19051a71d8d6e8408a7
Modify allocator test to allow more threads and to switch between them.
brianrob/coretests,brianrob/coretests
allocator/Program.cs
allocator/Program.cs
using System; using System.Threading.Tasks; namespace ConsoleApplication { public class Program { static int NumThreads = 2; public static void Main(string[] args) { if(args.Length >= 1) { NumThreads = Convert.ToInt32(args[0]); } ...
using System; using System.Threading.Tasks; namespace ConsoleApplication { public class Program { const int NumThreads = 2; public static void Main(string[] args) { Console.WriteLine($"Starting {NumThreads} threads."); Task[] workers = new Task[NumThreads]; ...
mit
C#
f3b9f358994b4f6ec3b8c78cd6f1eddaf79888fe
Add check for bot messages.
AntiTcb/Discord.Net,RogueException/Discord.Net
docs/guides/commands/samples/intro/command_handler.cs
docs/guides/commands/samples/intro/command_handler.cs
public class CommandHandler { private readonly DiscordSocketClient _client; private readonly CommandService _commands; public CommandHandler(DiscordSocketClient client, CommandService commands) { _commands = commands; _client = client; } public async Task InstallCommandsAsy...
public class CommandHandler { private readonly DiscordSocketClient _client; private readonly CommandService _commands; public CommandHandler(DiscordSocketClient client, CommandService commands) { _commands = commands; _client = client; } public async Task InstallCommandsAsy...
mit
C#
91b685e1c24c9dd198bf08c353fa08d415cfd9a7
Update AddingPictureToChart.cs
maria-shahid-aspose/Aspose.Cells-for-.NET,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,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cell...
Examples/CSharp/Charts/InsertingControlsintoCharts/AddingPictureToChart.cs
Examples/CSharp/Charts/InsertingControlsintoCharts/AddingPictureToChart.cs
using System.IO; using Aspose.Cells; using System.Drawing; namespace Aspose.Cells.Examples.Charts.InsertingControlsintoCharts { public class AddingPictureToChart { public static void Main(string[] args) { //ExStart:1 // The path to the documents directory. s...
using System.IO; using Aspose.Cells; using System.Drawing; namespace Aspose.Cells.Examples.Charts.InsertingControlsintoCharts { public class AddingPictureToChart { public static void Main(string[] args) { // The path to the documents directory. string dataDir = Aspose.C...
mit
C#
fb6d55b00fc58f87d28b6c464d2afc7facb167cc
Enable package search by default (in master).
zooba/roslyn,AnthonyDGreen/roslyn,bkoelman/roslyn,vslsnap/roslyn,panopticoncentral/roslyn,abock/roslyn,ericfe-ms/roslyn,leppie/roslyn,srivatsn/roslyn,Pvlerick/roslyn,stephentoub/roslyn,mmitche/roslyn,mgoertz-msft/roslyn,reaction1989/roslyn,jkotas/roslyn,heejaechang/roslyn,CyrusNajmabadi/roslyn,davkean/roslyn,zooba/rosl...
src/Features/Core/Portable/Shared/Options/ServiceComponentOnOffOptions.cs
src/Features/Core/Portable/Shared/Options/ServiceComponentOnOffOptions.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.Options; namespace Microsoft.CodeAnalysis.Shared.Options { /// <summary> /// options to indicate whether a certain compo...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.Options; namespace Microsoft.CodeAnalysis.Shared.Options { /// <summary> /// options to indicate whether a certain compo...
apache-2.0
C#
def690b8c368f784094e5f4c98b75a28f639eb47
Fix U4-8532 - No built in Active Directory authentication in Umbraco 7.3+
JimBobSquarePants/Umbraco-CMS,leekelleher/Umbraco-CMS,rasmusfjord/Umbraco-CMS,base33/Umbraco-CMS,hfloyd/Umbraco-CMS,aaronpowell/Umbraco-CMS,WebCentrum/Umbraco-CMS,lars-erik/Umbraco-CMS,romanlytvyn/Umbraco-CMS,nul800sebastiaan/Umbraco-CMS,PeteDuncanson/Umbraco-CMS,hfloyd/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,Jeffrey...
src/Umbraco.Core/Security/ActiveDirectoryBackOfficeUserPasswordChecker.cs
src/Umbraco.Core/Security/ActiveDirectoryBackOfficeUserPasswordChecker.cs
using System.Configuration; using System.DirectoryServices.AccountManagement; using System.Threading.Tasks; using Umbraco.Core.Models.Identity; namespace Umbraco.Core.Security { public class ActiveDirectoryBackOfficeUserPasswordChecker : IBackOfficeUserPasswordChecker { public virtual string ActiveDir...
using System.Configuration; using System.DirectoryServices.AccountManagement; using System.Threading.Tasks; using Umbraco.Core.Models.Identity; namespace Umbraco.Core.Security { public class ActiveDirectoryBackOfficeUserPasswordChecker : IBackOfficeUserPasswordChecker { public Task<BackOfficeUserPassw...
mit
C#
a54578d683b01992d6027492a503e159a76e5b63
Add a ctor to NSAsyncActionDispatcher that can revive NSAsyncActionDispatcher zombies. Fixes #5203.
mono/maccore,cwensley/maccore,jorik041/maccore
src/Foundation/NSAction.cs
src/Foundation/NSAction.cs
// // Copyright 2009-2010, Novell, Inc. // Copyright 2012 Xamarin Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to...
// // Copyright 2009-2010, Novell, Inc. // Copyright 2012 Xamarin Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to...
apache-2.0
C#
436933871e24c44e712653ff8e7b686c88366f20
Update GenericRequest.cs
pfhawkins/CSharp-StormOnDemand
API/APIRequests/GenericRequest.cs
API/APIRequests/GenericRequest.cs
#region License // Copyright (c) 2013 Michael Upton // // 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, modi...
#region License // Copyright (c) 2013 Michael Upton // // 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, modi...
apache-2.0
C#
95b40afb65836153d4ee8d0f7939e43422953054
Update Index.cshtml
ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab
Anlab.Mvc/Views/Home/Index.cshtml
Anlab.Mvc/Views/Home/Index.cshtml
@{ ViewData["Title"] = "Home Page"; } <div class="col-8"> <div class="alert alert-info"> <button type="button" class="close" data-dismiss="alert">×</button> Update posted: September 30, 2020<br /><br /> In response to the emergency need for the analysis of wine for smoke taint, ...
@{ ViewData["Title"] = "Home Page"; } <div class="col-8"> <div class="alert alert-info"> <button type="button" class="close" data-dismiss="alert">×</button> Update posted: September 30, 2020<br /><br /> In response to the emergency need for the analysis of wine for smoke taint, ...
mit
C#
7654a9117b2644b63eb30b4928d534b49e1287ab
Fix conditions as step should be called with PerformAction
wbap/hackathon-2017-sample,pekin0609/-,wbap/hackathon-2017-sample,pekin0609/-,wbap/hackathon-2017-sample,pekin0609/-,wbap/hackathon-2017-sample,pekin0609/-
environment/Assets/Scripts/AgentBehaviour.cs
environment/Assets/Scripts/AgentBehaviour.cs
using UnityEngine; using MsgPack; [RequireComponent(typeof (AgentController))] [RequireComponent(typeof (AgentSensor))] public class AgentBehaviour : MonoBehaviour { private LISClient client = new LISClient("myagent"); private AgentController controller; private AgentSensor sensor; private MsgPack.C...
using UnityEngine; using MsgPack; [RequireComponent(typeof (AgentController))] [RequireComponent(typeof (AgentSensor))] public class AgentBehaviour : MonoBehaviour { private LISClient client = new LISClient("myagent"); private AgentController controller; private AgentSensor sensor; private MsgPack.C...
apache-2.0
C#
90e76bacb8f4c454dbca61608f6a5b7b441cc1be
Add tryremove/add to in memory store
ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,beratcarsi/aspnetboilerplate,beratcarsi/aspnetboilerplate,ilyhacker/aspnetboilerplate,ryancyq/aspnetboilerplate,luchaoshuai/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,carldai0106/aspnetboilerplate,verdentk/aspnetboilerplate,carldai0106/aspnetboile...
src/Abp/RealTime/InMemoryOnlineClientStore.cs
src/Abp/RealTime/InMemoryOnlineClientStore.cs
using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Immutable; using Abp.Data; namespace Abp.RealTime { public class InMemoryOnlineClientStore : IOnlineClientStore { /// <summary> /// Online clients. /// </summary> protected Concurren...
using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Immutable; using Abp.Data; namespace Abp.RealTime { public class InMemoryOnlineClientStore : IOnlineClientStore { /// <summary> /// Online clients. /// </summary> protected Concurren...
mit
C#
8cae9556888dcc1469de061c0a554cb906a1eb6c
Add another keyframe to UT
AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia
tests/Avalonia.Markup.Xaml.UnitTests/SetterTests.cs
tests/Avalonia.Markup.Xaml.UnitTests/SetterTests.cs
using System.Linq; using Avalonia.Data; using Avalonia.Styling; using Avalonia.UnitTests; using Xunit; namespace Avalonia.Markup.Xaml.UnitTests { public class SetterTests : XamlTestBase { [Fact] public void Setter_Should_Work_Outside_Of_Style_With_SetterTargetType_Attribute() { ...
using System.Linq; using Avalonia.Data; using Avalonia.Styling; using Avalonia.UnitTests; using Xunit; namespace Avalonia.Markup.Xaml.UnitTests { public class SetterTests : XamlTestBase { [Fact] public void Setter_Should_Work_Outside_Of_Style_With_SetterTargetType_Attribute() { ...
mit
C#
706d71d64b5b977c873dbe10416e67c5e1bcfc05
Fix typo
undeadlabs/msgpack-cli,modulexcite/msgpack-cli,msgpack/msgpack-cli,modulexcite/msgpack-cli,undeadlabs/msgpack-cli,scopely/msgpack-cli,scopely/msgpack-cli,msgpack/msgpack-cli
src/MsgPack/UnassignedMessageTypeException.cs
src/MsgPack/UnassignedMessageTypeException.cs
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010-2013 FUJIWARA, Yusuke // // 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.apac...
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010-2013 FUJIWARA, Yusuke // // 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.apac...
apache-2.0
C#
b22e3e8b70810bba712ee4055a64d97ba00e6732
fix spaces to tabs
NickStrupat/EntityFramework.PrimaryKey
EntityFrameworkCore.PrimaryKey/PrimaryKeyDictionary.cs
EntityFrameworkCore.PrimaryKey/PrimaryKeyDictionary.cs
using System; using System.Collections.Generic; using System.Collections.ObjectModel; #if NETSTANDARD2_0 namespace EntityFrameworkCore.PrimaryKey { #else namespace EntityFramework.PrimaryKey { #endif public class PrimaryKeyDictionary<TEntity> : ReadOnlyDictionary<String, Object>, IEquatable<Dictionary<Strin...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; #if NETSTANDARD2_0 namespace EntityFrameworkCore.PrimaryKey { #else namespace EntityFramework.PrimaryKey { #endif public class PrimaryKeyDictionary<TEntity> : ReadOnlyDictionary<String, Object>, IEquatable<Dictionary<Strin...
mit
C#
48ee846fbcb5aeb7c73fbb3f8589cc2d28f1c1a5
add equals function
BartoszBaczek/WorkshopRequestsManager
Project/WorkshopManager/WorkshopManager/Models/Part.cs
Project/WorkshopManager/WorkshopManager/Models/Part.cs
namespace WorkshopManager { public class Part { public int ID { get; private set; } //Musze miec do tego dostep, ale nie bede mogl tego zmieniac, jak juz raz zostanie ustalone public string Name { get; set; } public double Prize { get; set; } public Part(int id, string name...
namespace WorkshopManager { public class Part { public int ID { get; private set; } //Musze miec do tego dostep, ale nie bede mogl tego zmieniac, jak juz raz zostanie ustalone public string Name { get; set; } public double Prize { get; set; } public Part(int id, string name...
mit
C#
c607e5b1a4b5ce8cd945a93bc6bd9e65cf391fe3
Add missing CharSet
jmelosegui/pinvoke,AArnott/pinvoke,vbfox/pinvoke
src/Msi.Desktop/Msi.cs
src/Msi.Desktop/Msi.cs
// Copyright (c) to owners found in https://github.com/AArnott/pinvoke/blob/master/COPYRIGHT.md. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. namespace PInvoke { using System; using System.Runtime.InteropServices; /// <cont...
// Copyright (c) to owners found in https://github.com/AArnott/pinvoke/blob/master/COPYRIGHT.md. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. namespace PInvoke { using System; using System.Runtime.InteropServices; /// <cont...
mit
C#
891be057c90751a6b5bc48a60ba523ec6892452a
fix capitalization error
faint32/snowflake-1,RonnChyran/snowflake,faint32/snowflake-1,RonnChyran/snowflake,faint32/snowflake-1,RonnChyran/snowflake,SnowflakePowered/snowflake,SnowflakePowered/snowflake,SnowflakePowered/snowflake
Snowflake.API/Information/MediaStore/FileMediaStore.cs
Snowflake.API/Information/MediaStore/FileMediaStore.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace Snowflake.Information.MediaStore { public class FileMediaStore : IMediaStore { private Dictionary<string, IMediaStoreSection> sections; public IMediaSto...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace Snowflake.Information.MediaStore { public class FileMediaStore : IMediaStore { private Dictionary<string, IMediaStoreSection> sections; public IMediaSto...
mpl-2.0
C#
a449d4f6e54d88cade5babfd0c0e0103537c59b8
fix #266
mleenhardt/EasyNetQ,alexwiese/EasyNetQ,fpommerening/EasyNetQ,scratch-net/EasyNetQ,Ascendon/EasyNetQ,fpommerening/EasyNetQ,scratch-net/EasyNetQ,Ascendon/EasyNetQ,mleenhardt/EasyNetQ,alexwiese/EasyNetQ,danbarua/EasyNetQ,Pliner/EasyNetQ,maverix/EasyNetQ,EIrwin/EasyNetQ,GeckoInformasjonssystemerAS/EasyNetQ,nicklv/EasyNetQ,...
Source/EasyNetQ.DI.Autofac/AutofacMessageDispatcher.cs
Source/EasyNetQ.DI.Autofac/AutofacMessageDispatcher.cs
using System.Threading.Tasks; using Autofac; using EasyNetQ.AutoSubscribe; namespace EasyNetQ.DI { public class AutofacMessageDispatcher : IAutoSubscriberMessageDispatcher { private readonly ILifetimeScope component; public AutofacMessageDispatcher(ILifetimeScope component) { ...
using System.Threading.Tasks; using Autofac; using EasyNetQ.AutoSubscribe; namespace EasyNetQ.DI { public class AutofacMessageDispatcher : IAutoSubscriberMessageDispatcher { private readonly ILifetimeScope component; public AutofacMessageDispatcher(ILifetimeScope component) { ...
mit
C#
6a4a1701ec0304cbcc01cf48e148923ab29a5c7b
Revert "Change ProcessorInfo to CPU"
zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos
source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs
source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs
using IL2CPU.API; using IL2CPU.API.Attribs; using System; using System.Diagnostics; using Cosmos.Core; namespace Cosmos.Core_Plugs.System.Diagnostics { [Plug(Target = typeof(global::System.Diagnostics.Stopwatch))] public class StopwatchImpl { public static long GetTimestamp() { ...
using IL2CPU.API; using IL2CPU.API.Attribs; using System; using System.Diagnostics; using Cosmos.Core; namespace Cosmos.Core_Plugs.System.Diagnostics { [Plug(Target = typeof(global::System.Diagnostics.Stopwatch))] public class StopwatchImpl { public static long GetTimestamp() { ...
bsd-3-clause
C#
c9272eef7ad1f1f3fc5d7bd17e3b10e2921520e0
Update ResolutionScope.AsyncInitializer.cs
z4kn4fein/stashbox
src/ResolutionScope.AsyncInitializer.cs
src/ResolutionScope.AsyncInitializer.cs
using Stashbox.Utils; using Stashbox.Utils.Data.Immutable; using System; using System.Threading; using System.Threading.Tasks; namespace Stashbox { internal sealed partial class ResolutionScope { private sealed class AsyncInitializable { private readonly object item; pr...
using Stashbox.Utils; using Stashbox.Utils.Data.Immutable; using System; using System.Threading; using System.Threading.Tasks; namespace Stashbox { internal sealed partial class ResolutionScope { private class AsyncInitializable { private readonly object item; private r...
mit
C#
f8705bd0697a5e60fc747883569c7d97fc1f942a
Add hashrate data to MyRentalsRecord class
bitbandi/MiningRigRentalsApi
MiningRigRentalsApi/ObjectModel/MyRentalsResponse.cs
MiningRigRentalsApi/ObjectModel/MyRentalsResponse.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using MiningRigRentalsApi.Converters; using Newtonsoft.Json; namespace MiningRigRentalsApi.ObjectModel { public class MyRentals { public MyRentalsRecords[] records; } public class MyRentalsRecords { public int id; public ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using MiningRigRentalsApi.Converters; using Newtonsoft.Json; namespace MiningRigRentalsApi.ObjectModel { public class MyRentals { public MyRentalsRecords[] records; } public class MyRentalsRecords { public int id; public ...
mit
C#
8d121c5c9081e42f6071b6f9b1d4c9941be07afc
Check provider specific config.
ExRam/ExRam.Gremlinq
test/ExRam.Gremlinq.Core.AspNet.Tests/ProviderConfigurationSectionTests.cs
test/ExRam.Gremlinq.Core.AspNet.Tests/ProviderConfigurationSectionTests.cs
using System.Collections.Generic; using ExRam.Gremlinq.Providers.Core; using FluentAssertions; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Xunit; namespace ExRam.Gremlinq.Core.AspNet.Tests { public class ProviderConfigurationSectionTests { private i...
using ExRam.Gremlinq.Providers.Core; using FluentAssertions; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Xunit; namespace ExRam.Gremlinq.Core.AspNet.Tests { public class ProviderConfigurationSectionTests { private interface IMyProviderConfigurator :...
mit
C#
2ab3f4a44e2ba5c82a24419ce46a6ab1c032d331
Add legacy option
unosquare/sshdeploy
Unosquare.Labs.SshDeploy/Options/MonitorVerbOptions.cs
Unosquare.Labs.SshDeploy/Options/MonitorVerbOptions.cs
using System; using System.Collections.Generic; using System.Text; using Unosquare.Swan.Attributes; namespace Unosquare.Labs.SshDeploy.Options { public class MonitorVerbOptions : PushVerbOptions { [ArgumentOption('m', "monitor", DefaultValue = "sshdeploy.ready", HelpText = "The command to run...
using System; using System.Collections.Generic; using System.Text; using Unosquare.Swan.Attributes; namespace Unosquare.Labs.SshDeploy.Options { public class MonitorVerbOptions : PushVerbOptions { [ArgumentOption('m', "monitor", DefaultValue = "sshdeploy.ready", HelpText = "The command to run...
mit
C#
5ddf7932d02971a38fa30ba965297eef2372a20c
Add method to return Department object by it's identifier
denismaster/dcs,denismaster/dcs,denismaster/dcs,denismaster/dcs
src/Diploms.WebUI/Controllers/DepartmentsController.cs
src/Diploms.WebUI/Controllers/DepartmentsController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Diploms.Core; namespace Diploms.WebUI.Controllers { [Route("api/[controller]")] public class DepartmentsController : Controller { private readonly IRepository<Depar...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Diploms.Core; namespace Diploms.WebUI.Controllers { [Route("api/[controller]")] public class DepartmentsController : Controller { private readonly IRepository<Depar...
mit
C#
a0a8900e9923192d8e0d483af0c11005b9140669
Update MVCConfigurationExtensions.cs
ipjohnson/Grace
src/Grace.AspNetCore.MVC/MVCConfigurationExtensions.cs
src/Grace.AspNetCore.MVC/MVCConfigurationExtensions.cs
using Grace.DependencyInjection; using Microsoft.AspNetCore.Mvc.Controllers; using Microsoft.AspNetCore.Mvc.ViewComponents; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Grace.AspNetCore.MVC.Inspector; namespace Grace.AspNetCore.MVC { public class GraceMVCC...
using Grace.DependencyInjection; using Microsoft.AspNetCore.Mvc.Controllers; using Microsoft.AspNetCore.Mvc.ViewComponents; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Grace.AspNetCore.MVC { public class GraceMVCConfiguration { public Grac...
mit
C#
89be53093835390fa04d9b7e4e33cb823996cb2a
Fix some more tests
mathnet/mathnet-numerics,shaia/mathnet-numerics,shaia/mathnet-numerics,shaia/mathnet-numerics,mathnet/mathnet-numerics,mathnet/mathnet-numerics,shaia/mathnet-numerics,mathnet/mathnet-numerics,shaia/mathnet-numerics,mathnet/mathnet-numerics
src/Numerics.Tests/LinearAlgebraTests/VectorToStringTests.cs
src/Numerics.Tests/LinearAlgebraTests/VectorToStringTests.cs
using System; using MathNet.Numerics.LinearAlgebra; using NUnit.Framework; namespace MathNet.Numerics.UnitTests.LinearAlgebraTests { [TestFixture] public class VectorToStringTests { Vector<double> v1 = Vector<double>.Build.Dense(1, i => (i + 1)*Constants.Pi); Vector<double> v2 = Vector<dou...
using System; using MathNet.Numerics.LinearAlgebra; using NUnit.Framework; namespace MathNet.Numerics.UnitTests.LinearAlgebraTests { [TestFixture] public class VectorToStringTests { Vector<double> v1 = Vector<double>.Build.Dense(1, i => (i + 1)*Constants.Pi); Vector<double> v2 = Vector<dou...
mit
C#
0606b1e76a8fdb31da93771c0fa60c1d1a85176d
update DfmVideoBlockRule. (#1475)
pascalberger/docfx,pascalberger/docfx,928PJY/docfx,dotnet/docfx,928PJY/docfx,pascalberger/docfx,hellosnow/docfx,superyyrrzz/docfx,DuncanmaMSFT/docfx,hellosnow/docfx,dotnet/docfx,dotnet/docfx,DuncanmaMSFT/docfx,superyyrrzz/docfx,928PJY/docfx,hellosnow/docfx,superyyrrzz/docfx
src/Microsoft.DocAsCode.Dfm/Rules/DfmVideoBlockRule.cs
src/Microsoft.DocAsCode.Dfm/Rules/DfmVideoBlockRule.cs
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.DocAsCode.Dfm { using System; using System.Text.RegularExpressions; using Microsoft.DocAsCode.MarkdownLite; using Microsoft.DocAsCo...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.DocAsCode.Dfm { using System; using System.Text.RegularExpressions; using Microsoft.DocAsCode.MarkdownLite; public class DfmVideoB...
mit
C#
edadbf0672522869c28ec6df1af566487fa01df4
Fix configuration for SQSMessagingScenarioFactory
RockFramework/Rock.Messaging
Rock.Messaging.SQS/MQ/SQSMessagingScenarioFactory.cs
Rock.Messaging.SQS/MQ/SQSMessagingScenarioFactory.cs
using Amazon.SQS; using System; using System.Collections.Generic; using System.Linq; #if ROCKLIB namespace RockLib.Messaging.SQS #else namespace Rock.Messaging.SQS #endif { public class SQSMessagingScenarioFactory : IMessagingScenarioFactory { private ISQSConfigurationProvider _configurationProvider; ...
using Amazon.SQS; using System; #if ROCKLIB namespace RockLib.Messaging.SQS #else namespace Rock.Messaging.SQS #endif { public class SQSMessagingScenarioFactory : IMessagingScenarioFactory { private readonly ISQSConfigurationProvider _configurationProvider; public SQSMessagingScenarioFactory(...
mit
C#
085b6ae25f0f6bd4c01b4077090d01be35ef3b67
Add background video for showcase scene (Tournament Client)
NeoAdonis/osu,peppy/osu-new,peppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,UselessToucan/osu
osu.Game.Tournament/Screens/Showcase/ShowcaseScreen.cs
osu.Game.Tournament/Screens/Showcase/ShowcaseScreen.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.Game.Tournament.Components; namespace osu.Game.Tournament.Screens.Showcase { public class Sho...
// 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; namespace osu.Game.Tournament.Screens.Showcase { public class ShowcaseScreen : BeatmapInfoScreen { [BackgroundDependencyL...
mit
C#
7f89d9117d98f593209bc90271dd099a2febbcfc
Make disposal of tracker idempotent for operations
ppy/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,smoogipooo/osu,ppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu
osu.Game/Screens/OnlinePlay/OngoingOperationTracker.cs
osu.Game/Screens/OnlinePlay/OngoingOperationTracker.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; namespace osu.Game.Screens.OnlinePlay { /// <summary> ...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; namespace osu.Game.Screens.OnlinePlay { /// <summary> ...
mit
C#
243dd86afa538d28cd57c33a5cd02a5a8d535d20
Add intermediate completion callback to MultiCoroutine
orbitalgames/unity-utilities
MultiCoroutine.cs
MultiCoroutine.cs
/* The MIT License (MIT) Copyright (c) 2015 Orbital Games, LLC. 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,...
/* The MIT License (MIT) Copyright (c) 2015 Orbital Games, LLC. 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,...
mit
C#
81bf29d0a1197b1393a84d4a17bab74225bb7798
Implement IEquatable for ExcludeFileFilter.
elliotharris/Janus
Janus/Filters/ExcludeFileFilter.cs
Janus/Filters/ExcludeFileFilter.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Janus.Matchers; namespace Janus.Filters { public class ExcludeFileFilter : IFilter, IEquatable<ExcludeFileFilter> { public FilterBehaviour Behaviour => FilterBehaviour.Ignore; private readonl...
using System.Collections.Generic; using System.IO; using System.Linq; using Janus.Matchers; namespace Janus.Filters { public class ExcludeFileFilter : IFilter { public FilterBehaviour Behaviour => FilterBehaviour.Ignore; private readonly IPatternMatcher<string> _matcher = new Simpl...
mit
C#
37e88d234bdef5ab9b14780ae012daef058088cb
remove Menu Item from management menu
StefanoFiumara/Harry-Potter-Unity
Assets/Editor/HarryPotterExtensions/CardProcessing.cs
Assets/Editor/HarryPotterExtensions/CardProcessing.cs
using System.Linq; using HarryPotterUnity.Cards.PlayRequirements; using HarryPotterUnity.DeckGeneration.Requirements; using JetBrains.Annotations; using UnityEditor; using UnityEngine; namespace HarryPotterExtensions { public static class CardProcessing { /// <summary> /// Template for app...
using System.Linq; using HarryPotterUnity.Cards.PlayRequirements; using HarryPotterUnity.DeckGeneration.Requirements; using JetBrains.Annotations; using UnityEditor; using UnityEngine; namespace HarryPotterExtensions { public static class CardProcessing { /// <summary> /// Template for app...
mit
C#
2dcf26bcdea1baf527c0913e7d4141b132bf0087
Update to reuse existing window, if it exists
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/Core/Inspectors/Setup/MRTKVersionPopup.cs
Assets/MRTK/Core/Inspectors/Setup/MRTKVersionPopup.cs
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Utilities.Editor; using System; using UnityEditor; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Editor { internal class MRTKVersionPopup : EditorWindow { private static MRTKV...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Utilities.Editor; using System; using UnityEditor; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Editor { internal class MRTKVersionPopup : EditorWindow { private static MRTKV...
mit
C#
ffc9298e86d93e447b14ded7a59fa6a81b855809
change the upload date to be in UTC
SoftwareFans/AstroPhotoGallery,SoftwareFans/AstroPhotoGallery,SoftwareFans/AstroPhotoGallery
AstroPhotoGallery/AstroPhotoGallery/Models/Picture.cs
AstroPhotoGallery/AstroPhotoGallery/Models/Picture.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AstroPhotoGallery.Models { public class Picture { private ICollection<Tag> tags; public Picture() { ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AstroPhotoGallery.Models { public class Picture { private ICollection<Tag> tags; public Picture() { ...
mit
C#
e6015979b78382599c59fc69ece71ec723eb6760
Fix size
gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer
LmpCommon/Message/Data/Vessel/VesselFairingMsgData.cs
LmpCommon/Message/Data/Vessel/VesselFairingMsgData.cs
using Lidgren.Network; using LmpCommon.Message.Types; namespace LmpCommon.Message.Data.Vessel { public class VesselFairingMsgData : VesselBaseMsgData { /// <inheritdoc /> internal VesselFairingMsgData() { } public override VesselMessageType VesselMessageType => VesselMessageType.Fairin...
using Lidgren.Network; using LmpCommon.Message.Types; namespace LmpCommon.Message.Data.Vessel { public class VesselFairingMsgData : VesselBaseMsgData { /// <inheritdoc /> internal VesselFairingMsgData() { } public override VesselMessageType VesselMessageType => VesselMessageType.Fairin...
mit
C#
73c21b7de1fe62cecc02b3108f0c510de36ea0b9
Fix migration sql to be run in transaction block
RelistenNet/RelistenApi,alecgorge/RelistenApi,RelistenNet/RelistenApi,RelistenNet/RelistenApi,RelistenNet/RelistenApi,alecgorge/RelistenApi
RelistenApi/Migrations/05_AddSourceTrackPlaysIndex.cs
RelistenApi/Migrations/05_AddSourceTrackPlaysIndex.cs
using SimpleMigrations; namespace Migrations { [Migration(5, "Add source track plays index")] public class AddSourceTrackPlaysIndex : Migration { protected override void Up() { Execute(@" CREATE INDEX IF NOT EXISTS idx_source_track_plays_id_btree ON source_track_...
using SimpleMigrations; namespace Migrations { [Migration(5, "Add source track plays index")] public class AddSourceTrackPlaysIndex : Migration { protected override void Up() { Execute(@" CREATE INDEX IF NOT EXISTS idx_source_track_plays_id_btree ON source_track_...
mit
C#
8a707748e5877780f99a7d031dd3bcb0949e0af5
Use expression body
bcemmett/SurveyMonkeyApi-v3,davek17/SurveyMonkeyApi-v3
SurveyMonkey/RequestSettings/GetSurveyListSettings.cs
SurveyMonkey/RequestSettings/GetSurveyListSettings.cs
using System; namespace SurveyMonkey.RequestSettings { public class GetSurveyListSettings : IPagingSettings { public enum SortByOption { Title, DateModified, NumResponses } public enum SortOrderOption { ASC, D...
using System; namespace SurveyMonkey.RequestSettings { public class GetSurveyListSettings : IPagingSettings { public enum SortByOption { Title, DateModified, NumResponses } public enum SortOrderOption { ASC, D...
mit
C#
d1c691391579f3af6cc29e851488bd9cc14d7141
Call ResolveKeyed expression with explicit type (#55)
bwatts/Totem,bwatts/Totem
Source/Totem/Runtime/Map/Timeline/KeyedDependency.cs
Source/Totem/Runtime/Map/Timeline/KeyedDependency.cs
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Totem.Runtime.Map.Timeline { /// <summary> /// A .When method parameter representing a dependency resolved by key /// </summary> public sealed class KeyedDependency : Dependency { ...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Totem.Runtime.Map.Timeline { /// <summary> /// A .When method parameter representing a dependency resolved by key /// </summary> public sealed class KeyedDependency : Dependency { ...
mit
C#
045b22325bfa334a51161194eca6f5c450a5fbc3
Update TSQLNumericLiteral.cs
bruce-dunwiddie/tsql-parser
TSQL_Parser/TSQL_Parser/Tokens/TSQLNumericLiteral.cs
TSQL_Parser/TSQL_Parser/Tokens/TSQLNumericLiteral.cs
using System; using System.Globalization; namespace TSQL.Tokens { public class TSQLNumericLiteral : TSQLLiteral { internal TSQLNumericLiteral( int beginPosition, string text) : base( beginPosition, text) { // have to handle exponent notation, e.g. 0.5E-2. // https://docs.microsoft.com/en-...
using System; using System.Globalization; namespace TSQL.Tokens { public class TSQLNumericLiteral : TSQLLiteral { internal TSQLNumericLiteral( int beginPosition, string text) : base( beginPosition, text) { // have to handle exponent notation, e.g. 0.5E-2. // https://docs.microsoft.com/en-...
apache-2.0
C#
e0942bc4389f16910a8263e605a0de4b2b559149
Hide quad buffer from debugger so it doesn't crash
SteamDatabase/ValveResourceFormat
GUI/Utils/VrfGuiContext.cs
GUI/Utils/VrfGuiContext.cs
using System; using System.Diagnostics; using GUI.Types.Renderer; using SteamDatabase.ValvePak; using ValveResourceFormat; namespace GUI.Utils { public class VrfGuiContext : IDisposable { public string FileName { get; } public Package CurrentPackage { get; set; } public MaterialLoader...
using System; using GUI.Types.Renderer; using SteamDatabase.ValvePak; using ValveResourceFormat; namespace GUI.Utils { public class VrfGuiContext : IDisposable { public string FileName { get; } public Package CurrentPackage { get; set; } public MaterialLoader MaterialLoader { get; } ...
mit
C#
161729a4356cc9966602b760c325894a7319fef9
replace grabled character with white space (#25935)
ptoonen/corefx,shimingsg/corefx,axelheer/corefx,axelheer/corefx,wtgodbe/corefx,ericstj/corefx,ravimeda/corefx,Jiayili1/corefx,Ermiar/corefx,zhenlan/corefx,axelheer/corefx,mmitche/corefx,Jiayili1/corefx,ViktorHofer/corefx,shimingsg/corefx,ericstj/corefx,ericstj/corefx,ravimeda/corefx,ViktorHofer/corefx,Jiayili1/corefx,w...
src/System.Diagnostics.PerformanceCounter/tests/CounterCreationDataTests.cs
src/System.Diagnostics.PerformanceCounter/tests/CounterCreationDataTests.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 System.Collections; using System.Collections.Specialized; using System.ComponentModel; using Xun...
// 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 System.Collections; using System.Collections.Specialized; usingSystem.ComponentModel; using Xuni...
mit
C#
73258eff28732c0a336be931f99a9a93a1c48fa6
Create PermanentTestRunner rather than direct TestTree
vain0/EnumerableTest
EnumerableTest.Runner.Wpf/TestTree/TestTreeView.xaml.cs
EnumerableTest.Runner.Wpf/TestTree/TestTreeView.xaml.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging;...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging;...
mit
C#
160a8940c1c34e7c2cc4023a486e566fa18c7294
Add OmniSharpCompletionService.GetDescriptionAsync (#59782)
CyrusNajmabadi/roslyn,weltkante/roslyn,jasonmalinowski/roslyn,KevinRansom/roslyn,mavasani/roslyn,CyrusNajmabadi/roslyn,dotnet/roslyn,mavasani/roslyn,bartdesmet/roslyn,weltkante/roslyn,CyrusNajmabadi/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,KevinRansom/roslyn,shyamnamboodiripad/roslyn,dotnet/roslyn,mavasani/rosly...
src/Tools/ExternalAccess/OmniSharp/Completion/OmniSharpCompletionService.cs
src/Tools/ExternalAccess/OmniSharp/Completion/OmniSharpCompletionService.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#
d60769ccbffc31769b2f2cb19104e2dcb2c25f23
Add comments to a new class.
andyfmiller/LtiLibrary
LtiLibrary.AspNet/Outcomes/v1/ImsxXmlMediaTypeResult.cs
LtiLibrary.AspNet/Outcomes/v1/ImsxXmlMediaTypeResult.cs
using Microsoft.AspNetCore.Mvc; namespace LtiLibrary.AspNet.Outcomes.v1 { /// <summary> /// Use to attach a specific XML formatter to controller results. For example, /// <code>public ImsxXmlMediaTypeResult Post([ModelBinder(BinderType = typeof(ImsxXmlMediaTypeModelBinder))] imsx_POXEnvelopeType request)<...
using Microsoft.AspNetCore.Mvc; namespace LtiLibrary.AspNet.Outcomes.v1 { public class ImsxXmlMediaTypeResult : ObjectResult { public ImsxXmlMediaTypeResult(object value) : base(value) { Formatters.Add(new ImsxXmlMediaTypeOutputFormatter()); } } }
apache-2.0
C#
ddb6368fb03d003b440d9b83544cd46184f20c31
Update JournalMarketSell.cs
vendolis/EDDiscovery,jthorpe4/EDDiscovery,jeoffman/EDDiscovery,vendolis/EDDiscovery,jgoode/EDDiscovery,mwerle/EDDiscovery,jgoode/EDDiscovery,mwerle/EDDiscovery,jeoffman/EDDiscovery
EDDiscovery/EliteDangerous/JournalEvents/JournalMarketSell.cs
EDDiscovery/EliteDangerous/JournalEvents/JournalMarketSell.cs
 using Newtonsoft.Json.Linq; using System.Linq; namespace EDDiscovery.EliteDangerous.JournalEvents { //When Written: when selling goods in the market //Parameters: //• Type: cargo type //• Count: number of units //• SellPrice: price per unit //• TotalSale: total sale value //• AvgPricePaid...
 using Newtonsoft.Json.Linq; using System.Linq; namespace EDDiscovery.EliteDangerous.JournalEvents { //When Written: when selling goods in the market //Parameters: //• Type: cargo type //• Count: number of units //• SellPrice: price per unit //• TotalSale: total sale value //• AvgPricePaid...
apache-2.0
C#
ff27732d3d189dae5eed266091e1e415db13dfd6
Update kod.cs
Nazarewicz/prywatnemw
kod.cs
kod.cs
int a = 2; ConsoleWriteLine(a);
int a = 2;
mit
C#
4e61de8009b19a92f1e38ad02e5d6798729560ea
Fix mono bug in the FontHelper class
gtryus/libpalaso,andrew-polk/libpalaso,darcywong00/libpalaso,JohnThomson/libpalaso,JohnThomson/libpalaso,tombogle/libpalaso,chrisvire/libpalaso,sillsdev/libpalaso,ermshiperete/libpalaso,glasseyes/libpalaso,darcywong00/libpalaso,JohnThomson/libpalaso,gmartin7/libpalaso,ddaspit/libpalaso,gmartin7/libpalaso,ddaspit/libpal...
PalasoUIWindowsForms.Tests/FontTests/FontHelperTests.cs
PalasoUIWindowsForms.Tests/FontTests/FontHelperTests.cs
using System; using System.Drawing; using NUnit.Framework; using Palaso.UI.WindowsForms; namespace PalasoUIWindowsForms.Tests.FontTests { [TestFixture] public class FontHelperTests { [SetUp] public void SetUp() { // setup code goes here } [TearDown] public void TearDown() { // tear down code ...
using System; using System.Drawing; using System.Linq; using NUnit.Framework; using Palaso.UI.WindowsForms; namespace PalasoUIWindowsForms.Tests.FontTests { [TestFixture] public class FontHelperTests { [SetUp] public void SetUp() { // setup code goes here } [TearDown] public void TearDown() { ...
mit
C#
b394eb899e4b7d476aafa4deca67c7db7c2f882a
add comments
myxini/block-program
block-program/Communication/Robot/StraightCommand.cs
block-program/Communication/Robot/StraightCommand.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myxini.Communication.Robot { /// <summary> /// ロボットへの直進コマンドをあらわすクラス /// </summary> class StraightCommand : MoveCommand { /// <summary> /// 速さを表すパラメータ。1.0で最大 ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myxini.Communication.Robot { /// <summary> /// ロボットへの直進コマンドをあらわすクラス /// </summary> class StraightCommand : MoveCommand { public float Velocity { get; set; } ...
mit
C#
552008766a0c93b99b70568ac7fc049952508ee0
Fix NormalVerbosityLog sealed.
giacomelli/jumpstart
src/Giacomelli.JumpStart/Logging/NormalVerbosityLog.cs
src/Giacomelli.JumpStart/Logging/NormalVerbosityLog.cs
using System; namespace Giacomelli.JumpStart { /// <summary> /// A normal verbosity log implementation to jumpstart. /// </summary> public sealed class NormalVerbosityLog : ILog, IProgress { private float m_totalFiles; /// <summary> /// Write a debug level message to log. /// </summary> /// <param nam...
using System; namespace Giacomelli.JumpStart { /// <summary> /// A normal verbosity log implementation to jumpstart. /// </summary> public sealed class NormalVerbosityLog : ILog, IProgress { private float m_totalFiles; /// <summary> /// Write a debug level message to log. /// </summary> /// <param nam...
mit
C#
562fbfbe067d84136e2e3d450661e72a0ef89118
Fix exception that can occur when a PropertyEditor DLL no longer exists
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#
1cd5a1f4ef085445f5943f4c4699e7d4efe4aab3
update version
prodot/ReCommended-Extension
Sources/ReCommendedExtension/Properties/AssemblyInfo.cs
Sources/ReCommendedExtension/Properties/AssemblyInfo.cs
using System.Reflection; using ReCommendedExtension; // 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(ZoneMarker.ExtensionName)] [assembly: AssemblyDescript...
using System.Reflection; using ReCommendedExtension; // 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(ZoneMarker.ExtensionName)] [assembly: AssemblyDescript...
apache-2.0
C#
a741d91aed91f338ffecd3a4596b551c8804b52e
use null propragtor for Ruleset.Value and rulset instead of null checks
ppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipooo/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu
osu.Game.Tournament/Components/TournamentModDisplay.cs
osu.Game.Tournament/Components/TournamentModDisplay.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Linq; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites; using 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 System.Linq; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites; using osu....
mit
C#
a5d2d744479c39d9d8bcfb8a04d0888419993eb8
Remove whitespace
DrabWeb/osu,naoey/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,johnneijzen/osu,ppy/osu,NeoAdonis/osu,2yangk23/osu,johnneijzen/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,DrabWeb/osu,ZLima12/osu,naoey/osu,NeoAdonis/osu,EVAST9919/osu,naoey/osu,ZLima12/osu,peppy/osu,smoogipooo/osu,EVAS...
osu.Game/Screens/Edit/Components/BottomBarContainer.cs
osu.Game/Screens/Edit/Components/BottomBarContainer.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.Audio.Track; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Container...
// 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.Audio.Track; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Container...
mit
C#
f3a747b14afa90e082d3d49e32a7b3e51791a22e
Remove unused MarshalPrinter members.
jonathanpeppers/Embeddinator-4000,jonathanpeppers/Embeddinator-4000,mono/Embeddinator-4000,mono/Embeddinator-4000,jonathanpeppers/Embeddinator-4000,jonathanpeppers/Embeddinator-4000,mono/Embeddinator-4000,mono/Embeddinator-4000,jonathanpeppers/Embeddinator-4000,jonathanpeppers/Embeddinator-4000,jonathanpeppers/Embeddin...
binder/Generators/Marshal.cs
binder/Generators/Marshal.cs
using CppSharp; using CppSharp.AST; using CppSharp.Generators; namespace Embeddinator.Generators { public class MarshalPrinter : AstVisitor { public MarshalPrinter(BindingContext context) { Context = context; Before = new TextGenerator(); After = new TextGen...
using CppSharp; using CppSharp.AST; using CppSharp.Generators; namespace Embeddinator.Generators { public class MarshalPrinter : AstVisitor { public MarshalPrinter(BindingContext context) { Context = context; Before = new TextGenerator(); After = new TextGen...
mit
C#
92403ef3453a623f408b3aaa5160bc235ec71368
Add IsoDateTimeConverter to MandrillSenderDomain.VerifiedAt
feinoujc/Mandrill.net
src/Mandrill.net/Model/Senders/MandrillSenderDomain.cs
src/Mandrill.net/Model/Senders/MandrillSenderDomain.cs
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System; namespace Mandrill.Model { public class MandrillSenderDomain { public string Domain { get; set; } [JsonConverter(typeof(IsoDateTimeConverter))] public DateTime CreatedAt { get; set; } [JsonConverter(typeof(I...
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System; namespace Mandrill.Model { public class MandrillSenderDomain { public string Domain { get; set; } [JsonConverter(typeof(IsoDateTimeConverter))] public DateTime CreatedAt { get; set; } [JsonConverter(typeof(I...
mit
C#
503ee97a15872748e77b1636f3d91b1263924095
Fix license header
EVAST9919/osu,UselessToucan/osu,DrabWeb/osu,Frontear/osuKyzer,peppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,DrabWeb/osu,peppy/osu,ppy/osu,ZLima12/osu,UselessToucan/osu,2yangk23/osu,johnneijzen/osu,Drezi126/osu,naoey/osu,naoey/osu,Nabile-Rahmani/osu,EVAST9919/osu,peppy/osu,NeoAdonis/osu,ZLima12/osu,smoogipooo/...
osu.Game/Overlays/Direct/SlimEnumDropdown.cs
osu.Game/Overlays/Direct/SlimEnumDropdown.cs
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using OpenTK.Graphics; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.UserInterface; using osu.Game.G...
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using OpenTK.Graphics; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.UserInterface; using osu.Game.Gr...
mit
C#
feeccb517073c824c3682dec78fa1504aa1e8cea
Bump version to 0.4.0
FatturaElettronicaPA/FatturaElettronicaPA.Forms
Properties/AssemblyInfo.cs
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("FatturaElettronica.Forms")] [assembly: As...
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("FatturaElettronica.Forms")] [assembly: As...
bsd-3-clause
C#
eff88dc60fcb457b2ac578bced01fc5ff65fc83d
bump version to 1.0.0.1
dnauck/AspSQLProvider,dnauck/AspSQLProvider
Properties/AssemblyInfo.cs
Properties/AssemblyInfo.cs
// // $Id$ // // 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, // distribute, sublicens...
// // $Id$ // // 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, // distribute, sublicen...
mit
C#
9782f2c5030b7f6269b4f00a375d80030af84e80
clean up
asipe/SupaCharge
src/SupaCharge.Core/ExceptionHandling/ExceptionDump.cs
src/SupaCharge.Core/ExceptionHandling/ExceptionDump.cs
using System; using System.Collections.Generic; using System.Linq; namespace SupaCharge.Core.ExceptionHandling { public class ExceptionDump { public ExceptionDump(Exception Exception) { mException = Exception; mIsInnerException = false; if (HasInnerException(Exception)) mIsIn...
using System; using System.Collections.Generic; using System.Linq; namespace SupaCharge.Core.ExceptionHandling { public class ExceptionDump { public ExceptionDump(Exception Exception) { mException = Exception; IsInnerException = false; if (HasInnerException(Exception)) IsInne...
mit
C#
abba1c6dc68cf542adfa84ecfb053767f56cc732
Bump version
gonzalocasas/NetMetrixSDK
Properties/AssemblyInfo.cs
Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [ass...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [ass...
mit
C#
df81ae07d47d8f8391e2cd4b4b732f5105a1d3f4
Kill stray Console.WriteLine()
ammachado/refit,mteper/refit,jlucansky/refit,martijn00/refit,martijn00/refit,onovotny/refit,jlucansky/refit,onovotny/refit,PureWeen/refit,ammachado/refit,mteper/refit,paulcbetts/refit,paulcbetts/refit,PKRoma/refit,PureWeen/refit
Refit/CastleRestService.cs
Refit/CastleRestService.cs
using System; using System.Net.Http; using System.Collections.Generic; using System.Linq; using Castle.DynamicProxy; using System.Threading.Tasks; using System.Threading; namespace Refit { public class CastleRestService : IRestService { readonly ProxyGenerator proxyGen = new ProxyGenerator(); p...
using System; using System.Net.Http; using System.Collections.Generic; using System.Linq; using Castle.DynamicProxy; using System.Threading.Tasks; using System.Threading; namespace Refit { public class CastleRestService : IRestService { readonly ProxyGenerator proxyGen = new ProxyGenerator(); p...
mit
C#
203d72fb163141b5adf9f81bbf4517f6cdaacb57
Copy C Batt
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Web/Jobs/PERSTATReportJob.cs
Battery-Commander.Web/Jobs/PERSTATReportJob.cs
using BatteryCommander.Web.Models; using BatteryCommander.Web.Services; using FluentEmail.Core; using FluentEmail.Core.Models; using FluentScheduler; using Serilog; using System.Collections.Generic; using System.IO; namespace BatteryCommander.Web.Jobs { public class PERSTATReportJob : IJob { private s...
using BatteryCommander.Web.Models; using BatteryCommander.Web.Services; using FluentEmail.Core; using FluentEmail.Core.Models; using FluentScheduler; using Serilog; using System.Collections.Generic; using System.IO; namespace BatteryCommander.Web.Jobs { public class PERSTATReportJob : IJob { private s...
mit
C#
55ac2cc3f370320d5901f27d4067085fc1efa311
Fix links not showing in WebView because of casing (fun fun)
dlech/monomac,PlayScriptRedux/monomac
samples/macdoc/DocTools.cs
samples/macdoc/DocTools.cs
// // A few routines that were copy-pasted from the docbrowser // using System; using Monodoc; using System.IO; namespace macdoc { public class DocTools { public static string GetHtml (string url, HelpSource helpSource) { Node _; return GetHtml (url, helpSource, out _); } public static string GetHtm...
// // A few routines that were copy-pasted from the docbrowser // using System; using Monodoc; using System.IO; namespace macdoc { public class DocTools { public static string GetHtml (string url, HelpSource helpSource) { Node _; return GetHtml (url, helpSource, out _); } public static string GetHtm...
apache-2.0
C#
ead4a4ecec6c4353e510dccec8b5e5c724035753
Update AzureFileStorageTests.cs
A51UK/File-Repository
File-Repository-Tests/AzureFileStorageTests.cs
File-Repository-Tests/AzureFileStorageTests.cs
/* * Copyright 2017 Craig Lee Mark Adams Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agree...
/* * Copyright 2017 Craig Lee Mark Adams Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agree...
apache-2.0
C#