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
403909b598e4c735a1a1e47c429593eb54164b7e
Update SR test values in line with diffspike changes
peppy/osu-new,UselessToucan/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,ppy/osu
osu.Game.Rulesets.Osu.Tests/OsuDifficultyCalculatorTest.cs
osu.Game.Rulesets.Osu.Tests/OsuDifficultyCalculatorTest.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.Game.Beatmaps; using osu.Game.Rulesets.Difficulty; using osu.Game.Rulesets.Osu.Difficulty; using osu.Game.Rulesets.Osu.Mods; using osu.Ga...
// 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.Game.Beatmaps; using osu.Game.Rulesets.Difficulty; using osu.Game.Rulesets.Osu.Difficulty; using osu.Game.Rulesets.Osu.Mods; using osu.Ga...
mit
C#
27f992efe1456aa3c1f61459742406d779e24b15
Fix not null constraint failed exception
06b/Dalian,06b/Dalian
src/Dalian/Models/Sites.cs
src/Dalian/Models/Sites.cs
using NPoco; using System; namespace Dalian.Models { [PrimaryKey("SiteId", AutoIncrement = false)] public class Sites { public string SiteId { get; set; } public string Name { get; set; } public string Url { get; set; } public string Note { get; set; } public string...
using NPoco; using System; namespace Dalian.Models { [PrimaryKey("SiteId")] public class Sites { public string SiteId { get; set; } public string Name { get; set; } public string Url { get; set; } public string Note { get; set; } public string Source { get; set; } ...
mit
C#
b7c9df02a71b0b7ef93bba32c9b137e67a765df2
disable optimizations
eugenpodaru/resume,eugenpodaru/resume,eugenpodaru/resume
Resume/App_Start/BundleConfig.cs
Resume/App_Start/BundleConfig.cs
namespace Resume { using System.Web.Optimization; public class BundleConfig { public static void RegisterBundles(BundleCollection bundles) { // javascript bundles bundles.Add(new ScriptBundle("~/bundles/js") .Include("~/Content/Scripts/app/app.min.js...
namespace Resume { using System.Web.Optimization; public class BundleConfig { public static void RegisterBundles(BundleCollection bundles) { // javascript bundles bundles.Add(new ScriptBundle("~/bundles/js") .Include("~/Content/Scripts/app/app.js"));...
mit
C#
bfe4825cd6255fa2fb5121882e4061689bd0936a
Define ITaskPaneConnection interface as contravariant
NetOfficeFw/NetOffice
Source/Office/Tools/ITaskPane.cs
Source/Office/Tools/ITaskPane.cs
using System; using NetOffice; using NetOffice.Attributes; using NetOffice.Tools; namespace NetOffice.OfficeApi.Tools { /// <summary> /// Connection part for the <see cref="ITaskPane"/> objects representing custom task panes. /// </summary> /// <typeparam name="T">Office Host Application</typeparam> ...
using System; using NetOffice; using NetOffice.Attributes; using NetOffice.Tools; namespace NetOffice.OfficeApi.Tools { /// <summary> /// Connection part for the <see cref="ITaskPane"/> objects representing custom task panes. /// </summary> /// <typeparam name="T">Office Host Application</typeparam> ...
mit
C#
2eb16bf3d71dfffb344cf3a799fb09080ec3a8c7
Remove check for bytes sent
ethanmoffat/EndlessClient
EOLib/Net/Communication/PacketSendService.cs
EOLib/Net/Communication/PacketSendService.cs
// Original Work Copyright (c) Ethan Moffat 2014-2016 // This file is subject to the GPL v2 License // For additional details, see the LICENSE file using System.Threading.Tasks; namespace EOLib.Net.Communication { public class PacketSendService : IPacketSendService { private readonly INetworkClientProvider _netw...
// Original Work Copyright (c) Ethan Moffat 2014-2016 // This file is subject to the GPL v2 License // For additional details, see the LICENSE file using System.Threading.Tasks; namespace EOLib.Net.Communication { public class PacketSendService : IPacketSendService { private readonly INetworkClientProvider _netw...
mit
C#
e092f589ba5d07a4dd2c46eb69ebe2dbe26e63ba
add SingleOrDefaultOrThrow XML doc
OlegKleyman/Omego.Extensions
core/Omego.Extensions/QueryableExtensions/SingleOrDefaultOrThrow.cs
core/Omego.Extensions/QueryableExtensions/SingleOrDefaultOrThrow.cs
namespace Omego.Extensions.QueryableExtensions { using System; using System.Linq; using System.Linq.Expressions; /// <summary> /// Contains extension methods for <see cref="IQueryable{T}" />. /// </summary> public static partial class Queryable { /// <summary> /// ...
namespace Omego.Extensions.QueryableExtensions { using System; using System.Linq; using System.Linq.Expressions; /// <summary> /// Contains extension methods for <see cref="IQueryable{T}" />. /// </summary> public static partial class Queryable { /// <summary> /// ...
unlicense
C#
342ed89d998d96514d18398488cd342965d124e1
Add warning when GitVersion is used with SSH endpoint and NoFetch is disabled
nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke
source/Nuke.Common/Tools/GitVersion/GitVersionAttribute.cs
source/Nuke.Common/Tools/GitVersion/GitVersionAttribute.cs
// Copyright 2019 Maintainers of NUKE. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Linq; using System.Reflection; using JetBrains.Annotations; using Nuke.Common.CI.AppVeyor; using Nuke.Common.CI.AzurePipelines; using Nuke.Common.CI.TeamCit...
// Copyright 2019 Maintainers of NUKE. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Linq; using System.Reflection; using JetBrains.Annotations; using Nuke.Common.CI.AppVeyor; using Nuke.Common.CI.AzurePipelines; using Nuke.Common.CI.TeamCit...
mit
C#
439fafd0939c1043f87dda30c76c2613181457e1
Use IMagickImage instead of IMagickImage<QuantumType>.
dlemstra/Magick.NET,dlemstra/Magick.NET
src/Magick.NET/Shared/Extensions/IMagickImageExtensions.cs
src/Magick.NET/Shared/Extensions/IMagickImageExtensions.cs
// Copyright 2013-2020 Dirk Lemstra <https://github.com/dlemstra/Magick.NET/> // // Licensed under the ImageMagick License (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // // https://www.imagemagick.org/script/license.php // // Unless requ...
// Copyright 2013-2020 Dirk Lemstra <https://github.com/dlemstra/Magick.NET/> // // Licensed under the ImageMagick License (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // // https://www.imagemagick.org/script/license.php // // Unless requ...
apache-2.0
C#
77e65aa1ffe117294e0ee90a1c4ded844bb60e05
Check if registered before trying.
ZocDoc/ServiceStack,ZocDoc/ServiceStack,ZocDoc/ServiceStack,ZocDoc/ServiceStack
src/ServiceStack/DependencyInjection/DependencyResolver.cs
src/ServiceStack/DependencyInjection/DependencyResolver.cs
using System; using System.Collections.Generic; using Autofac; using Autofac.Core; namespace ServiceStack.DependencyInjection { public class DependencyResolver : IDisposable { private readonly ILifetimeScope _lifetimeScope; public DependencyResolver(ILifetimeScope lifetimeScope) { ...
using System; using System.Collections.Generic; using Autofac; using Autofac.Core; namespace ServiceStack.DependencyInjection { public class DependencyResolver : IDisposable { private readonly ILifetimeScope _lifetimeScope; public DependencyResolver(ILifetimeScope lifetimeScope) { ...
bsd-3-clause
C#
68500dc9491b3fbdff3858f6d3bc32b624f09dea
Remove an extra "// Licensed under the Apache License Version 2.0."
chrsmith/google-cloud-powershell,marceloyuela/google-cloud-powershell,GoogleCloudPlatform/google-cloud-powershell,ILMTitan/google-cloud-powershell,marceloyuela/google-cloud-powershell,marceloyuela/google-cloud-powershell
Google.PowerShell/Properties/AssemblyInfo.cs
Google.PowerShell/Properties/AssemblyInfo.cs
// Copyright 2015-2016 Google Inc. All Rights Reserved. // Licensed under the Apache License Version 2.0. 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 th...
// Copyright 2015-2016 Google Inc. All Rights Reserved. // Licensed under the Apache License Version 2.0. // Licensed under the Apache License Version 2.0. using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled thr...
apache-2.0
C#
374dac57f2b3c4ea34a24929700119fa9a4eb52a
Change expanded card content height to 200
NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,ppy/osu,peppy/osu,peppy/osu,ppy/osu,ppy/osu
osu.Game/Beatmaps/Drawables/Cards/ExpandedContentScrollContainer.cs
osu.Game/Beatmaps/Drawables/Cards/ExpandedContentScrollContainer.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.Input.Events; using osu.Framework.Utils; using osu.Game.Graphics.Containers; namespace osu.Game.Beatmaps.Drawables.Cards { public c...
// 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.Input.Events; using osu.Framework.Utils; using osu.Game.Graphics.Containers; namespace osu.Game.Beatmaps.Drawables.Cards { public c...
mit
C#
2c76c91e71b5f0c61dd582beec0786bfbc9457da
Bump copyright year
twcclegg/log4net,freedomvoice/log4net,freedomvoice/log4net,twcclegg/log4net,twcclegg/log4net,twcclegg/log4net,freedomvoice/log4net,freedomvoice/log4net
src/AssemblyVersionInfo.cs
src/AssemblyVersionInfo.cs
#region Apache License // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to you under the Apache License, Version 2.0 // (...
#region Apache License // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to you under the Apache License, Version 2.0 // (...
apache-2.0
C#
ff77aa78bd8faf34193205e630ba27eb08aeee4d
Bump to version 1.5
toehead2001/pdn-barcode
Barcode/Properties/AssemblyInfo.cs
Barcode/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Barcode Effect")] [assembly: AssemblyDescription("Barcode Generator")] [assembly: AssemblyConfiguration("Barcode|Code 39|POSTNET|UPC")] [assembly: AssemblyCompany("Sepcot & toe_head2001")] [assembly: AssemblyProduct("Barcode Effe...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Barcode Effect")] [assembly: AssemblyDescription("Barcode Generator")] [assembly: AssemblyConfiguration("Barcode|Code 39|POSTNET|UPC")] [assembly: AssemblyCompany("Sepcot & toe_head2001")] [assembly: AssemblyProduct("Barcode Effe...
mit
C#
03b2b5f13e23c36b86ffda0ff2c9f57ca3a4724d
Enable Cross-Origin Requests
leonaascimento/Neblina
src/Neblina.Api/Startup.cs
src/Neblina.Api/Startup.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsof...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsof...
mit
C#
ce68566751b6c3b8aa63446c2ebbddd89a1a85a5
Change message in register success
leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,kirillkos/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net,kirillkos/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net
Joinrpg/Views/Account/RegisterSuccess.cshtml
Joinrpg/Views/Account/RegisterSuccess.cshtml
@model dynamic @{ ViewBag.Title = "Регистрация успешна"; } <h2>@ViewBag.Title</h2> <p>Остался всего один клик! Проверьте свою почту, там лежит письмо от нас с просьбой подтвердить email.</p>
@model dynamic @{ ViewBag.Title = "Регистрация успешна"; } <h2>@ViewBag.Title</h2> <p>Остался всего один клик! Проверьте свою почту, там лежит письмо от нас с просьбой подтвердить email...</p>
mit
C#
aba85a9cc8718d68ea3971e24b77df09ffd5719a
Indent with 4 spaces
msarchet/Bundler,msarchet/Bundler
BundlerMiddleware/IFileResolver.cs
BundlerMiddleware/IFileResolver.cs
namespace BundlerMiddleware { using Microsoft.Owin; /// <summary> /// Used for resolving file paths to full paths /// </summary> public interface IFileResolver { /// <summary> /// Gets the full file path for the route /// </summary> /// <param name="context">Req...
namespace BundlerMiddleware { using Microsoft.Owin; /// <summary> /// Used for resolving file paths to full paths /// </summary> public interface IFileResolver { /// <summary> /// Gets the full file path for the route /// </summary> /// <param name="context">Request Context</param> /// <param...
mit
C#
c3766763ca1f73ba8a5ae9b35104b235f2935e33
Update Program.cs
tvert/GitTest1
ConsoleApp1/ConsoleApp1/Program.cs
ConsoleApp1/ConsoleApp1/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { // Code amended in GitHub // Code amended #2 in GitHub } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { // Code amended in GitHub } } }
mit
C#
68d1935fc91c40fc2ce082e6a30f3e9801337935
Fix events
DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer
LmpClient/Systems/VesselFairingsSys/VesselFairingsSystem.cs
LmpClient/Systems/VesselFairingsSys/VesselFairingsSystem.cs
using LmpClient.Base; using LmpClient.Systems.TimeSync; using System; using System.Collections.Concurrent; namespace LmpClient.Systems.VesselFairingsSys { /// <summary> /// This class syncs the fairings between players /// </summary> public class VesselFairingsSystem : MessageSystem<VesselFairingsSyst...
using LmpClient.Base; using LmpClient.Systems.TimeSync; using System; using System.Collections.Concurrent; namespace LmpClient.Systems.VesselFairingsSys { /// <summary> /// This class syncs the fairings between players /// </summary> public class VesselFairingsSystem : MessageSystem<VesselFairingsSyst...
mit
C#
c6979c1d636f8c2f2d30a2a01bba940c611e767e
Add --port option to samples
praeclarum/Ooui,praeclarum/Ooui,praeclarum/Ooui
Samples/Program.cs
Samples/Program.cs
using System; using Ooui; namespace Samples { class Program { static void Main (string[] args) { for (var i = 0; i < args.Length; i++) { var a = args[i]; switch (args[i]) { case "-p" when i + 1 < args.Length: c...
using System; using Ooui; namespace Samples { class Program { static void Main (string[] args) { new ButtonSample ().Publish (); new TodoSample ().Publish (); Console.ReadLine (); } } }
mit
C#
b3e4170f3f006db2aa402667fcdb2762f517d860
Rename arguments to match base names
pieceofsummer/Hangfire.Console,pieceofsummer/Hangfire.Console
src/Hangfire.Console/Server/ConsoleServerFilter.cs
src/Hangfire.Console/Server/ConsoleServerFilter.cs
using Hangfire.Common; using Hangfire.Console.Serialization; using Hangfire.Console.Storage; using Hangfire.Server; using Hangfire.States; using System; namespace Hangfire.Console.Server { /// <summary> /// Server filter to initialize and cleanup console environment. /// </summary> internal class Cons...
using Hangfire.Common; using Hangfire.Console.Serialization; using Hangfire.Console.Storage; using Hangfire.Server; using Hangfire.States; using System; namespace Hangfire.Console.Server { /// <summary> /// Server filter to initialize and cleanup console environment. /// </summary> internal class Cons...
mit
C#
7d54e7f025d1602f205171f6c0876a2056b26ec7
Correct assembly title.
Bitmapped/UmbIntranetRestrict,Bitmapped/UmbIntranetRestrict,Bitmapped/UmbIntranetRestrict
src/UmbIntranetRestrict/Properties/AssemblyInfo.cs
src/UmbIntranetRestrict/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: AssemblyTit...
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: AssemblyTit...
mit
C#
581544e1d641b44263172509bf5a6cec490c9f46
Fix TD mod not being ranked
smoogipooo/osu,DrabWeb/osu,NeoAdonis/osu,UselessToucan/osu,naoey/osu,ppy/osu,peppy/osu,NeoAdonis/osu,2yangk23/osu,UselessToucan/osu,peppy/osu,ppy/osu,EVAST9919/osu,naoey/osu,ZLima12/osu,peppy/osu-new,DrabWeb/osu,naoey/osu,EVAST9919/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,johnneijzen/osu,UselessToucan/osu,smoo...
osu.Game.Rulesets.Osu/Mods/OsuModTouchDevice.cs
osu.Game.Rulesets.Osu/Mods/OsuModTouchDevice.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Mods; namespace osu.Game.Rulesets.Osu.Mods { public class OsuModTouchDevice : Mod { public override string Name => "Touch Device"...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Mods; namespace osu.Game.Rulesets.Osu.Mods { public class OsuModTouchDevice : Mod { public override string Name => "Touch Device"...
mit
C#
2f8f2fcee78ca0baf869c7f1592fce02e53ed46c
添加版本号。
RabbitTeam/RabbitHub
Components/Rabbit.Components.Data.Migrators/Properties/AssemblyInfo.cs
Components/Rabbit.Components.Data.Migrators/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; // 有关程序集的常规信息通过以下 // 特性集控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("Rabbit.Components.Data.Migrators")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Rabbit....
using System.Reflection; using System.Runtime.InteropServices; // 有关程序集的常规信息通过以下 // 特性集控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("Rabbit.Components.Data.Migrators")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Rabbit....
apache-2.0
C#
87ec80fbb87a5cafff3748ad879fad8b7fd76a67
make healthcheck conform to IMetric so it can be serialized/handled by Serializer (which seems to have changed into something very rigid)
criteo-forks/metrics-net,criteo-forks/metrics-net,gturri/metrics-net,gturri/metrics-net
src/metrics/HealthCheck.cs
src/metrics/HealthCheck.cs
using System; using System.Text; using metrics.Core; namespace metrics { /// <summary> /// A template class for an encapsulated service health check /// </summary> public class HealthCheck { public static Result Healthy { get { return Result.Healthy; } } public static Result Unheal...
using System; namespace metrics { /// <summary> /// A template class for an encapsulated service health check /// </summary> public class HealthCheck { public static Result Healthy { get { return Result.Healthy; } } public static Result Unhealthy(string message) { return Result.Unh...
mit
C#
fe1819aa8586f4552c278e4161af71e6c46cf9f2
Update grid
GNOME/banshee,lamalex/Banshee,lamalex/Banshee,Dynalon/banshee-osx,petejohanson/banshee,mono-soc-2011/banshee,dufoli/banshee,allquixotic/banshee-gst-sharp-work,ixfalia/banshee,Dynalon/banshee-osx,mono-soc-2011/banshee,dufoli/banshee,directhex/banshee-hacks,stsundermann/banshee,Carbenium/banshee,petejohanson/banshee,ixfa...
src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookGrid.cs
src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookGrid.cs
// // AudiobookGrid.cs // // Author: // Gabriel Burt <gburt@novell.com> // // Copyright (C) 2009 Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, incl...
// // AudiobookGrid.cs // // Author: // Gabriel Burt <gburt@novell.com> // // Copyright (C) 2009 Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, incl...
mit
C#
30dd5bd4ae08144da758b916f53e0f37779660a3
Disable NativeVarargsTest on Windows Nano Server. (#25284)
poizan42/coreclr,wtgodbe/coreclr,wtgodbe/coreclr,poizan42/coreclr,cshung/coreclr,krk/coreclr,poizan42/coreclr,krk/coreclr,cshung/coreclr,wtgodbe/coreclr,cshung/coreclr,poizan42/coreclr,cshung/coreclr,poizan42/coreclr,cshung/coreclr,krk/coreclr,krk/coreclr,krk/coreclr,krk/coreclr,cshung/coreclr,wtgodbe/coreclr,wtgodbe/c...
tests/src/Interop/IJW/NativeVarargs/NativeVarargsTest.cs
tests/src/Interop/IJW/NativeVarargs/NativeVarargsTest.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.Generic; using System.IO; using System.Linq; using ...
// 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.Generic; using System.IO; using System.Linq; using ...
mit
C#
ffb3e6e188dc4fde35787770a962244f46408519
Destroy obstacles disabled at scene start
NitorInc/NitoriWare,Barleytree/NitoriWare,NitorInc/NitoriWare,Barleytree/NitoriWare
Assets/Microgames/_Bosses/DarkRoom/Scripts/DarkRoomObstacleEnable.cs
Assets/Microgames/_Bosses/DarkRoom/Scripts/DarkRoomObstacleEnable.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Linq; public class DarkRoomObstacleEnable : MonoBehaviour { [SerializeField] private float maxXDistance = 11f; void Start () { for (int i = 0; i < transform.childCount; i++) { var ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class DarkRoomObstacleEnable : MonoBehaviour { [SerializeField] private float maxXDistance = 11f; void Start () { } void Update () { for (int i = 0; i < transform.childCount; i++) { ...
mit
C#
2622483066ccc78e1206421228b732877366f59b
Update A_Very_Big_Sum_CSharp.cs
leocabrallce/HackerRank,leocabrallce/HackerRank
Algorithms/A_Very_Big_Sum/A_Very_Big_Sum_CSharp.cs
Algorithms/A_Very_Big_Sum/A_Very_Big_Sum_CSharp.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; class Solution { static void Main(String[] args) { int n = Convert.ToInt32(Console.ReadLine()); string[] arr_temp = Console.ReadLine().Split(' '); long[] arr = Array.ConvertAll(arr_temp, Int64....
using System; using System.Collections.Generic; using System.IO; using System.Linq; class Solution { static void Main(String[] args) { int n = Convert.ToInt32(Console.ReadLine()); string[] arr_temp = Console.ReadLine().Split(' '); long[] arr = Array.ConvertAll(arr_temp, Int6...
mit
C#
8335c224bf08cf21af7eafaaa87f8807407d9f7e
Update Viktor.cs
FireBuddy/adevade
AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs
AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs
using System; using EloBuddy; using EloBuddy.SDK; namespace AdEvade.Data.Spells.SpecialSpells { class Viktor : IChampionPlugin { static Viktor() { } public const string ChampionName = "Viktor"; public string GetChampionName() { return ChampionName; ...
using System; using EloBuddy; using EloBuddy.SDK; namespace AdEvade.Data.Spells.SpecialSpells { class Viktor : IChampionPlugin { static Viktor() { } public const string ChampionName = "Viktor"; public string GetChampionName() { return ChampionName; ...
mit
C#
4f3ff50656f632903d51462cbc8841e673d6f1c1
Increment version
markembling/MarkEmbling.PostcodesIO
MarkEmbling.PostcodesIO/Properties/AssemblyInfo.cs
MarkEmbling.PostcodesIO/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("Mar...
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("Mar...
mit
C#
f3690bb2fde6b00bef2a5fdf2e785f6b58f178cd
Disable listenForImageChanged in HoverImageWidget
jlewin/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,unlimitedbacon/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,larsbrubaker/MatterControl
MatterControlLib/CustomWidgets/HoverImageWidget.cs
MatterControlLib/CustomWidgets/HoverImageWidget.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#
0588ca7317011a47d8d5670163e0530f921e69ac
Improve git-flow targets
nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke
build/Build.GitFlow.cs
build/Build.GitFlow.cs
// Copyright Matthias Koch, Sebastian Karasek 2018. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System.IO; using System.Linq; using Nuke.Common; using Nuke.Common.Utilities; using static Nuke.Common.ChangeLog.ChangelogTasks; using static Nuke.Common.ControlFlo...
// Copyright Matthias Koch, Sebastian Karasek 2018. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System.IO; using System.Linq; using Nuke.Common; using Nuke.Common.Utilities; using static Nuke.Common.ChangeLog.ChangelogTasks; using static Nuke.Common.ControlFlo...
mit
C#
20745fbc6780c53bcf03a846bd563fc9f17e14e1
Fix controller in main menu
Nigh7Sh4de/shatterfall,Nigh7Sh4de/shatterfall
shatterfall/Assets/Scripts/selector.cs
shatterfall/Assets/Scripts/selector.cs
using UnityEngine; using System.Collections; using System.Collections.Generic; public class selector : MonoBehaviour { public static int option; public List<GameObject> uiChoices; private float ready = 0; private float READY_DELAY = 0.2f; public bool selectable; public GameObject howToPlay; public AudioC...
using UnityEngine; using System.Collections; using System.Collections.Generic; public class selector : MonoBehaviour { public static int option; public List<GameObject> uiChoices; public bool ready; public bool selectable; public GameObject howToPlay; public AudioClip selectSound; private AudioSource source...
mit
C#
e4859a2517b29cee1d524ae14f16a08aeaa15412
add personId for admin patient info
SnapMD/connectedcare-sdk,dhawalharsora/connectedcare-sdk
SnapMD.VirtualCare.ApiModels/PatientAccountInfo.cs
SnapMD.VirtualCare.ApiModels/PatientAccountInfo.cs
#region Copyright // Copyright 2016 SnapMD, Inc. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless required by ap...
#region Copyright // Copyright 2016 SnapMD, Inc. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless required by ap...
apache-2.0
C#
22ac1cc3e8361ecabb3223f418eb58192e989aae
Fix WebInput.ToString() exception when args is null
LibertyLocked/RestRPC,LibertyLocked/RestRPC,LibertyLocked/RestRPC,LibertyLocked/RestRPC
WebScriptHook.Framework/Messages/Inputs/WebInput.cs
WebScriptHook.Framework/Messages/Inputs/WebInput.cs
using Newtonsoft.Json; using System.Text; namespace WebScriptHook.Framework.Messages.Inputs { /// <summary> /// This is the format of messages client is receiving from the remote server /// </summary> class WebInput { /// <summary> /// Gets the header of the request. /// H...
using Newtonsoft.Json; using System.Text; namespace WebScriptHook.Framework.Messages.Inputs { /// <summary> /// This is the format of messages client is receiving from the remote server /// </summary> class WebInput { /// <summary> /// Gets the header of the request. /// H...
mit
C#
83b7a9035b40da9ab5117f4c08d55721d825cf54
Update CommonAssemblyInfo.cs
RazorGenerator/RazorGenerator,RazorGenerator/RazorGenerator
CommonAssemblyInfo.cs
CommonAssemblyInfo.cs
using System; using System.Reflection; [assembly: AssemblyVersion("2.0.0")] [assembly: AssemblyProduct("RazorGenerator")] [assembly: AssemblyCompany("RazorGenerator contributors")] [assembly: AssemblyInformationalVersion("2.4.8")]
using System; using System.Reflection; [assembly: AssemblyVersion("2.0.0")] [assembly: AssemblyProduct("RazorGenerator")] [assembly: AssemblyCompany("RazorGenerator contributors")] [assembly: AssemblyInformationalVersion("2.4.7")]
apache-2.0
C#
411740ae83854834db9eca3d98dcf32d765de896
Allow verb name to be optional.
nemec/clipr
clipr/VerbAttribute.cs
clipr/VerbAttribute.cs
using System; namespace clipr { /// <summary> /// Mark the property as a subcommand. (cf. 'svn checkout') /// </summary> [AttributeUsage(AttributeTargets.Property, AllowMultiple = true)] public class VerbAttribute : Attribute { /// <summary> /// Name of the subcommand. If provi...
using System; namespace clipr { /// <summary> /// Mark the property as a subcommand. (cf. 'svn checkout') /// </summary> [AttributeUsage(AttributeTargets.Property, AllowMultiple = true)] public class VerbAttribute : Attribute { /// <summary> /// Name of the subcommand. If provi...
mit
C#
41ae0f16038ddec0158d01b3b0663e4a4d98e162
add thread
yasokada/unity-150923-udpRs232c,yasokada/unity-150831-udpMonitor
Assets/udpMonitorScript.cs
Assets/udpMonitorScript.cs
using UnityEngine; using System.Collections; using UnityEngine.UI; using System.Threading; public class udpMonitorScript : MonoBehaviour { Thread monThr; // monitor Thread public Toggle ToggleComm; void Start () { monThr = new Thread (new ThreadStart (FuncMonData)); monThr.Start (); } void Update () { ...
using UnityEngine; using System.Collections; using UnityEngine.UI; public class udpMonitorScript : MonoBehaviour { public Toggle ToggleComm; private bool preToggle = false; void Start () { } void Update () { if (preToggle != ToggleComm.isOn && ToggleComm.isOn) { preToggle = ToggleComm.isOn; } } }...
mit
C#
8cc654362026ceba2858cbe5977043269652696b
include a timer for queries
ninianne98/CarrotCakeCMS,ninianne98/CarrotCakeCMS,ninianne98/CarrotCakeCMS
CarrotCMSData/CarrotCMS.cs
CarrotCMSData/CarrotCMS.cs
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Diagnostics; using System.Linq; using System.Net; /* * CarrotCake CMS * http://www.carrotware.com/ * * Copyright 2011, Samantha Copeland * Dual licensed under the MIT or GPL Version 2 licenses. * * ...
using System; using System.Configuration; using System.Data; /* * CarrotCake CMS * http://www.carrotware.com/ * * Copyright 2011, Samantha Copeland * Dual licensed under the MIT or GPL Version 2 licenses. * * Date: October 2011 */ namespace Carrotware.CMS.Data { public partial class CarrotCMSDataConte...
mit
C#
3adb6b3113ba452909cfe0c23c7dbe14757b1c69
исправить падение 'Serialization' assertion
vknet/vk,vknet/vk
VkNet.Tests/Utils/JsonConverter/DateTimeToStringFormatConverterTests.cs
VkNet.Tests/Utils/JsonConverter/DateTimeToStringFormatConverterTests.cs
using System; using System.Globalization; using Newtonsoft.Json; using NUnit.Framework; using VkNet.Model.RequestParams; using VkNet.Utils; using VkNet.Utils.JsonConverter; namespace VkNet.Tests.Utils.JsonConverter { public class DateTimeToStringFormatConverterTests : BaseTest { [Test] public void Deserialize() ...
using System; using System.Globalization; using Newtonsoft.Json; using NUnit.Framework; using VkNet.Model.RequestParams; using VkNet.Utils; using VkNet.Utils.JsonConverter; namespace VkNet.Tests.Utils.JsonConverter { public class DateTimeToStringFormatConverterTests : BaseTest { [Test] public void Deserialize() ...
mit
C#
27f0ee8da311467aecd1f306c21bb363deca68ab
Update Program.cs
wieslawsoltes/AvaloniaBehaviors,wieslawsoltes/AvaloniaBehaviors
samples/DraggableDemo/Program.cs
samples/DraggableDemo/Program.cs
using System; using Avalonia; using Avalonia.Xaml.Interactions.Core; using Avalonia.Xaml.Interactivity; namespace DraggableDemo; class Program { public static void Main(string[] args) => BuildAvaloniaApp() .StartWithClassicDesktopLifetime(args); public static AppBuilder BuildAvaloniaApp() { ...
using System; using Avalonia; using Avalonia.Xaml.Interactions.Core; using Avalonia.Xaml.Interactivity; namespace DraggableDemo; class Program { public static void Main(string[] args) => BuildAvaloniaApp() .StartWithClassicDesktopLifetime(args); public static AppBuilder BuildAvaloniaApp() { ...
mit
C#
45f61e5ba10881fadbb9b8ac3a1132451c832f9a
Fix indents.
Erikvl87/KNKVPlugin
KNKVPlugin/Converters/Converter.cs
KNKVPlugin/Converters/Converter.cs
using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace KNKVPlugin.Converters { public class Converter { protected static JArray ParseArray(string json) { try { var jResponse = JArray.Parse(json); return jResponse; } catch (JsonReaderException e) { // No valid JSON ...
using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace KNKVPlugin.Converters { public class Converter { protected static JArray ParseArray(string json) { try { var jResponse = JArray.Parse(json); return jResponse; } catch (JsonReaderException e) { // No valid JSON ...
mit
C#
7c72b2691e2acea6cd3860466dfc43243a91ec2e
Fix dat Mono build.
rob-somerville/riak-dotnet-client,rob-somerville/riak-dotnet-client,basho/riak-dotnet-client,basho/riak-dotnet-client
src/RiakClientTests/Client/DataTypeTests.cs
src/RiakClientTests/Client/DataTypeTests.cs
// <copyright file="DataTypeTests.cs" company="Basho Technologies, Inc."> // Copyright (c) 2011 - OJ Reeves & Jeremiah Peschka // Copyright (c) 2014 - Basho Technologies, Inc. // // This file is provided to you under the Apache License, // Version 2.0 (the "License"); you may not use this file // except in compliance w...
// <copyright file="DataTypeTests.cs" company="Basho Technologies, Inc."> // Copyright (c) 2011 - OJ Reeves & Jeremiah Peschka // Copyright (c) 2014 - Basho Technologies, Inc. // // This file is provided to you under the Apache License, // Version 2.0 (the "License"); you may not use this file // except in compliance w...
apache-2.0
C#
69a4015c1a9fb5bd2d8889247acc679c691d5182
Use named HttpClient from HttpClientFactory for default CreateHttpClient() method, to prevent any ambiguous from other HttpClient instances.
vinhch/BizwebSharp
src/BizwebSharp/Helper/HttpUtils.cs
src/BizwebSharp/Helper/HttpUtils.cs
using System.Net.Http; #if (NETSTANDARD2_0) using Microsoft.Extensions.DependencyInjection; #endif namespace BizwebSharp.Helper { internal static class HttpUtils { #if (NETSTANDARD2_0) private const string BIZWEB_NAMED_HTTPCLIENT_TYPE = "bizweb"; private const string NO_REDIRECT_HTTPCLIENT_TYP...
using System.Net.Http; #if (NETSTANDARD2_0) using Microsoft.Extensions.DependencyInjection; #endif namespace BizwebSharp.Helper { internal static class HttpUtils { #if (NETSTANDARD2_0) private static readonly ServiceCollection _currentServiceCollection = new ServiceCollection(); private static...
mit
C#
58f1b42edef3ad93ef6c3c81a2ad604f7cfc7479
Improve test logging
pardeike/Harmony
HarmonyTests/TestTools.cs
HarmonyTests/TestTools.cs
using HarmonyLib; using NUnit.Framework; using System.Linq; namespace HarmonyLibTests { public static class TestTools { public static void Log(string str) { TestContext.WriteLine($" {str}"); } } public class TestLogger { [SetUp] public void BaseSetUp() { var args = TestContext.CurrentContext...
using HarmonyLib; using NUnit.Framework; using System.Linq; namespace HarmonyLibTests { public static class TestTools { public static void Log(string str) { TestContext.Progress.WriteLine($" {str}"); } } public class TestLogger { [SetUp] public void BaseSetUp() { var args = TestContext.Curre...
mit
C#
b4bbf15aa00c6e6a74d1456e3d9af3a20a2f46c5
call blocking queue after task init
tsqllint/tsqllint,tsqllint/tsqllint
source/TSQLLint/Program.cs
source/TSQLLint/Program.cs
using System; using System.Diagnostics.CodeAnalysis; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using TSQLLint.Infrastructure.Reporters; namespace TSQLLint { public class Program { [ExcludeFromCodeCoverage] public static void Main(string[] args) ...
using System; using System.Diagnostics.CodeAnalysis; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using TSQLLint.Infrastructure.Reporters; namespace TSQLLint { public class Program { [ExcludeFromCodeCoverage] public static void Main(string[] args) ...
mit
C#
ee6c98466d9974311d529cc4940ddac077fd7667
Update ObservableResource.cs
Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D
src/Core2D/ObservableResource.cs
src/Core2D/ObservableResource.cs
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Immutable; using Core2D.Attributes; namespace Core2D { /// <summary> /// Observable resources base class. /// </summary> ...
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Immutable; using Core2D.Attributes; namespace Core2D { /// <summary> /// Observable resources base class. /// </summary> ...
mit
C#
2d8956762a5cba8e688d24a5e3ac837eb416d30f
build 1.0.10.0
agileharbor/shopVisibleAccess
src/Global/GlobalAssemblyInfo.cs
src/Global/GlobalAssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.InteropServices; [ assembly : ComVisible( false ) ] [ assembly : AssemblyProduct( "ShopVisibleAccess" ) ] [ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ] [ assembly : AssemblyCopyright( "Copyright (C) 2014 Agile Harbor, LLC" ) ] [ assembly : Ass...
using System; using System.Reflection; using System.Runtime.InteropServices; [ assembly : ComVisible( false ) ] [ assembly : AssemblyProduct( "ShopVisibleAccess" ) ] [ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ] [ assembly : AssemblyCopyright( "Copyright (C) 2014 Agile Harbor, LLC" ) ] [ assembly : Ass...
bsd-3-clause
C#
74600a155ac034f271ffedf5b1395906f96c9f29
Remove explicit build addin dependency version
SotoiGhost/FacebookComponents,SotoiGhost/FacebookComponents
common.cake
common.cake
#tool nuget:?package=XamarinComponent&version=1.1.0.32 #addin nuget:?package=Cake.Xamarin.Build #addin nuget:?package=Cake.Xamarin #addin nuget:?package=Cake.XCode
#tool nuget:?package=XamarinComponent&version=1.1.0.32 #addin nuget:?package=Cake.Xamarin.Build&version=1.0.14.0 #addin nuget:?package=Cake.Xamarin #addin nuget:?package=Cake.XCode
mit
C#
d47486db7a12941463bf4356beebfa8a60d7be57
Add implicit conversion from JsonFilter<T> to T
tejacques/Polarize,tejacques/Polarize
src/Polarize/JsonFilter.cs
src/Polarize/JsonFilter.cs
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Polarize { [JsonConverter(typeof(JsonFilterSerializer))] public class JsonFilter { public object Value; public readonly string[] Fields; public readonly HashSet<st...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Polarize { [JsonConverter(typeof(JsonFilterSerializer))] public class JsonFilter { public object Value; public readonly string[] Fields; public readonly HashSet<st...
mit
C#
ef86d6f93660f383ea7649d73f1fc9d40fb46a9b
Test commit
reflectsoftware/Plato.NET
src/Plato.TestHarness/Program.cs
src/Plato.TestHarness/Program.cs
namespace Plato.TestHarness { class Program { static void Main(string[] args) { Cache.CachePlaygorund.RunAsync().Wait(); //RedisTest.RedisPlayground.RunAsync().Wait(); // Mapper.MapperPlayground.RunAsync().Wait(); // RMQ.RMQPlayground.RunAsync()...
namespace Plato.TestHarness { class Program { static void Main(string[] args) { Cache.CachePlaygorund.RunAsync().Wait(); //RedisTest.RedisPlayground.RunAsync().Wait(); // Mapper.MapperPlayground.RunAsync().Wait(); // RMQ.RMQPlayground.RunAsync()....
apache-2.0
C#
e58fb3f52823a4feb1ead00097000e4e689cac48
Make default taiko HP 1 for test scene
EVAST9919/osu,UselessToucan/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu-new,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,peppy/osu,EVAST9919/osu,2yangk23/osu,NeoAdonis/osu,smoogipoo/osu,2yangk23/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu
osu.Game.Rulesets.Taiko.Tests/TestSceneTaikoModPerfect.cs
osu.Game.Rulesets.Taiko.Tests/TestSceneTaikoModPerfect.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.Game.Rulesets.Scoring; using osu.Game.Rulesets.Taiko.Mods; using osu.Game.Rulesets.Taiko.Objects; using osu.Game.Rulesets.Taiko.Scoring; ...
// 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.Game.Rulesets.Taiko.Mods; using osu.Game.Rulesets.Taiko.Objects; using osu.Game.Tests.Visual; namespace osu.Game.Rulesets.Taiko.Tests { ...
mit
C#
f4cfc44905fbccf124631b10884bdacdb219b67e
Bump version to 1.0.4
rexcfnghk/Ninject.Web.Mvc5.FluentValidation
Ninject.Web.Mvc5.FluentValidation/Properties/AssemblyInfo.cs
Ninject.Web.Mvc5.FluentValidation/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("Ni...
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("Ni...
mit
C#
b305a160c9796c0591d8896dbdc036e6b55cc443
Add unit tests for enum sync type read and write.
henrikfroehling/TraktApiSharp
Source/Tests/TraktApiSharp.Tests/Enums/TraktSyncTypeTests.cs
Source/Tests/TraktApiSharp.Tests/Enums/TraktSyncTypeTests.cs
namespace TraktApiSharp.Tests.Enums { using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using Newtonsoft.Json; using TraktApiSharp.Enums; [TestClass] public class TraktSyncTypeTests { class TestObject { [JsonConverter(typeof(TraktSyncTy...
namespace TraktApiSharp.Tests.Enums { using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using TraktApiSharp.Enums; [TestClass] public class TraktSyncTypeTests { [TestMethod] public void TestTraktSyncTypeHasMembers() { typeof(TraktSy...
mit
C#
7aa8a86682c56bdde474839339a0c39fd62297e2
fix for non-empty complex type being recognised as empty
avao/Codge
Src/Codge.Generator/Presentations/Xsd/XmlSchemaExtensions.cs
Src/Codge.Generator/Presentations/Xsd/XmlSchemaExtensions.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Schema; namespace Codge.Generator.Presentations.Xsd { public static class XmlSchemaExtensions { public static bool IsEmptyType(this XmlSchemaComplexType type) { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Schema; namespace Codge.Generator.Presentations.Xsd { public static class XmlSchemaExtensions { public static bool IsEmptyType(this XmlSchemaComplexType type) { ...
apache-2.0
C#
0cdf6f5ce2a2b9120a1b731d36973179752c4567
Update microbenchmarks to use server GC (#635)
grpc/grpc-dotnet,grpc/grpc-dotnet,grpc/grpc-dotnet,grpc/grpc-dotnet
perf/Grpc.AspNetCore.Microbenchmarks/DefaultCoreConfig.cs
perf/Grpc.AspNetCore.Microbenchmarks/DefaultCoreConfig.cs
#region Copyright notice and license // Copyright 2019 The gRPC Authors // // 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 Copyright notice and license // Copyright 2019 The gRPC Authors // // 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#
653356a5cdbf16c639b4d00ded9e5098cf06f672
Clean up TestHarness to be more instructive
geffzhang/kafka-net,gigya/KafkaNetClient,bridgewell/kafka-net,CenturyLinkCloud/kafka-net,EranOfer/KafkaNetClient,martijnhoekstra/kafka-net,nightkid1027/kafka-net,Jroland/kafka-net,PKRoma/kafka-net,BDeus/KafkaNetClient
src/TestHarness/Program.cs
src/TestHarness/Program.cs
using System; using System.Threading.Tasks; using KafkaNet; using KafkaNet.Common; using KafkaNet.Model; using KafkaNet.Protocol; using System.Collections.Generic; namespace TestHarness { class Program { static void Main(string[] args) { //create an options file that sets up driver...
using System; using System.Threading.Tasks; using KafkaNet; using KafkaNet.Model; using KafkaNet.Protocol; using System.Collections.Generic; namespace TestHarness { class Program { static void Main(string[] args) { var options = new KafkaOptions(new Uri("http://CSDKAFKA01:9092"), n...
apache-2.0
C#
cf0af5c017cbaf7e633476801650224a9b850a73
Make appsettings optional again
amweiss/WeatherLink
src/WeatherLink/Startup.cs
src/WeatherLink/Startup.cs
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.PlatformAbstractions; using Swashbuckle.Swagger.Model; using System.IO; using WeatherLink.Model...
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.PlatformAbstractions; using Swashbuckle.Swagger.Model; using System.IO; using WeatherLink.Model...
mit
C#
740c8a4202ffa6f42a8a3609381dc27a1c395825
Change assembly version for integration tests too
ali-ince/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver
Neo4j.Driver/Neo4j.Driver.IntegrationTests/Properties/AssemblyInfo.cs
Neo4j.Driver/Neo4j.Driver.IntegrationTests/Properties/AssemblyInfo.cs
// Copyright (c) 2002-2017 "Neo Technology," // Network Engine for Objects in Lund AB [http://neotechnology.com] // // This file is part of Neo4j. // // 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 ...
// Copyright (c) 2002-2017 "Neo Technology," // Network Engine for Objects in Lund AB [http://neotechnology.com] // // This file is part of Neo4j. // // 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 ...
apache-2.0
C#
82817760db61adbe6f0580aee8f548df9cb19f7e
Fix HTTP call to execute in LateUpdate
wbap/hackathon-2017-sample,wbap/hackathon-2017-sample,pekin0609/-,pekin0609/-,pekin0609/-,pekin0609/-,wbap/hackathon-2017-sample,wbap/hackathon-2017-sample
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#
6d779f17b31746fc6a9f2c9f3c401b69ab936dfd
Fix video player tooltip going outside Form bounds
chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck
video/Controls/LabelTooltip.cs
video/Controls/LabelTooltip.cs
using System; using System.Drawing; using System.Windows.Forms; namespace TweetDuck.Video.Controls{ sealed class LabelTooltip : Label{ public LabelTooltip(){ Visible = false; } public void AttachTooltip(Control control, bool followCursor, string tooltip){ AttachToo...
using System; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; namespace TweetDuck.Video.Controls{ sealed class LabelTooltip : Label{ public LabelTooltip(){ Visible = false; } public void AttachTooltip(Control control, bool followCursor, string toolt...
mit
C#
12241902ef17c1641cea255f39e7f534a5723c4a
Update option text.
earalov/Skylines-ElevatedTrainStationTrack
Options.cs
Options.cs
 using MetroOverhaul.Detours; using MetroOverhaul.OptionsFramework.Attibutes; namespace MetroOverhaul { [Options("MetroOverhaul")] public class Options { private const string UNSUBPREP = "Unsubscribe Prep"; private const string GENERAL = "General settings"; public Options() ...
 using MetroOverhaul.Detours; using MetroOverhaul.OptionsFramework.Attibutes; namespace MetroOverhaul { [Options("MetroOverhaul")] public class Options { private const string UNSUBPREP = "Unsubscribe Prep"; private const string GENERAL = "General settings"; public Options() ...
mit
C#
500e3227e110fcc5b971490cb8d6e7cf1af869f9
Fix BirdTarget manipulating the average flock direction
christiancrt/POVbird,christiancrt/POVbird
Flock/Assets/BirdTarget.cs
Flock/Assets/BirdTarget.cs
using UnityEngine; using System.Collections; public class BirdTarget : MonoBehaviour { [SerializeField] private int _flockSize = 5; [SerializeField] private GameObject _birdPrefab; [SerializeField] private Vector3[] _path; [SerializeField] private float _sqrPositionEps = 0.001f; // Squared threshold for checking ...
using UnityEngine; using System.Collections; public class BirdTarget : MonoBehaviour { [SerializeField] private int _flockSize = 5; [SerializeField] private GameObject _birdPrefab; [SerializeField] private Vector3[] _path; [SerializeField] private float _sqrPositionEps = 0.001f; // Squared threshold for checking ...
cc0-1.0
C#
0f4bd53e891a42c058e95004e2da592f11a14ff2
Update text diagnostic
gerryaobrien/code-cracker,carloscds/code-cracker,carloscds/code-cracker,adraut/code-cracker,code-cracker/code-cracker,andrecarlucci/code-cracker,code-cracker/code-cracker,akamud/code-cracker,thomaslevesque/code-cracker,modulexcite/code-cracker,GuilhermeSa/code-cracker,eirielson/code-cracker,ElemarJR/code-cracker,dlsteu...
src/CodeCracker/Refactoring/ParameterRefactoryAnalyzer.cs
src/CodeCracker/Refactoring/ParameterRefactoryAnalyzer.cs
using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; using System.Collections.Immutable; using System.Linq; using System; namespace CodeCracker { [DiagnosticAnalyzer(LanguageNames.CSharp)] public class Paramete...
using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; using System.Collections.Immutable; using System.Linq; using System; namespace CodeCracker { [DiagnosticAnalyzer(LanguageNames.CSharp)] public class Paramete...
apache-2.0
C#
502856c6cd872dc63f95ac9e54df4ff419d9ebec
Declare Sequential layout on FileStatus to remove the uninitialized field warnings
bitcrazed/corefx,thiagodin/corefx,kkurni/corefx,YoupHulsebos/corefx,shmao/corefx,iamjasonp/corefx,chaitrakeshav/corefx,brett25/corefx,larsbj1988/corefx,adamralph/corefx,gkhanna79/corefx,elijah6/corefx,Frank125/corefx,wtgodbe/corefx,uhaciogullari/corefx,cartermp/corefx,marksmeltzer/corefx,adamralph/corefx,tstringer/core...
src/Common/src/Interop/Unix/System.Native/Interop.Stat.cs
src/Common/src/Interop/Unix/System.Native/Interop.Stat.cs
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class Sys { // Even though csc will...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class Sys { internal struct FileSta...
mit
C#
ff601eefe6afaf6683af631f71361e05d644278a
Fix failing test
ppy/osu,2yangk23/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,EVAST9919/osu,2yangk23/osu,UselessToucan/osu,smoogipooo/osu,NeoAdonis/osu,smoogipoo/osu,johnneijzen/osu,UselessToucan/osu,smoogipoo/osu,ZLima12/osu,ppy/osu,ZLima12/osu,peppy/osu-new,peppy/osu,NeoAdonis/osu,EVAST9919/osu,peppy/osu,NeoAdonis/osu,johnneijzen/o...
osu.Game.Tests/Visual/Gameplay/TestSceneHoldForMenuButton.cs
osu.Game.Tests/Visual/Gameplay/TestSceneHoldForMenuButton.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 NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Sprites; using osu.Game.Screens.Play...
// 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 NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Sprites; using osu.Game.Screens.Play...
mit
C#
4a6e312a7d968c52aa795cbc46e2c4563d84cf61
make version lower case
ParticularLabs/APIComparer,modernist/APIComparer,ParticularLabs/APIComparer,modernist/APIComparer
APIComparer.Contracts/CompareNugetPackage.cs
APIComparer.Contracts/CompareNugetPackage.cs
// ReSharper disable MemberCanBePrivate.Global namespace APIComparer.Contracts { using NServiceBus; public class CompareNugetPackage : ICommand { public CompareNugetPackage(string packageId, string leftVersion, string rightVersion) { PackageId = packageId; RightVers...
// ReSharper disable MemberCanBePrivate.Global namespace APIComparer.Contracts { using NServiceBus; public class CompareNugetPackage : ICommand { public CompareNugetPackage(string packageId, string leftVersion, string rightVersion) { PackageId = packageId; RightVers...
mit
C#
5d170cba74689af59e28dacf91b01f065a51181a
Fix tax rule to be double not int
kroniak/extensions-ecwid,kroniak/extensions-ecwid
src/Ecwid/Models/Profile/Rule.cs
src/Ecwid/Models/Profile/Rule.cs
// Licensed under the GPL License, Version 3.0. See LICENSE in the git repository root for license information. using Newtonsoft.Json; namespace Ecwid.Models { /// <summary> /// </summary> public class TaxRule { /// <summary> /// Gets or sets the tax in %. /// </summary> ...
// Licensed under the GPL License, Version 3.0. See LICENSE in the git repository root for license information. using Newtonsoft.Json; namespace Ecwid.Models { /// <summary> /// </summary> public class TaxRule { /// <summary> /// Gets or sets the tax in %. /// </summary> ...
mit
C#
8897a7cfd2fea4b0a4d96706098b179b56593916
Update MyDataRepository.cs
kelong/Data-Repository-with-Data-Caching-in-ASP.NET-MVC-4,CarmelSoftware/Data-Repository-with-Data-Caching-in-ASP.NET-MVC-4
Models/MyDataRepository.cs
Models/MyDataRepository.cs
// TODO: file name should be "MyDataRepository.cs" using System; using System.Collections.Generic; using System.Linq; using System.Web; using RepositoryWithCaching.Models; namespace RepositoryWithCaching.Models { public class MyDataRepository { #region Context private MyDataEntities _Ctx; ...
// TODO: fix this class : class name : "RepositoryCaching" using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Runtime.Caching; namespace RepositoryWithCaching.Models { public class RepositoryCaching { public ObjectCache Cache { get { r...
mit
C#
9e2763d952437f34f8f6d3dcdb94f7b8f2c8e290
Fix ToString() in WorkingFolder
michael-reichenauer/GitMind
GitMind/ApplicationHandling/WorkingFolder.cs
GitMind/ApplicationHandling/WorkingFolder.cs
using System; using GitMind.Utils; namespace GitMind.ApplicationHandling { [SingleInstance] internal class WorkingFolder { private readonly IWorkingFolderService workingFolderService; public WorkingFolder(IWorkingFolderService workingFolderService) { this.workingFolderService = workingFolderService; ...
using System; using GitMind.Utils; namespace GitMind.ApplicationHandling { [SingleInstance] internal class WorkingFolder { private readonly IWorkingFolderService workingFolderService; public WorkingFolder(IWorkingFolderService workingFolderService) { this.workingFolderService = workingFolderService; ...
mit
C#
2b269062e2749d4fa2ca1a7909e1ef452aaef26b
add diagnostic information to tests when launching redis-server.exe fails
collinsauve/redlock-cs
tests/TestHelper.cs
tests/TestHelper.cs
using System; using System.Diagnostics; using System.IO; using System.Reflection; namespace Redlock.CSharp.Tests { public static class TestHelper { public static Process StartRedisServer(long port) { var assemblyDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly()...
using System.Diagnostics; namespace Redlock.CSharp.Tests { public static class TestHelper { public static Process StartRedisServer(long port) { var assemblyDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location); var fi...
apache-2.0
C#
e09541be0b25553f7a308485c44e75d3d42c82ae
Bump version to 0.6.1
FatturaElettronicaPA/FatturaElettronicaPA
Properties/AssemblyInfo.cs
Properties/AssemblyInfo.cs
using System.Reflection; 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. [assembly: AssemblyTitle("FatturaElettronica.NET")] [assembly: AssemblyDescriptio...
using System.Reflection; 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. [assembly: AssemblyTitle("FatturaElettronica.NET")] [assembly: AssemblyDescriptio...
bsd-3-clause
C#
8468eadb64ffab144a6e283d20d5f4d9e3c9d723
Bump version
Yuisbean/WebMConverter,nixxquality/WebMConverter,o11c/WebMConverter
Properties/AssemblyInfo.cs
Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("We...
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("We...
mit
C#
74f478187b94528d0a905b76583374b664fa1715
Add PostgresException on postgresExceptionNames fixing select for NoWait locking exceptions
evicertia/Rebus.AdoNet
Rebus.AdoNet/Dialects/PostgreSql82Dialect.cs
Rebus.AdoNet/Dialects/PostgreSql82Dialect.cs
using System; using System.Linq; using System.Collections.Generic; using System.Data; using System.Data.Common; namespace Rebus.AdoNet.Dialects { public class PostgreSql82Dialect : PostgreSqlDialect { private static readonly IEnumerable<string> _postgresExceptionNames = new[] { "NpgsqlException", "PostgresExceptio...
using System; using System.Data; using System.Data.Common; namespace Rebus.AdoNet.Dialects { public class PostgreSql82Dialect : PostgreSqlDialect { protected override Version MinimumDatabaseVersion => new Version("8.2"); public override ushort Priority => 82; public override bool SupportsReturningClause => t...
mit
C#
a394162d36b01541e186f8af3d6c9e98d1aa5ae6
Append strings with support for escape sequences.
PenguinF/sandra-three
Sandra.UI.WF/Storage/CompactSettingWriter.cs
Sandra.UI.WF/Storage/CompactSettingWriter.cs
#region License /********************************************************************************* * CompactSettingWriter.cs * * Copyright (c) 2004-2018 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ...
#region License /********************************************************************************* * CompactSettingWriter.cs * * Copyright (c) 2004-2018 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ...
apache-2.0
C#
2b13ce4e0676b4c4eb576efeeea31b530117c258
Add preprocessor to prevent compilation error
bhaptics/tactosy-unity
samples/Unity-Plugin/Assets/Tactosy/Scripts/TactosyEditor.cs
samples/Unity-Plugin/Assets/Tactosy/Scripts/TactosyEditor.cs
#if UNITY_EDITOR using UnityEditor; #endif using UnityEngine; namespace Tactosy.Unity { #if UNITY_EDITOR [CustomEditor(typeof(Manager_Tactosy))] public class TactosyEditor : Editor { public override void OnInspectorGUI() { DrawDefaultInspector(); Manager_Tactosy t...
using UnityEditor; using UnityEngine; namespace Tactosy.Unity { [CustomEditor(typeof(Manager_Tactosy))] public class TactosyEditor : Editor { public override void OnInspectorGUI() { DrawDefaultInspector(); Manager_Tactosy tactosyManager = (Manager_Tactosy) target...
mit
C#
4b7d0d51634c4469cee6d03466ffd9c53fa0bc8b
Update ordering of types
nikhilk/scriptsharp,x335/scriptsharp,x335/scriptsharp,nikhilk/scriptsharp,nikhilk/scriptsharp,x335/scriptsharp
src/Core/Compiler/ScriptModel/Symbols/SymbolType.cs
src/Core/Compiler/ScriptModel/Symbols/SymbolType.cs
// SymbolType.cs // Script#/Core/Compiler // This source code is subject to terms and conditions of the Apache License, Version 2.0. // using System; namespace ScriptSharp.ScriptModel { internal enum SymbolType { Namespace = 0, Delegate = 1, Enumeration = 2, Resources = 3, ...
// SymbolType.cs // Script#/Core/Compiler // This source code is subject to terms and conditions of the Apache License, Version 2.0. // using System; namespace ScriptSharp.ScriptModel { internal enum SymbolType { Namespace = 0, Class = 1, Interface = 2, Enumeration = 3, ...
apache-2.0
C#
107f1b580380c8c5906fd61a3bdd86bc30c6ebc0
Add 'tweet' embed type
RogueException/Discord.Net,AntiTcb/Discord.Net,Confruggy/Discord.Net
src/Discord.Net.Core/Entities/Messages/EmbedType.cs
src/Discord.Net.Core/Entities/Messages/EmbedType.cs
namespace Discord { public enum EmbedType { Rich, Link, Video, Image, Gifv, Article, Tweet } }
namespace Discord { public enum EmbedType { Rich, Link, Video, Image, Gifv, Article } }
mit
C#
24ba07cfbfe9f40992e7ad5df2d855375580e916
Update MVC module order (#1830)
petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,xkproject/Orchard2,xkproject/Orchard2,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,petedavis/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,OrchardCMS/Brocha...
src/OrchardCore.Modules/OrchardCore.Mvc/Manifest.cs
src/OrchardCore.Modules/OrchardCore.Mvc/Manifest.cs
using OrchardCore.Modules.Manifest; [assembly: Module( Name = "Mvc", Author = "The Orchard Team", Website = "http://orchardproject.net", Version = "2.0.0", Description = "The mvc module.", Priority = "-10", Category = "Infrastructure" )]
using OrchardCore.Modules.Manifest; [assembly: Module( Name = "Mvc", Author = "The Orchard Team", Website = "http://orchardproject.net", Version = "2.0.0", Description = "The mvc module.", Priority = "-1", Category = "Infrastructure" )]
bsd-3-clause
C#
42d43789efd32db456eabec72cbfe088ae08c4f8
Make wallet name argument required
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/CommandLine/MixerCommand.cs
WalletWasabi.Gui/CommandLine/MixerCommand.cs
using Mono.Options; using System; using System.Collections.Generic; using System.Threading.Tasks; using WalletWasabi.Logging; namespace WalletWasabi.Gui.CommandLine { internal class MixerCommand : Command { public MixerCommand(Daemon daemon) : base("mix", "Start mixing without the GUI with the specified wallet....
using Mono.Options; using System; using System.Collections.Generic; using System.Threading.Tasks; using WalletWasabi.Logging; namespace WalletWasabi.Gui.CommandLine { internal class MixerCommand : Command { public MixerCommand(Daemon daemon) : base("mix", "Start mixing without the GUI with the specified wallet....
mit
C#
db1a9c7a67d6be83c765bfa0abd5b5e56581fbba
Add registration options for signaturehelp request
PowerShell/PowerShellEditorServices
src/PowerShellEditorServices.Protocol/LanguageServer/SignatureHelp.cs
src/PowerShellEditorServices.Protocol/LanguageServer/SignatureHelp.cs
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.PowerShell.EditorServices.Protocol.MessageProtocol; namespace Microsoft.PowerShell.EditorServices.Protocol.LanguageServer { public class Sign...
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.PowerShell.EditorServices.Protocol.MessageProtocol; namespace Microsoft.PowerShell.EditorServices.Protocol.LanguageServer { public class Sign...
mit
C#
4c1aee96ba0427cda062b23fabd12d9c1f98a728
Revert "Prevent form submit on grid quick search #209 fix"
vtfuture/BForms,vtfuture/BForms,vtfuture/BForms
BForms/Renderers/BsToolbarQuickSearchRenderer.cs
BForms/Renderers/BsToolbarQuickSearchRenderer.cs
using BForms.Grid; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Mvc; namespace BForms.Renderers { public class BsToolbarQuickSearchRenderer : BsBaseRenderer<BsToolbarQuickSearch> { public BsToolbarQuickSearchRender...
using BForms.Grid; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Mvc; namespace BForms.Renderers { public class BsToolbarQuickSearchRenderer : BsBaseRenderer<BsToolbarQuickSearch> { public BsToolbarQuickSearchRender...
mit
C#
196199d12b60609767be9b46c0adb6e0505c1d7e
Test reuse when plugin was not disposed
SeanFeldman/ServiceBus.AttachmentPlugin
src/ServiceBus.AttachmentPlugin.Tests/When_reusing_plugin.cs
src/ServiceBus.AttachmentPlugin.Tests/When_reusing_plugin.cs
namespace ServiceBus.AttachmentPlugin.Tests { using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Azure.ServiceBus; using Microsoft.Azure.ServiceBus.Core; using Xunit; public class When_reusing_plugin { [Fact] ...
namespace ServiceBus.AttachmentPlugin.Tests { using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Azure.ServiceBus; using Microsoft.Azure.ServiceBus.Core; using Xunit; public class When_reusing_plugin { [Fact] ...
mit
C#
5e452b6e1fba5a1f545de133894f4d195dcddb67
add Applications to payment Enum
smbc-digital/iag-contentapi
src/StockportContentApi/Enums/EPaymentReferenceValidation.cs
src/StockportContentApi/Enums/EPaymentReferenceValidation.cs
namespace StockportContentApi.Enums { public enum EPaymentReferenceValidation { None, ParkingFine, BusLaneAndCamera, FPN, CameraCar, BusLane, Applications } }
namespace StockportContentApi.Enums { public enum EPaymentReferenceValidation { None, ParkingFine, BusLaneAndCamera, FPN, CameraCar, BusLane } }
mit
C#
95e0a80719dfc0e462819125aaf4c96f256f9e68
remove lazy token
continuousit/seq-api,datalust/seq-api
src/Seq.Api/SeqConnection.cs
src/Seq.Api/SeqConnection.cs
using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; using Seq.Api.Client; using Seq.Api.Model; using Seq.Api.Model.Root; using Seq.Api.ResourceGroups; namespace Seq.Api { public class SeqConnection : ISeqConnection { readonly SeqApiClient _client; ...
using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; using Seq.Api.Client; using Seq.Api.Model; using Seq.Api.Model.Root; using Seq.Api.ResourceGroups; namespace Seq.Api { public class SeqConnection : ISeqConnection { readonly SeqApiClient _client; ...
apache-2.0
C#
c8871129b48dda0677263f5b41ffc2e1240ac571
Add another mapping test, non-auto inc Pk
garethbrown/biggy,garethbrown/biggy,jjchiw/biggy,jjchiw/biggy,jjchiw/biggy,garethbrown/biggy,xivSolutions/biggy
Biggy.SqlCe.Tests/SqlCEColumnMapping.cs
Biggy.SqlCe.Tests/SqlCEColumnMapping.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xunit; namespace Biggy.SqlCe.Tests { [Trait("SQL CE Compact column mapping", "")] public class SqlCEColumnMapping { public string _connectionStringName = "chinook"; [Fact(DisplayName ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xunit; namespace Biggy.SqlCe.Tests { [Trait("SQL CE Compact column mapping", "")] public class SqlCEColumnMapping { public string _connectionStringName = "chinook"; [Fact(DisplayName ...
bsd-3-clause
C#
d4a3ad3d6e8e70e9e95d3adb9282655be6c1245c
adjust json cache serializer
wanlitao/FCP.Cache
FCP.Cache.Core/Serializer/JsonCacheSerializer.cs
FCP.Cache.Core/Serializer/JsonCacheSerializer.cs
using Newtonsoft.Json; using System; using System.Text; namespace FCP.Cache { /// <summary> /// Newtonsoft.Json Serializer /// </summary> public class JsonCacheSerializer : ICacheSerializer { public JsonCacheSerializer() { SerializerSettings = new JsonSerializerSettings...
using Newtonsoft.Json; using System; using System.Text; namespace FCP.Cache { /// <summary> /// Newtonsoft.Json Serializer /// </summary> public class JsonCacheSerializer : ICacheSerializer { public JsonCacheSerializer() { SerializerSettings = new JsonSerializerSettings...
apache-2.0
C#
705dd5beff4d634dc8e499d5af0c4ad42bb2132d
Fix weh spam (#6312)
space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14
Content.Server/Sound/EmitSoundSystem.cs
Content.Server/Sound/EmitSoundSystem.cs
using Content.Server.Interaction.Components; using Content.Server.Sound.Components; using Content.Server.Throwing; using Content.Shared.Audio; using Content.Shared.Interaction; using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Shared.Audio; using Robust.Shared.GameObjects; using Robust.Shared.Pla...
using Content.Server.Interaction.Components; using Content.Server.Sound.Components; using Content.Server.Throwing; using Content.Shared.Audio; using Content.Shared.Interaction; using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Shared.Audio; using Robust.Shared.GameObjects; using Robust.Shared.Pla...
mit
C#
c84dd4ae0e9d30ebde203c1e130490854edd723d
Fix text style above participate button. Button now points to the appropriate function.
LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform
src/CompetitionPlatform/Views/Project/ProjectDetailsStatusPartial.cshtml
src/CompetitionPlatform/Views/Project/ProjectDetailsStatusPartial.cshtml
@using System.Threading.Tasks @model CompetitionPlatform.Models.ProjectViewModels.ProjectDetailsStatusViewModel @if (Model.Status == Status.Initiative) { <div> <p class="project-voting-text">Cast your vote for or against the competition. Do you think this is the project that Lykke City needs?</p> <...
@using System.Threading.Tasks @model CompetitionPlatform.Models.ProjectViewModels.ProjectDetailsStatusViewModel @if (Model.Status == Status.Initiative) { <div> <p class="project-voting-text">Cast your vote for or against the competition. Do you think this is the project that Lykke City needs?</p> <...
mit
C#
1b0a7980db5b520a77e06d704124e4658710f705
add required attributes
MIS-Department/HR-Department,MIS-Department/HR-Department,MIS-Department/HR-Department
HR-Department.Models/Tables/Employee.cs
HR-Department.Models/Tables/Employee.cs
using System.ComponentModel.DataAnnotations; using HR_Department.Models.Tables.Interfaces; namespace HR_Department.Models.Tables { public class Employee : IEmployee { public int EmployeeId { get; set; } [Required] public string EmployeeNumber { get; set; } [Required] ...
using System.ComponentModel.DataAnnotations; using HR_Department.Models.Tables.Interfaces; namespace HR_Department.Models.Tables { public class Employee : IEmployee { public int EmployeeId { get; set; } [Required] public string EmployeeNumber { get; set; } [Required] ...
mit
C#
f6190211aa3d584310ef2aafa9db75cce2798d67
Disable 2 s/r tests that demonstrate known chorus problems
BloomBooks/BloomDesktop,andrew-polk/BloomDesktop,StephenMcConnel/BloomDesktop,JohnThomson/BloomDesktop,andrew-polk/BloomDesktop,andrew-polk/BloomDesktop,gmartin7/myBloomFork,StephenMcConnel/BloomDesktop,andrew-polk/BloomDesktop,StephenMcConnel/BloomDesktop,gmartin7/myBloomFork,BloomBooks/BloomDesktop,gmartin7/myBloomFo...
src/BloomTests/SendReceiveTests.cs
src/BloomTests/SendReceiveTests.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Text; using Bloom.Publish; using BloomTemp; using Chorus.VcsDrivers.Mercurial; using LibChorus.TestUtilities; using NUnit.Framework; using Palaso.IO; using Palaso.Progress.LogBox; namespace Bl...
using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Text; using Bloom.Publish; using BloomTemp; using Chorus.VcsDrivers.Mercurial; using LibChorus.TestUtilities; using NUnit.Framework; using Palaso.IO; using Palaso.Progress.LogBox; namespace Bl...
mit
C#
19380e332ebf906145001f971a861235bf5bd1a7
Update QuizGradeCalculator.cs
zulaldogan/unity-csharp-beginner
Practical/Assets/QuizGradeCalculator.cs
Practical/Assets/QuizGradeCalculator.cs
using UnityEngine; public class QuizGradeCalculator : MonoBehaviour { public float quiz1, quiz2, quiz3, quiz4, quiz5; public float average; public float Rndm() { return Random.Range(0f, 100.1f);//Random Float Numbers(0-100) } void Start() { quiz1 = Rndm(); ...
using UnityEngine; public class QuizGradeCalculator : MonoBehaviour { public float quiz1, quiz2, quiz3, quiz4, quiz5; public float average; void Start() { quiz1 = Random.Range(0f, 100.1f);//Random Float Numbers(0-100) quiz2 = Random.Range(0f, 100.1f); quiz3 = Random.Range(0f, ...
mit
C#
5d703b950a2167469e03cfe6d30bb93ec6ae1d74
Use case insensitive matching (fixes #39).
KN4CK3R/ReClass.NET,jesterret/ReClass.NET,jesterret/ReClass.NET,KN4CK3R/ReClass.NET,KN4CK3R/ReClass.NET,jesterret/ReClass.NET
ReClass.NET/Forms/ClassSelectionForm.cs
ReClass.NET/Forms/ClassSelectionForm.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics.Contracts; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using ReClassNET.Nodes; namespace ReClassNET.Forms { public partial...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics.Contracts; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using ReClassNET.Nodes; namespace ReClassNET.Forms { public partial...
mit
C#
d7db33ad12c265e49e1dbddd9cfec6e1dbaffa0c
Fix broken references in Household.Index
johanhelsing/vaskelista,johanhelsing/vaskelista
Vaskelista/Views/Household/Index.cshtml
Vaskelista/Views/Household/Index.cshtml
@model IEnumerable<Vaskelista.Models.Household> @{ ViewBag.Title = "Index"; } <h2>Index</h2> <p> @Html.ActionLink("Create New", "Create") </p> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.Token) </th> <th></th> </tr> @foreach (var item in M...
@model IEnumerable<Vaskelista.Models.Household> @{ ViewBag.Title = "Index"; } <h2>Index</h2> <p> @Html.ActionLink("Create New", "Create") </p> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.Name) </th> <th></th> </tr> @foreach (var item in Mo...
mit
C#
318180330f09744ef67a3e16ede8e386291fd910
Remove commented out code
googleapis/gapic-generator-csharp,googleapis/gapic-generator-csharp
Google.Api.Generator.Tests/ProtoTests/ResourceNames/ResourceNamesFakes.cs
Google.Api.Generator.Tests/ProtoTests/ResourceNames/ResourceNamesFakes.cs
// Copyright 2019 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicab...
// Copyright 2019 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicab...
apache-2.0
C#
0bb300a1331e0b9a7146bf7484751c2865946067
Create a index pr. read model
AntoineGa/EventFlow,rasmus/EventFlow,liemqv/EventFlow
Source/EventFlow.ReadStores.Elasticsearch/ReadModelDescriptionProvider.cs
Source/EventFlow.ReadStores.Elasticsearch/ReadModelDescriptionProvider.cs
// The MIT License (MIT) // // Copyright (c) 2015 Rasmus Mikkelsen // https://github.com/rasmus/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in // the Software without restriction, including...
// The MIT License (MIT) // // Copyright (c) 2015 Rasmus Mikkelsen // https://github.com/rasmus/EventFlow // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in // the Software without restriction, including...
mit
C#
ea459580533bc638714630391fc8fc9da1e6aa1d
Add back-end (db) user setting for benoit
KennethMoons/projectWindowsApp
WebApiOpendeurdag2/WebApiOpendeurdag2/Models/WebApiOpendeurdag2Context.cs
WebApiOpendeurdag2/WebApiOpendeurdag2/Models/WebApiOpendeurdag2Context.cs
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace WebApiOpendeurdag2.Models { public class WebApiOpendeurdag2Context : DbContext { // You can add custom code to this file. Changes will not be overwritten. // // If ...
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace WebApiOpendeurdag2.Models { public class WebApiOpendeurdag2Context : DbContext { // You can add custom code to this file. Changes will not be overwritten. // // If ...
agpl-3.0
C#
94653b09f693187bab5de2c9286abe0a3df7376c
split tests for parameters out to multiple tests to better illustrate for demo
mefish/BookStore
BookStore/Tests/Tests.Presentation/Commands/StockBookPresenterTests.cs
BookStore/Tests/Tests.Presentation/Commands/StockBookPresenterTests.cs
using BookStore.Core.Core.Interfaces; using BookStore.Presentation.Commands; using Moq; using NUnit.Framework; namespace BookStore.Tests.Tests.Presentation.Commands { [TestFixture] internal class StockBookPresenterTests { private const string ISBN = "456"; private const string EXPECTED_TIT...
using BookStore.Core.Core.Interfaces; using BookStore.Presentation.Commands; using Moq; using NUnit.Framework; namespace BookStore.Tests.Tests.Presentation.Commands { [TestFixture] internal class StockBookPresenterTests { private const string ISBN = "456"; private Mock<ICommandPresenterFac...
unlicense
C#
e7757f0ca5b26b57d32851dbb3164078af3d9594
add down migration for initial schema
Dirk-Peters/FS
Market/chat-server/Persistence/Migrations/InitialSchema.cs
Market/chat-server/Persistence/Migrations/InitialSchema.cs
using FluentMigrator; namespace chat_server.Persistence.Migrations { [Migration(1)] public sealed class InitialSchema : Migration { public override void Up() { var sessions = Create.Table("Sessions"); sessions.WithColumn("Id").AsGuid().PrimaryKey(); sess...
using FluentMigrator; namespace chat_server.Persistence.Migrations { [Migration(1)] public sealed class InitialSchema : MigrationBase { public override void Up() { var sessions = Create.Table("Sessions"); sessions.WithColumn("Id").AsGuid().PrimaryKey(); ...
mit
C#
feaefe489a84c4b0255601dae7bde46a2f43b29d
Change .net type to stable NuGet dependency for KaVEVersionUtil counter example.
kave-cc/csharp-commons,kave-cc/csharp-commons
KaVE.Commons.Tests/Utils/KaVEVersionUtilTestSuite/OtherAssemblyTest.cs
KaVE.Commons.Tests/Utils/KaVEVersionUtilTestSuite/OtherAssemblyTest.cs
/* * Copyright 2017 University of Zurich * * 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 o...
/* * Copyright 2017 University of Zurich * * 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 o...
apache-2.0
C#