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
155133f699152572f93c6978a0b1bbb4bc473847
make auth api response constructor public
NebulousConcept/b2-csharp-client
b2-csharp-client/B2.Client/Apis/AuthorizeAccountV1/AuthorizeAccountV1Response.cs
b2-csharp-client/B2.Client/Apis/AuthorizeAccountV1/AuthorizeAccountV1Response.cs
using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using B2.Client.Rest; using B2.Client.Rest.Response; namespace B2.Client.Apis.AuthorizeAccountV1 { /// <summary> /// Response object for the 'b2_authorize_account' version 1 API. /// </summary> [DataContract] public class...
using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using B2.Client.Rest; using B2.Client.Rest.Response; namespace B2.Client.Apis.AuthorizeAccountV1 { /// <summary> /// Response object for the 'b2_authorize_account' version 1 API. /// </summary> [DataContract] public class...
mit
C#
f7e64a5aa55e8885102fadea998a7a2b815e3a7c
Bump version
nixxquality/WebMConverter,Yuisbean/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#
3902add36e4b16079b1da0260e44c2dbc203c2a2
check for flag using has flag
pako1337/raim,pako1337/raim,pako1337/raim
PaCode.Raim/Model/Player.cs
PaCode.Raim/Model/Player.cs
using System; using System.Collections.Generic; using System.Linq; using PaCode.Raim.Home; namespace PaCode.Raim.Model { public class Player { private const int MaxSpeed = 10; public string Name { get; private set; } public Vector2d Position { get; private set; } public Vector2...
using System; using System.Collections.Generic; using System.Linq; using PaCode.Raim.Home; namespace PaCode.Raim.Model { public class Player { private const int MaxSpeed = 10; public string Name { get; private set; } public Vector2d Position { get; private set; } public Vector2...
mit
C#
f887d22a1649bb8837ad12aac1a492dc41d0d30f
Make WipeMind() not crash if there is no mind to be wiped.
space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,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
Content.Server/Players/PlayerData.cs
Content.Server/Players/PlayerData.cs
using Content.Server.Mobs; using SS14.Server.Interfaces.Player; using SS14.Shared.IoC; using SS14.Shared.Network; using SS14.Shared.ViewVariables; namespace Content.Server.Players { /// <summary> /// Content side for all data that tracks a player session. /// Use <see cref="PlayerDataExt.ContentDa...
using Content.Server.Mobs; using SS14.Server.Interfaces.Player; using SS14.Shared.IoC; using SS14.Shared.Network; using SS14.Shared.ViewVariables; namespace Content.Server.Players { /// <summary> /// Content side for all data that tracks a player session. /// Use <see cref="PlayerDataExt.ContentDa...
mit
C#
8eee54ea9ce866c3d9bd1c48c440254c7b200ca4
Update of NotificationMessage to include the Id of the notification
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EmployerApprenticeshipsService.Domain/Models/Notification/NotificationMessage.cs
src/SFA.DAS.EmployerApprenticeshipsService.Domain/Models/Notification/NotificationMessage.cs
using System; namespace SFA.DAS.EmployerApprenticeshipsService.Domain.Models.Notification { public class NotificationMessage { public int Id { get; set; } public int UserId { get; set; } public DateTime DateTime { get; set; } public bool ForceFormat { get; set; } public...
using System; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SFA.DAS.EmployerApprenticeshipsService.Domain.Models.Notification { public class NotificationMessage { public int UserId { get; set; } public DateTime DateTime { get; set; } public bool ForceFor...
mit
C#
5ae3a4509ee0e39ceb30356f9fc4c36a0211a83d
Fix dotenvfile usage
clement911/ShopifySharp,nozzlegear/ShopifySharp
ShopifySharp.Tests/Utils.cs
ShopifySharp.Tests/Utils.cs
using System; using System.Collections.Generic; namespace ShopifySharp.Tests { /// <summary> /// A utility class for running tests. /// </summary> public static class Utils { private static IDictionary<string, string> _dotEnvFile; static Utils() { // Console.Wri...
using System; using System.Collections.Generic; namespace ShopifySharp.Tests { /// <summary> /// A utility class for running tests. /// </summary> public static class Utils { private static Dictionary<string, string> dotEnvFile; static Utils() { // Console.Write...
mit
C#
12d167124770ec9ff2d908e971284d68654eb73a
Rollback label equality
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Models/Label.cs
WalletWasabi/Models/Label.cs
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace WalletWasabi.Models { public class Label : IEquatable<Label> { public static Label Empty { get; } = new Label(); public static char[] Separators { get; } = new[] { ',', ':' }; public IEnume...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace WalletWasabi.Models { public class Label : IEquatable<Label> { public static Label Empty { get; } = new Label(); public static char[] Separators { get; } = new[] { ',', ':' }; public IEnume...
mit
C#
f2d8ffe28f811421c6a2f24d476d05c1aef4a3bf
Fix ical gen test
victoria92/university-program-generator,victoria92/university-program-generator
UniProgramGen/Generator/ICalGenerator.cs
UniProgramGen/Generator/ICalGenerator.cs
using DDay.iCal; using DDay.iCal.Serialization; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using UniProgramGen.Data; namespace UniProgramGen.Generator { public class ICalGenerator { public ICalGenerator() ...
using DDay.iCal; using DDay.iCal.Serialization; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using UniProgramGen.Data; namespace UniProgramGen.Generator { public class ICalGenerator { public ICalGenerator() ...
bsd-2-clause
C#
c3edc18282edc86e077ecddf2dcb62caf2985fd6
test for serialization of null property.
samus/mongodb-csharp,mongodb-csharp/mongodb-csharp,zh-huan/mongodb
MongoDB.Net-Tests/Serialization/Descriptors/EmbeddedClassPropertyTests.cs
MongoDB.Net-Tests/Serialization/Descriptors/EmbeddedClassPropertyTests.cs
using NUnit.Framework; namespace MongoDB.Driver.Serialization.Descriptors { [TestFixture] public class EmbeddedClassPropertyTests : SerializationTestBase { public class SimpleObject { public string A { get; set; } public string B { get; set; } ...
using NUnit.Framework; namespace MongoDB.Driver.Serialization.Descriptors { [TestFixture] public class EmbeddedClassPropertyTests : SerializationTestBase { public class SimpleObject { public string A { get; set; } public string B { get; set; } ...
apache-2.0
C#
24ffcdddf674f6fc137bfc742e625448e6813c8e
fix CellHistory deserialization
smartsheet-platform/smartsheet-csharp-sdk,smartsheet-platform/smartsheet-csharp-sdk
main/Smartsheet/Api/Internal/Json/CellObjectTypeConverter.cs
main/Smartsheet/Api/Internal/Json/CellObjectTypeConverter.cs
// #[ license] // SmartsheetClient SDK for C# // %% // Copyright (C) 2017 SmartsheetClient // %% // 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 // // ...
// #[ license] // SmartsheetClient SDK for C# // %% // Copyright (C) 2017 SmartsheetClient // %% // 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 // // ...
apache-2.0
C#
957fcc3d8d6524bdc368d4f75d38134276581422
Add using for R# 2017.1
ulrichb/ReSharperExtensionsShared
Src/ReSharperExtensionsShared/ProblemAnalyzers/SimpleElementProblemAnalyzer.cs
Src/ReSharperExtensionsShared/ProblemAnalyzers/SimpleElementProblemAnalyzer.cs
using JetBrains.Annotations; using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.Tree; #if RS20171 || RS20172 || RD20172 using JetBrains.ReSharper.Daemon.Stages.Dispatcher; #endif namespace ReSharperExtensionsShared.ProblemAnalyzers { public abstract cl...
using JetBrains.Annotations; using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.Tree; #if RS20172 || RD20172 using JetBrains.ReSharper.Daemon.Stages.Dispatcher; #endif namespace ReSharperExtensionsShared.ProblemAnalyzers { public abstract class SimpleE...
mit
C#
2158a78a1f9c202be8cb10c5b999cef18bcda712
Initialize User Roles under CreateTenantAdminUser method.
aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template
aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Authorization/Users/User.cs
aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Authorization/Users/User.cs
using System; using System.Collections.Generic; using Abp.Authorization.Users; using Abp.Extensions; namespace AbpCompanyName.AbpProjectName.Authorization.Users { public class User : AbpUser<User> { public const string DefaultPassword = "123qwe"; public static string CreateRandomPassword() ...
using System; using Abp.Authorization.Users; using Abp.Extensions; namespace AbpCompanyName.AbpProjectName.Authorization.Users { public class User : AbpUser<User> { public const string DefaultPassword = "123qwe"; public static string CreateRandomPassword() { return Guid.Ne...
mit
C#
aee4ce224fbf8099a9d5108738172897ebb01f2c
Make the Background script work better with empty maps.
Damnae/storybrew
scripts/Background.cs
scripts/Background.cs
using StorybrewCommon.Scripting; using StorybrewCommon.Storyboarding; using System.Linq; namespace StorybrewScripts { public class Background : StoryboardObjectGenerator { [Configurable] public string BackgroundPath = ""; [Configurable] public int StartTime = 0; [Conf...
using StorybrewCommon.Scripting; using StorybrewCommon.Storyboarding; using System.Linq; namespace StorybrewScripts { public class Background : StoryboardObjectGenerator { [Configurable] public string BackgroundPath = ""; [Configurable] public int StartTime = 0; [Conf...
mit
C#
c2388e73b4af2edc147f97c85dee75e5ffdd1627
Fix comment that says we aren't using a parameter that's critical
dotnet/roslyn,bartdesmet/roslyn,mavasani/roslyn,sharwell/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,physhi/roslyn,sharwell/roslyn,eriawan/roslyn,wvdd007/roslyn,jasonmalinowski/roslyn,jasonmalinowski/roslyn,shyamnamboodiripad/roslyn,dotnet/roslyn,KevinRansom/roslyn,physhi/roslyn,jasonmalinowski/roslyn,KevinRansom/...
src/VisualStudio/Core/Def/Implementation/ProjectSystem/CPS/IWorkspaceProjectContextFactory.cs
src/VisualStudio/Core/Def/Implementation/ProjectSystem/CPS/IWorkspaceProjectContextFactory.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.Threading; using System.Threading.Tasks; namespace Microsoft.VisualStudio.LanguageServi...
// 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.Threading; using System.Threading.Tasks; namespace Microsoft.VisualStudio.LanguageServi...
mit
C#
a5866515785ac4539e707ecd1e5b0f4439c4c4a4
update project namespace
tsolarin/dotnet-clean
Program.cs
Program.cs
using System; using System.IO; namespace DotnetCleanApplication { public class Program { public static void Main(string[] args) { Console.WriteLine("Cleaning..."); try { if (Directory.Exists("./bin")) Directory.Delete("./...
using System; using System.IO; namespace ConsoleApplication { public class Program { public static void Main(string[] args) { Console.WriteLine("Cleaning..."); try { if (Directory.Exists("./bin")) Directory.Delete("./bin"...
mit
C#
c2c1a70d39cd718a6225f63cbef25ed4f6211295
Clean Android project
Vtek/FacesToSmileys
FacesToSmileys.Droid/MainActivity.cs
FacesToSmileys.Droid/MainActivity.cs
using Android.App; using Android.Content.PM; using Android.OS; namespace FacesToSmileys.Droid { [Activity(ScreenOrientation = ScreenOrientation.FullSensor, MainLauncher = false, Label = "FacesToSmileys.Droid", Icon = "@drawable/icon", Theme = "@style/MyTheme", ConfigurationChanges = ConfigChanges.ScreenSize | Con...
using Android.App; using Android.Content.PM; using Android.OS; namespace FacesToSmileys.Droid { [Activity(ScreenOrientation = ScreenOrientation.FullSensor, MainLauncher = false, Label = "FacesToSmileys.Droid", Icon = "@drawable/icon", Theme = "@style/MyTheme", ConfigurationChanges = ConfigChanges.ScreenSize | Con...
mit
C#
231eb866a1fea5df74e97e11c00362e7e86a856c
Remove duplicate WebDriver binding
SonnevilleJ/Investing,SonnevilleJ/Investing
Sonneville.Fidelity.Shell/AppStartup/NinjectModules/AppModule.cs
Sonneville.Fidelity.Shell/AppStartup/NinjectModules/AppModule.cs
using System; using System.IO; using Ninject.Extensions.Conventions; using Ninject.Modules; using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using Sonneville.Fidelity.Shell.Interface; namespace Sonneville.Fidelity.Shell.AppStartup.NinjectModules { public class AppModule : NinjectModule { public ov...
using System; using System.IO; using Ninject.Extensions.Conventions; using Ninject.Modules; using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using Sonneville.Fidelity.Shell.Interface; namespace Sonneville.Fidelity.Shell.AppStartup.NinjectModules { public class AppModule : NinjectModule { public ov...
mit
C#
d753d397c1cd1e2783597dfceafa72c4b3bdfba3
clean up
asipe/snarfz
src/Snarfz.Core/ScanErrorHandler.cs
src/Snarfz.Core/ScanErrorHandler.cs
// Copyright (c) Andy Sipe. All rights reserved. Licensed under the MIT License (MIT). See License.txt in the project root for license information. using System; namespace Snarfz.Core { public class ScanErrorHandler : IScanErrorHandler { public void Handle(Config config, string currentDir, Exception exce...
// Copyright (c) Andy Sipe. All rights reserved. Licensed under the MIT License (MIT). See License.txt in the project root for license information. using System; namespace Snarfz.Core { public class ScanErrorHandler : IScanErrorHandler { public void Handle(Config config, string currentDir, Exception exce...
mit
C#
3b5a60a6cfc02d19af7ff5fdcad94d0bac6d6447
Remove reading local logs from .NET Yarn tests
jwang98052/reef,anupam128/reef,dongjoon-hyun/reef,markusweimer/reef,jwang98052/reef,tcNickolas/reef,dongjoon-hyun/reef,jwang98052/incubator-reef,dongjoon-hyun/incubator-reef,jwang98052/reef,tcNickolas/incubator-reef,shravanmn/reef,dongjoon-hyun/incubator-reef,apache/reef,shravanmn/reef,apache/incubator-reef,apache/incu...
lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs
lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs
// 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 (the // "License"); you ma...
// 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 (the // "License"); you ma...
apache-2.0
C#
cd3edc869c3455fd77aa0348566faccd079a1b97
Remove unnecessary nesting of `IconButton` and update design a touch
NeoAdonis/osu,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu
osu.Game/Screens/Edit/Compose/Components/Timeline/TimelineButton.cs
osu.Game/Screens/Edit/Compose/Components/Timeline/TimelineButton.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.Game.Graphics.UserInterface; using osu.Game.Overlays; using osu.Game.Screens.Edit.Timing; namespace osu.Game.Screens.Edit.Comp...
// 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.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites; using osu.Game....
mit
C#
c947eeb49dff4dea37afee0a4e986d1a233b5b28
Fix CodeAnalysis warnings
github/VisualStudio,github/VisualStudio,github/VisualStudio
src/GitHub.VisualStudio.UI/Helpers/ThemeDictionaryManager.cs
src/GitHub.VisualStudio.UI/Helpers/ThemeDictionaryManager.cs
using System; using System.Windows; using System.ComponentModel; using Microsoft.VisualStudio.PlatformUI; using GitHub.VisualStudio.Helpers; using GitHub.Helpers; namespace GitHub.VisualStudio.UI.Helpers { public sealed class ThemeDictionaryManager : SharedDictionaryManagerBase, IDisposable { static b...
using System; using System.Windows; using System.ComponentModel; using Microsoft.VisualStudio.PlatformUI; using GitHub.VisualStudio.Helpers; using GitHub.Helpers; namespace GitHub.VisualStudio.UI.Helpers { public class ThemeDictionaryManager : SharedDictionaryManagerBase, IDisposable { static bool isI...
mit
C#
739c906587018aaade88194708224c14475fb735
Fix string injection of NAME from ViewBag to ng.constant
dmorosinotto/MVC_NG_TS,dmorosinotto/MVC_NG_TS
MvcNG/Views/ngApp/ngConstants.cshtml
MvcNG/Views/ngApp/ngConstants.cshtml
<script type="text/javascript"> angular.module("myapp") .constant("WAIT", @ViewBag.WAIT) .constant("NAME", '@ViewBag.NAME') ; </script>
<script type="text/javascript"> angular.module("myapp") .constant("WAIT", @ViewBag.WAIT) .constant("NAME", @ViewBag.NAME) ; </script>
mit
C#
5c3d1228a356a0e91a0bfdf77e8204f3c6ab0530
Update XPathGeometryTypeConverter.cs
wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Serializer.Xaml/Converters/XPathGeometryTypeConverter.cs
src/Serializer.Xaml/Converters/XPathGeometryTypeConverter.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; using System.Globalization; #if NETSTANDARD using System.ComponentModel; #else using Portable.Xaml.ComponentModel; #endif using Core2D.Path; using Co...
// 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 Core2D.Path; using Core2D.Path.Parser; using Portable.Xaml.ComponentModel; using System; using System.ComponentModel; using System.Globalization; namespace ...
mit
C#
4ceb145f649eb87cf0ebd5ead04743ae953f1c49
Simplify the response from the server on the agent-server http channel
pranavkm/Glimpse.Prototype,pranavkm/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,zanetdev/Glimpse.Prototype,Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,pranavkm/Glimpse.Prototype,pranavkm/Glimpse.Protot...
src/Glimpse.Server.Channel.Agent.Http/Broker/HttpChannelReceiver.cs
src/Glimpse.Server.Channel.Agent.Http/Broker/HttpChannelReceiver.cs
using Glimpse.Web; using Microsoft.AspNet.Http; using Newtonsoft.Json; using System.IO; using System.Text; using Microsoft.AspNet.Builder; namespace Glimpse.Server.Web { public class HttpChannelReceiver : IMiddlewareResourceComposer { private readonly IServerBroker _messageServerBus; public H...
using Glimpse.Web; using Microsoft.AspNet.Http; using Newtonsoft.Json; using System.IO; using System.Text; using Microsoft.AspNet.Builder; namespace Glimpse.Server.Web { public class HttpChannelReceiver : IMiddlewareResourceComposer { private readonly IServerBroker _messageServerBus; public H...
mit
C#
16ba2c74bfdd6cc0bc0db769e0fd4a2c151e5177
Fix error message
wcoder/Forms.SampleSignInFlow
src/LoginNavigationExample/LoginNavigationExample/LoginPage.xaml.cs
src/LoginNavigationExample/LoginNavigationExample/LoginPage.xaml.cs
using System; using System.Threading.Tasks; using LoginNavigationExample.CustomPages; using Xamarin.Forms; namespace LoginNavigationExample { public partial class LoginPage : ContentPage { private LoginService _loginService; public LoginPage() { Init(); } public LoginPage(string message) { Init(...
using System; using System.Threading.Tasks; using LoginNavigationExample.CustomPages; using Xamarin.Forms; namespace LoginNavigationExample { public partial class LoginPage : ContentPage { private LoginService _loginService; public LoginPage() { Init(); } public LoginPage(string message) { Init(...
mit
C#
14db81384295ec7e97d9b3bc749fefe01d982da8
Add licence header
NeoAdonis/osu,smoogipoo/osu,EVAST9919/osu,ppy/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,2yangk23/osu,2yangk23/osu,peppy/osu,ppy/osu,smoogipoo/osu,ppy/osu,johnneijzen/osu,UselessToucan/osu,peppy/osu-new,EVAST9919/osu,UselessToucan/osu,peppy/osu,johnneijzen/osu
osu.Game/Utils/FormatUtils.cs
osu.Game/Utils/FormatUtils.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Utils { public static class FormatUtils { /// <summary> /// Turns the provided accuracy into a percentage with 2 decimal places. /// Omit...
namespace osu.Game.Utils { public static class FormatUtils { /// <summary> /// Turns the provided accuracy into a percentage with 2 decimal places. /// Omits all decimal places when <paramref name="accuracy"/> equals 1d. /// </summary> /// <param name="accuracy">The accuracy to be formatte...
mit
C#
787529cf0d3541e56048b8973c1bd9d2966101b6
Remove IDataEditor inheritance
NikRimington/Umbraco-CMS,madsoulswe/Umbraco-CMS,mattbrailsford/Umbraco-CMS,arknu/Umbraco-CMS,leekelleher/Umbraco-CMS,robertjf/Umbraco-CMS,arknu/Umbraco-CMS,abjerner/Umbraco-CMS,abjerner/Umbraco-CMS,dawoe/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,KevinJump/Umbraco-CMS,leekelleher/Umbraco-CMS,marcemarc/Umbraco-CMS,bjarne...
src/Umbraco.Core/PropertyEditors/IDataEditorWithMediaPath.cs
src/Umbraco.Core/PropertyEditors/IDataEditorWithMediaPath.cs
namespace Umbraco.Core.PropertyEditors { public interface IDataEditorWithMediaPath { string GetMediaPath(object value); } }
namespace Umbraco.Core.PropertyEditors { public interface IDataEditorWithMediaPath : IDataEditor { string GetMediaPath(object value); } }
mit
C#
eeb613921a61e5213dd5b49c5ef9d9bd8b3806e8
Call Reset from ctor rather than specifying default value in two places
ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework
osu.Framework/Graphics/OpenGL/DepthValue.cs
osu.Framework/Graphics/OpenGL/DepthValue.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.Runtime.CompilerServices; namespace osu.Framework.Graphics.OpenGL { /// <summary> /// The depth value used to draw 2D objects to the screen. ///...
// 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.Runtime.CompilerServices; namespace osu.Framework.Graphics.OpenGL { /// <summary> /// The depth value used to draw 2D objects to the screen. ///...
mit
C#
86b81ad41aca0e645ed1d82c55e71abd6b09eefd
Update PolyLineSegmentTests.cs
Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D
tests/Core2D.UnitTests/Path/Segments/PolyLineSegmentTests.cs
tests/Core2D.UnitTests/Path/Segments/PolyLineSegmentTests.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 Core2D.Path.Segments; using Core2D.Shapes; using System.Linq; using Xunit; namespace Core2D.UnitTests { public class PolyLineSegmentTests { ...
// 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 Core2D.Path.Segments; using Core2D.Shapes; using System.Linq; using Xunit; namespace Core2D.UnitTests { public class PolyLineSegmentTests { ...
mit
C#
13e83e49dc8cce8aaaee7c0a2d6369e0625e9551
Create QuestionRepository
BrainStation-23/recruitment-management-system,BrainStation-23/recruitment-management-system,BrainStation-23/recruitment-management-system
Application/RecruitmentManagementSystem.Data/Repositories/QuestionRepository.cs
Application/RecruitmentManagementSystem.Data/Repositories/QuestionRepository.cs
using RecruitmentManagementSystem.Data.Interfaces; using RecruitmentManagementSystem.Model; namespace RecruitmentManagementSystem.Data.Repositories { public class QuestionRepository : BaseRepository<Question>, IQuestionRepository { } }
using RecruitmentManagementSystem.Data.Interfaces; using RecruitmentManagementSystem.Model; namespace RecruitmentManagementSystem.Data.Repositories { public class QuestionRepository : BaseRepository<Question>, IQuestionRepository { } }
mit
C#
908da165b27c936b9387b6549441d8980cdd66b0
fix Equals of AutoCompleteResponse
OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn
src/OmniSharp.Abstractions/Models/v1/AutoComplete/AutoCompleteResponse.cs
src/OmniSharp.Abstractions/Models/v1/AutoComplete/AutoCompleteResponse.cs
 namespace OmniSharp.Models.AutoComplete { public class AutoCompleteResponse { /// <summary> /// The text to be "completed", that is, the text that will be inserted in the editor. /// </summary> public string CompletionText { get; set; } public string Description { get; ...
 namespace OmniSharp.Models.AutoComplete { public class AutoCompleteResponse { /// <summary> /// The text to be "completed", that is, the text that will be inserted in the editor. /// </summary> public string CompletionText { get; set; } public string Description { get; ...
mit
C#
b8d8ba65fb9f111192a4fa858401b981032a7d3f
Remove test code.
modulexcite/DebuggerStepThroughRemover,tiesmaster/DebuggerStepThroughRemover
DebuggerStepThroughRemover/DebuggerStepThroughRemover/DiagnosticAnalyzer.cs
DebuggerStepThroughRemover/DebuggerStepThroughRemover/DiagnosticAnalyzer.cs
using System; using System.Collections.Immutable; using System.Diagnostics; using System.Linq; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; namespace DebuggerStepThroughRemover { // TODO: add ReSharper solu...
using System; using System.Collections.Immutable; using System.Diagnostics; using System.Linq; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; namespace DebuggerStepThroughRemover { // TODO: add ReSharper solu...
mit
C#
2c8a01662692e4febea4a61fc4eaff71f121ed0e
Fix FlappyDon template game not building
peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework
osu.Framework.Templates/templates/template-flappy/FlappyDon.Game/Elements/ScoreSpriteText.cs
osu.Framework.Templates/templates/template-flappy/FlappyDon.Game/Elements/ScoreSpriteText.cs
using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Textures; using osu.Framework.Text; namespace FlappyDon.Game.Elements { /// <summary> /// Draws the current score on screen. The score is displayed by u...
using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Textures; using osu.Framework.Text; namespace FlappyDon.Game.Elements { /// <summary> /// Draws the current score on screen. The score is displayed by u...
mit
C#
8f53c4e28cafa08665f0ae90f24177b59871e32c
Allow IConfigurationContainer to be passed into StaticMetricsPipeProvider.
peschuster/graphite-client
source/Graphite/StaticMetricsPipeProvider.cs
source/Graphite/StaticMetricsPipeProvider.cs
using Graphite.Configuration; namespace Graphite { /// <summary> /// <see cref="IMetricsPipeProvider"/> with static lifetime for usage in self-hosted applications (e.g. console application). /// </summary> public class StaticMetricsPipeProvider : IMetricsPipeProvider { private static Stati...
using Graphite.Configuration; namespace Graphite { /// <summary> /// <see cref="IMetricsPipeProvider"/> with static lifetime for usage in self-hosted applications (e.g. console application). /// </summary> public class StaticMetricsPipeProvider : IMetricsPipeProvider { private static Stati...
mit
C#
3ace53e3bac578b6cc7036130d0f7b44bc3f24ed
Fix wf execution exception
Microsoft/poshtools,SpotLabsNET/poshtools,zbrad/poshtools,KevinHorvatin/poshtools,mgreenegit/poshtools,adamdriscoll/poshtools,YOTOV-LIMITED/poshtools,daviwil/poshtools,erwindevreugd/poshtools
PowershellTools.Common/ServiceManagement/DebuggingContract/IDebugEngineCallback.cs
PowershellTools.Common/ServiceManagement/DebuggingContract/IDebugEngineCallback.cs
using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Management.Automation.Runspaces; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace PowerShellTools.Common.ServiceManagement.DebuggingContract { public ...
using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace PowerShellTools.Common.ServiceManagement.DebuggingContract { public interface IDebugEngineCallback { ...
apache-2.0
C#
76b6bd6d3323c28c0072e0a191ef7fea7fa8143d
Bump version.
yojimbo87/ArangoDB-NET,kangkot/ArangoDB-NET
src/Arango/Arango.Client/API/ArangoClient.cs
src/Arango/Arango.Client/API/ArangoClient.cs
using System.Collections.Generic; using System.Linq; using Arango.Client.Protocol; namespace Arango.Client { public static class ArangoClient { private static List<Connection> _connections = new List<Connection>(); public static string DriverName { get { return ...
using System.Collections.Generic; using System.Linq; using Arango.Client.Protocol; namespace Arango.Client { public static class ArangoClient { private static List<Connection> _connections = new List<Connection>(); public static string DriverName { get { return ...
mit
C#
3e83d768f9ebc4aa39d04f570a19f184cad6ebe0
Add value to GenderType enum
bolorundurowb/vCardLib
vCardLib/Enums/GenderType.cs
vCardLib/Enums/GenderType.cs
namespace vCardLib.Enums { /// <summary> /// Gender types /// </summary> public enum GenderType { None = 0, Male = 1, Female = 2, Other = 3 } }
namespace vCardLib.Enums { /// <summary> /// Gender types /// </summary> public enum GenderType { Male, Female, Other, None } }
mit
C#
9a75ca6539fdbb8c324b34a25ba2a025788d323e
increment patch version,
jwChung/Experimentalism,jwChung/Experimentalism
build/CommonAssemblyInfo.cs
build/CommonAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
mit
C#
5f7ee9e5ff613dea26b75257bb3a66c95f1af6d0
Fix problem with missing avatars
joinrpg/joinrpg-net,leotsarev/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net
src/Joinrpg.Web.Identity/ClaimInfoBuilder.cs
src/Joinrpg.Web.Identity/ClaimInfoBuilder.cs
using System.Collections.Generic; using JoinRpg.DataModel; using JoinRpg.Domain; using Claim = System.Security.Claims.Claim; using ClaimTypes = System.Security.Claims.ClaimTypes; namespace Joinrpg.Web.Identity { internal static class ClaimInfoBuilder { public static IList<Claim> ToClaimsList(this User ...
using System.Collections.Generic; using JoinRpg.DataModel; using JoinRpg.Domain; using Claim = System.Security.Claims.Claim; using ClaimTypes = System.Security.Claims.ClaimTypes; namespace Joinrpg.Web.Identity { internal static class ClaimInfoBuilder { public static IList<Claim> ToClaimsList(this User ...
mit
C#
a82aa4c67b584d8cef629d7e409357d7e3b34422
set correct name on TransmitterConfig
LagoVista/DeviceAdmin
src/LagoVista.IoT.DeviceAdmin/Models/TransmitterConfiguration.cs
src/LagoVista.IoT.DeviceAdmin/Models/TransmitterConfiguration.cs
using LagoVista.Core.Interfaces; using System; namespace LagoVista.IoT.DeviceAdmin.Models { public class TransmitterConfiguration : PipelineModuleConfiguration { public enum TransmitterTypes { AzureServiceBus, AzureEventHub, AzureIoTHub, Rest, ...
using LagoVista.Core.Interfaces; using System; namespace LagoVista.IoT.DeviceAdmin.Models { public class TransmitterConfiguration : PipelineModuleConfiguration { public enum TransmitterTypes { AzureServiceBus, AzureEventHub, AzureIoTHub, Rest, ...
mit
C#
3a4a19f73db042589bd6585d2f86ff66082a9e83
Remove unused instance variable in FileSystemPersistenceStrategy.
nbevans/EventStreams,nbevans/EventStreams
EventStreams/Persistence/FileSystem/FileSystemPersistenceStrategy.cs
EventStreams/Persistence/FileSystem/FileSystemPersistenceStrategy.cs
using System; using System.Collections.Generic; namespace EventStreams.Persistence.FileSystem { using Core; using Serialization.Events; public class FileSystemPersistenceStrategy : IPersistenceStrategy { private readonly FileSystemLoader _loader; private readonly FileSystemStorer...
using System; using System.Collections.Generic; namespace EventStreams.Persistence.FileSystem { using Core; using Serialization.Events; public class FileSystemPersistenceStrategy : IPersistenceStrategy { private readonly RepositoryHierarchy _repositoryHierarchy; private readonly ...
mit
C#
37e1f7eb512c70f9803c1704cf86936c9644582a
Update Load_TestObj_ValidNumberOfVertices test
chrkon/helix-toolkit,huoxudong125/helix-toolkit,holance/helix-toolkit,aparajit-pratap/helix-toolkit,JeremyAnsel/helix-toolkit,vidstige/helix-toolkit,lcouz/helix-toolkit,Iluvatar82/helix-toolkit,jotschgl/helix-toolkit,0x53A/helix-toolkit,smischke/helix-toolkit,CobraCalle/helix-toolkit,DynamoDS/helix-toolkit,helix-toolki...
Source/HelixToolkit.Wpf.Tests/Importers/ModelImporterTests.cs
Source/HelixToolkit.Wpf.Tests/Importers/ModelImporterTests.cs
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ModelImporterTests.cs" company="Helix Toolkit"> // Copyright (c) 2014 Helix Toolkit contributors // </copyright> // ---------------------------------------------------------...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ModelImporterTests.cs" company="Helix Toolkit"> // Copyright (c) 2014 Helix Toolkit contributors // </copyright> // ---------------------------------------------------------...
mit
C#
1540ca98f1e25a0b953a960cbb664e420e168b31
Update MessagePackSerializer.cs
tiksn/TIKSN-Framework
TIKSN.Core/Serialization/MessagePack/MessagePackSerializer.cs
TIKSN.Core/Serialization/MessagePack/MessagePackSerializer.cs
using MsgPack.Serialization; using System.IO; namespace TIKSN.Serialization.MessagePack { public class MessagePackSerializer : SerializerBase<byte[]> { private readonly SerializationContext _serializationContext; public MessagePackSerializer(SerializationContext serializationContext) ...
using MsgPack.Serialization; using System.IO; namespace TIKSN.Serialization.MessagePack { public class MessagePackSerializer : SerializerBase<byte[]> { private readonly SerializationContext _serializationContext; public MessagePackSerializer(SerializationContext serializationContext) ...
mit
C#
094f6a87a01a4cde87b96d48577c95a8456e43c6
Fix typo
quesera2/Xamarin.Forms.GoogleMaps,JKennedy24/Xamarin.Forms.GoogleMaps,amay077/Xamarin.Forms.GoogleMaps,JKennedy24/Xamarin.Forms.GoogleMaps
Xamarin.Forms.GoogleMaps/Xamarin.Forms.GoogleMaps/Geocoder.cs
Xamarin.Forms.GoogleMaps/Xamarin.Forms.GoogleMaps/Geocoder.cs
using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Xamarin.Forms.GoogleMaps { public class Geocoder { internal static Func<string, Task<IEnumerable<Position>>> GetPositionsForAddressAsyncFunc; internal static Func<Position, Task<IEnumerable<string>>> GetAd...
using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Xamarin.Forms.GoogleMaps { public class Geocoder { internal static Func<string, Task<IEnumerable<Position>>> GetPositionsForAddressAsyncFunc; internal static Func<Position, Task<IEnumerable<string>>> GetAd...
mit
C#
d6e917c44812dafc2d4bd40111a19d3142a9b1ed
Read plugin settings from BasePluginsDirectory and all sub-directories
lionelplessis/Nubot,laurentkempe/Nubot,laurentkempe/Nubot,lionelplessis/Nubot
Nubot.Interfaces/RobotPluginBase.cs
Nubot.Interfaces/RobotPluginBase.cs
namespace Nubot.Abstractions { using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; public abstract class RobotPluginBase : IRobotPlugin { protected readonly IRobot Robot; protected RobotPluginBase(string pluginName, IRobot robot) ...
namespace Nubot.Abstractions { using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; public abstract class RobotPluginBase : IRobotPlugin { protected readonly IRobot Robot; protected RobotPluginBase(string pluginName, IRobot robot) ...
mit
C#
c63c140c432ff90fae291b64c0552e7e7038d331
Update index.cshtml
KovalNikita/apmathcloud
SITE/index.cshtml
SITE/index.cshtml
@{ double [] Solver(double []T,int n) { double [] X = new double [n]; return X; } var txt = DateTime.Now; // C# int m = 1; int b = 1; double t_0 = 1; double t_end = 100; double z_0 = 0; double z_d = 10; double t1 = t_0; double t2 = t_end; double h = 0.1; double width = 0.05; var amplitudeRequest = Request.Params[...
@{ var txt = DateTime.Now; // C# int m = 1; int b = 1; double t_0 = 1; double t_end = 100; double z_0 = 0; double z_d = 10; double t1 = t_0; double t2 = t_end; double h = 0.1; double width = 0.05; var amplitudeRequest = Request.Params["amplitude"]; var amplitudeValue = 1; var clear = int.TryParse(amplitudeReques...
mit
C#
d77882c21bcc9ebb4379fd7e6ad6d04a1f2ea451
Fix slider selection input handled outside path
smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,johnneijzen/osu,ppy/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,smoogipooo/osu,2yangk23/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,EVAST9919/osu,johnneijzen/osu,smoogipoo/osu,2yangk23/osu,peppy/osu-new
osu.Game.Rulesets.Osu/Edit/Blueprints/Sliders/Components/SliderBodyPiece.cs
osu.Game.Rulesets.Osu/Edit/Blueprints/Sliders/Components/SliderBodyPiece.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.Collections.Generic; using osu.Framework.Allocation; using osu.Game.Graphics; using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Osu.Objects.Drawab...
// 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.Collections.Generic; using osu.Framework.Allocation; using osu.Game.Graphics; using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Osu.Objects.Drawab...
mit
C#
b45afdbdd97e10e7f94879c939770d4e1202bcfe
Fix the build failure
Cinchoo/ChoETL
src/Test/ChoXmlToCSVConverterTest/Program.cs
src/Test/ChoXmlToCSVConverterTest/Program.cs
using ChoETL; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChoXmlToCSVConverterTest { [TestFixture] [SetCulture("en-US")] // TODO: Check if correct culture is used class Program { static voi...
using ChoETL; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChoXmlToCSVConverterTest { [TestFixture] [SetCulture("en-US")] // TODO: Check if correct culture is used class Program { static voi...
mit
C#
7fe47a89a62d867d5597fe8b1a0116b9d0289430
Use microsoft dockerhub registry (#135)
lecaillon/Evolve
test/Evolve.Tests/Infrastructure/SQLServer/SQLServerContainer.cs
test/Evolve.Tests/Infrastructure/SQLServer/SQLServerContainer.cs
using System.Data; using System.Data.SqlClient; namespace Evolve.Tests.Infrastructure { public class SQLServerContainer : IDbContainer { public const string ExposedPort = "1433"; public const string HostPort = "1433"; public const string DbName = "master"; public const string D...
using System.Data; using System.Data.SqlClient; namespace Evolve.Tests.Infrastructure { public class SQLServerContainer : IDbContainer { public const string ExposedPort = "1433"; public const string HostPort = "1433"; public const string DbName = "master"; public const string D...
mit
C#
a13154403ef11691a927e4f94670ab870148799d
Add R# comment
wiyonoaten/MvvmLight2Mvx,wiyonoaten/MvvmLight2Mvx
GalaSoft.MvvmLight/Portable/GalaSoft.MvvmLight/Helpers/FeatureDetection.cs
GalaSoft.MvvmLight/Portable/GalaSoft.MvvmLight/Helpers/FeatureDetection.cs
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; namespace GalaSoft.MvvmLight.Helpers { static class FeatureDetection { private static bool? _isPrivateReflectionSupported; public static bool IsPrivateReflectionSupported...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; namespace GalaSoft.MvvmLight.Helpers { static class FeatureDetection { private static bool? _isPrivateReflectionSupported; public static bool IsPrivateReflectionSupported...
apache-2.0
C#
660bc7b604da4909b88a1fa5ef8df7a1c81aef89
Add docs
wvdd007/roslyn,diryboy/roslyn,CyrusNajmabadi/roslyn,physhi/roslyn,CyrusNajmabadi/roslyn,eriawan/roslyn,shyamnamboodiripad/roslyn,jasonmalinowski/roslyn,KevinRansom/roslyn,weltkante/roslyn,sharwell/roslyn,diryboy/roslyn,shyamnamboodiripad/roslyn,sharwell/roslyn,dotnet/roslyn,physhi/roslyn,mavasani/roslyn,weltkante/rosly...
src/Features/Core/Portable/ReassignedVariable/IReassignedVariableService.cs
src/Features/Core/Portable/ReassignedVariable/IReassignedVariableService.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#
ac1d96ab1e1670582ef996c4ee7b5135f1779df6
remove unneeded code.
mps/Sweetness
Sweetness/Ints.cs
Sweetness/Ints.cs
using System.Collections.Generic; namespace Sweetness { public static class Ints { public static IEnumerable<int> To(this int from, int to) { if (to >= from) { for (var i = from; i <= to; i++) { yield return i; ...
using System; using System.Collections.Generic; namespace Sweetness { public static class Ints { public static IEnumerable<int> To(this int from, int to) { if (to >= from) { for (var i = from; i <= to; i++) { yield ret...
mit
C#
968f2ac9670d8407c319396b75d4885f56ccbc06
Set version number to 1.8.0.1
terrajobst/xsddoc
Source/CommonAssemblyInfo.cs
Source/CommonAssemblyInfo.cs
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCopyright("Copyright 2009 Immo Landwerth")] [assembly: AssemblyCompany("Immo Landwerth")] [assembly: AssemblyProduct("XML Schema Documenter")] [assembly: CLSCompliant(false)] [assembly: C...
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCopyright("Copyright 2009 Immo Landwerth")] [assembly: AssemblyCompany("Immo Landwerth")] [assembly: AssemblyProduct("XML Schema Documenter")] [assembly: CLSCompliant(false)] [assembly: C...
mit
C#
cee2c331a8ba92457e50de56279f13f68c80f6c4
optimize usings
ifilipenko/Building-Blocks,ifilipenko/Building-Blocks,ifilipenko/Building-Blocks
src/BuildingBlocks.Store.RavenDB.TestHelpers.SpecFlow/RavenDb.cs
src/BuildingBlocks.Store.RavenDB.TestHelpers.SpecFlow/RavenDb.cs
using Raven.Client; namespace BuildingBlocks.Store.RavenDB.TestHelpers.SpecFlow { public static class RavenDb { private static IDocumentSession _currentSession; private static IStorageSession _currentStorageSession; public static IDocumentStore Store { get; set; } ...
using System; using System.Collections.Generic; using System.Text; using Raven.Client; namespace BuildingBlocks.Store.RavenDB.TestHelpers.SpecFlow { public static class RavenDb { private static IDocumentSession _currentSession; private static IStorageSession _currentStorageSession; ...
apache-2.0
C#
9afb1ce6ae27c5120341484a6b0a7551905d5079
Clarify comment
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Components/Components/src/Rendering/ParameterViewLifetime.cs
src/Components/Components/src/Rendering/ParameterViewLifetime.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; namespace Microsoft.AspNetCore.Components.Rendering { internal readonly struct ParameterViewLifetime { private readonly R...
// 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; namespace Microsoft.AspNetCore.Components.Rendering { internal readonly struct ParameterViewLifetime { private readonly R...
apache-2.0
C#
e3d2a3d2c37818c30293832fe79ad7d43b022ed8
Update BitmapLabel.cs
Meragon/Unity-WinForms
System/Windows/Forms/BitmapLabel.cs
System/Windows/Forms/BitmapLabel.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using UnityEngine; using Color = System.Drawing.Color; namespace System.Windows.Forms { /// <summary> /// Less allocation, slower baking. /// Multiline not supported yet. /// </summary> publ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using DiaLib.Blocks.Signal_Manipulation; using UnityEngine; using Color = System.Drawing.Color; namespace System.Windows.Forms { /// <summary> /// Less allocation, slower baking. /// Multiline not s...
mit
C#
3d16fc5eca01a8d52c15b8fd6645fe0a1939dfc6
Fix list to use new deviceId
yuqiqian/azure-mobile-services,erichedstrom/azure-mobile-services,baumatron/azure-mobile-services-baumatron,ysxu/azure-mobile-services,cmatskas/azure-mobile-services,shrishrirang/azure-mobile-services,dcristoloveanu/azure-mobile-services,shrishrirang/azure-mobile-services,Azure/azure-mobile-services,YOTOV-LIMITED/azure...
sdk/Managed/src/Microsoft.WindowsAzure.MobileServices.WindowsStore/Push/PushHttpClient.cs
sdk/Managed/src/Microsoft.WindowsAzure.MobileServices.WindowsStore/Push/PushHttpClient.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ using System; using System.Net.Http; using Newtonsoft.Json.Linq; namespace Microsoft.WindowsAzure.MobileServices { using Sys...
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ using System; using System.Net.Http; using Newtonsoft.Json.Linq; namespace Microsoft.WindowsAzure.MobileServices { using Sys...
apache-2.0
C#
0916191040adee4a5183b0ae4978e9f66764a5c8
remove propagate event
ViktorHofer/corefx,YoupHulsebos/corefx,tijoytom/corefx,Jiayili1/corefx,stephenmichaelf/corefx,Ermiar/corefx,alexperovich/corefx,Petermarcu/corefx,gkhanna79/corefx,DnlHarvey/corefx,Petermarcu/corefx,gkhanna79/corefx,shimingsg/corefx,ericstj/corefx,rahku/corefx,gkhanna79/corefx,wtgodbe/corefx,ericstj/corefx,stone-li/core...
src/System.Net.Http/src/System/Net/Http/DiagnosticsHandlerLoggingStrings.cs
src/System.Net.Http/src/System/Net/Http/DiagnosticsHandlerLoggingStrings.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. namespace System.Net.Http { /// <summary> /// Defines names of DiagnosticListener and Write events for WinH...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace System.Net.Http { /// <summary> /// Defines names of DiagnosticListener and Write events for WinH...
mit
C#
6186541400ef1056d86fc54f269e67b8a209f966
Handle empty files in archives
virtuallynaked/virtually-naked,virtuallynaked/virtually-naked
Viewer/src/archive/PackedArchive.cs
Viewer/src/archive/PackedArchive.cs
using System; using System.IO; using System.IO.MemoryMappedFiles; public class PackedArchiveFileRecord { public string Name { get; } public long Offset { get; } public long Size { get; } public PackedArchiveFileRecord(string name, long offset, long size) { Name = name; Offset = offset; Size = size; } } pu...
using System; using System.IO; using System.IO.MemoryMappedFiles; public class PackedArchiveFileRecord { public string Name { get; } public long Offset { get; } public long Size { get; } public PackedArchiveFileRecord(string name, long offset, long size) { Name = name; Offset = offset; Size = size; } } pu...
mit
C#
4299f82161dbd0e1ac4737ead8b86d9485df64db
Implement some basic AI
iridinite/shiftdrive
Client/AIShip.cs
Client/AIShip.cs
/* ** Project ShiftDrive ** (C) Mika Molenkamp, 2016. */ using System.Collections.Generic; using Microsoft.Xna.Framework; namespace ShiftDrive { /// <summary> /// Represents an AI-controlled ship. /// </summary> internal sealed class AIShip : Ship { private readonly List<AITask> brain; ...
/* ** Project ShiftDrive ** (C) Mika Molenkamp, 2016. */ namespace ShiftDrive { /// <summary> /// Represents an AI-controlled ship. /// </summary> internal sealed class AIShip : Ship { public AIShip() { type = ObjectType.AIShip; } public override void Update(Game...
bsd-3-clause
C#
3def04a5e31157f6062a2c8ae8ef8b482a9241d0
Clean code
fredatgithub/UsefulFunctions
ConsoleAppCalendar/Program.cs
ConsoleAppCalendar/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleAppCalendar { class Program { static void Main(string[] args) { Action<string> display = Console.WriteLine; display("Display calendar"); display("Type exit...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleAppCalendar { class Program { static void Main(string[] args) { Action<string> display = Console.WriteLine; display("Display calendar"); display("Type exit...
mit
C#
9727bbde12587a3cb791b1c362224cae022f7c6b
Rename Pascal case
inabeel/bags-client,Zoltu/bags-client,arpitux/bags-client,arpitux/bags-client,inabeel/bags-client,inabeel/bags-client,arpitux/bags-client,inabeel/bags-client,Zoltu/bags-client,arpitux/bags-client,Zoltu/bags-client,Zoltu/bags-client
Controllers/HomeController.cs
Controllers/HomeController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; namespace Zoltu.Bags.Client.Controllers { public class HomeController : Controller { public IActionResult Index() { ViewData["url"] = "https:...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; namespace Zoltu.Bags.Client.Controllers { public class HomeController : Controller { public IActionResult Index() { ViewData["url"] = "https:...
cc0-1.0
C#
962fe12cee0b1fb4dc9e432e4cbbeda44016c627
Add non-payload reducer test
austinmao/reduxity,austinmao/reduxity
Assets/Scripts/ReduxZenjectExample/Tests/Editor/Redux/Modules/CharacterLook.test.cs
Assets/Scripts/ReduxZenjectExample/Tests/Editor/Redux/Modules/CharacterLook.test.cs
using UnityEngine; using NUnit.Framework; using Zenject; using Moq; namespace Reduxity.Example.Zenject.CharacterLook.Tests { [TestFixture] public class CharacterLookTest : ZenjectUnitTestFixture { DiContainer container_; [SetUp] public void Setup() { container_ = new DiContainer(); container_.Bind<Cha...
using UnityEngine; using NUnit.Framework; using Zenject; using Moq; namespace Reduxity.Example.Zenject.CharacterLook.Tests { [TestFixture] public class CharacterLookTest : ZenjectUnitTestFixture { DiContainer container_; [SetUp] public void Setup() { container_ = new DiContainer(); container_.Bind<Cha...
mit
C#
3fa73a90d4b68330993fd65a0bcf0c789c531797
fix EOL in test asset
svick/cli,harshjain2/cli,livarcocc/cli-1,EdwardBlair/cli,nguerrera/cli,nguerrera/cli,jonsequitur/cli,blackdwarf/cli,jonsequitur/cli,Faizan2304/cli,dasMulli/cli,johnbeisner/cli,blackdwarf/cli,svick/cli,dasMulli/cli,johnbeisner/cli,mlorbetske/cli,blackdwarf/cli,svick/cli,Faizan2304/cli,dasMulli/cli,ravimeda/cli,johnbeisn...
TestAssets/TestProjects/TestAppWithExplicitIncludeGlob/Program.cs
TestAssets/TestProjects/TestAppWithExplicitIncludeGlob/Program.cs
using System; class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } }
using System; class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } }
mit
C#
c710258111ab31d7f7513be20424902a0eaa2d6c
check if villager is destroyed in OnTriggerEnter
engagementgamelab/hygiene-with-chhota-bheem,engagementgamelab/hygiene-with-chhota-bheem,engagementgamelab/hygiene-with-chhota-bheem
Assets/Scripts/VillagerObject.cs
Assets/Scripts/VillagerObject.cs
using System.Collections; using UnityEngine; using Random = UnityEngine.Random; public class VillagerObject : ArchetypeMove { public ParticleSystem Particles; // public RawImage healthFill; private Camera _mainCamera; private SpriteRenderer _villagerRenderer; private Sprite[] _spriteFrames; private bool _spawn...
using System.Collections; using UnityEngine; using Random = UnityEngine.Random; public class VillagerObject : ArchetypeMove { public ParticleSystem Particles; // public RawImage healthFill; private Camera _mainCamera; private SpriteRenderer _villagerRenderer; private Sprite[] _spriteFrames; private bool _spawn...
mit
C#
39e9d76348a14f7458a55952f8325d1b107f37ea
remove validation
EmilMitev/ASP.NET-MVC-Course-Project,EmilMitev/ASP.NET-MVC-Course-Project,EmilMitev/ASP.NET-MVC-Course-Project
Source/StackFaceSystem/Web/StackFaceSystem.Web/ViewModels/Account/LoginViewModel.cs
Source/StackFaceSystem/Web/StackFaceSystem.Web/ViewModels/Account/LoginViewModel.cs
namespace StackFaceSystem.Web.ViewModels.Account { using System.ComponentModel.DataAnnotations; public class LoginViewModel { [Required] [Display(Name = "Username")] public string Username { get; set; } [Required] [DataType(DataType.Password)] [Display(Name...
namespace StackFaceSystem.Web.ViewModels.Account { using System.ComponentModel.DataAnnotations; public class LoginViewModel { [Required] [Display(Name = "Username")] [EmailAddress] public string Username { get; set; } [Required] [DataType(DataType.Password)...
mit
C#
ceab90786ed8eb4d5905a21575b3cdcaed7edbf1
Fix Umbrella's movement
NitorInc/NitoriWare,uulltt/NitoriWare,Barleytree/NitoriWare,Barleytree/NitoriWare,NitorInc/NitoriWare,plrusek/NitoriWare
Assets/Resources/Microgames/RemiCover/Scripts/RemiCover_UmbrellaBehaviour.cs
Assets/Resources/Microgames/RemiCover/Scripts/RemiCover_UmbrellaBehaviour.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; public class RemiCover_UmbrellaBehaviour : MonoBehaviour { public float verticalPosition; // Use this for initialization void Start () { Cursor.visible = false; } // Update is called once per frame void Update(...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class RemiCover_UmbrellaBehaviour : MonoBehaviour { public float topLimit; public float bottomLimit; // Use this for initialization void Start () { Cursor.visible = false; } // Update is called once per...
mit
C#
ed3215eb663fdbac0d5523c57ddf391cd0bc772f
Add constructors to InvalidIdentifierAssignment to comply to the .net pattern.
tjaskula/bedbrebo,tjaskula/bedbrebo
CSharp/src/Domain/BedBrebo.Domain.Core/Exceptions/InvalidIdentifierAssignment.cs
CSharp/src/Domain/BedBrebo.Domain.Core/Exceptions/InvalidIdentifierAssignment.cs
using System; using System.Runtime.Serialization; namespace BedBrebo.Domain.Core.Exceptions { public class InvalidIdentifierAssignment : Exception { public InvalidIdentifierAssignment(string message) : base(message) { } public InvalidIdentifierAssignment(string message, Excepti...
using System; namespace BedBrebo.Domain.Core.Exceptions { public class InvalidIdentifierAssignment : Exception { public InvalidIdentifierAssignment(string message) : base(message) { } } }
mit
C#
7e0db1f9e91f5482a0707dd91806e5f0cd04496a
update version
Appleseed/base,Appleseed/base
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Properties/AssemblyInfo.cs
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/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("App...
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("App...
apache-2.0
C#
ddc72ee4063e8816462506588add728a68837cfa
add blob type
DinoV/azure-sdk-tools,akromm/azure-sdk-tools,akromm/azure-sdk-tools,johnkors/azure-sdk-tools,antonba/azure-sdk-tools,markcowl/azure-sdk-tools,akromm/azure-sdk-tools,markcowl/azure-sdk-tools,antonba/azure-sdk-tools,akromm/azure-sdk-tools,antonba/azure-sdk-tools,antonba/azure-sdk-tools,Madhukarc/azure-sdk-tools,Madhukarc...
WindowsAzurePowershell/src/ServiceManagement/Storage/Blob/ResourceModel/AzureStorageBlob.cs
WindowsAzurePowershell/src/ServiceManagement/Storage/Blob/ResourceModel/AzureStorageBlob.cs
// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apa...
// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apa...
apache-2.0
C#
eff433e6567810c1795a2d5fff890653db1fc819
Update comment
0xd4d/iced,0xd4d/iced,0xd4d/iced,0xd4d/iced,0xd4d/iced
Iced/Intel/ConstantOffsets.cs
Iced/Intel/ConstantOffsets.cs
/* Copyright (C) 2018 de4dot@gmail.com This file is part of Iced. Iced is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any lat...
/* Copyright (C) 2018 de4dot@gmail.com This file is part of Iced. Iced is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any lat...
mit
C#
7e2e8f6593c3a45c94de95eacf2ec9fa0bd31a78
fix culture
klinkby/klinkby.payments
Properties/CommonAssemblyInfo.cs
Properties/CommonAssemblyInfo.cs
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; #if DEBUG [assembly: AssemblyConfiguration("Debug")] #else [assembly: AssemblyConfiguration("Release")] #endif [assembly: AssemblyCompany("Mads Klinkby")] [assembly: AssemblyProduct("Klinkby")] [assembly: AssemblyCo...
using System; using System.Reflection; using System.Runtime.InteropServices; #if DEBUG [assembly: AssemblyConfiguration("Debug")] #else [assembly: AssemblyConfiguration("Release")] #endif [assembly: AssemblyCompany("Mads Klinkby")] [assembly: AssemblyProduct("Klinkby")] [assembly: AssemblyCopyright("Copyright © Mad...
mit
C#
bbb4b412fff0d3e6a61a6ef42f1349f1cd0316da
Use newly introduced autofac's SetAutofacLifetimeScope method to pass autofac scope from asp.net core pipeline to owin pipeline
bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework
src/Server/Bit.OwinCore/Middlewares/AspNetCoreAutofacDependencyInjectionMiddlewareConfiguration.cs
src/Server/Bit.OwinCore/Middlewares/AspNetCoreAutofacDependencyInjectionMiddlewareConfiguration.cs
using Autofac; using Autofac.Integration.Owin; using Bit.Owin.Contracts; using Bit.Owin.Middlewares; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Owin; using Owin; using System.Threading.Tasks; namespace Bit.OwinCore.Middlewares { public class AspNetCoreAutofacD...
using Autofac; using Autofac.Integration.Owin; using Bit.Owin.Contracts; using Bit.Owin.Middlewares; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Owin; using Owin; using System; using System.Reflection; using System.Threading.Tasks; namespace Bit.OwinCore.Middleware...
mit
C#
0e20fc0eb1057f784d661d613f7963454a2fa8ee
Rename usage
phaetto/serviceable-objects
Serviceable.Objects/Composition/Graph/Events/GraphFlowEventPushControlApplyCommandInsteadOfEvent.cs
Serviceable.Objects/Composition/Graph/Events/GraphFlowEventPushControlApplyCommandInsteadOfEvent.cs
namespace Serviceable.Objects.Composition.Graph.Events { using System; using System.Collections.Generic; using System.Linq; using Microsoft.CSharp.RuntimeBinder; public sealed class GraphFlowEventPushControlApplyCommandInsteadOfEvent : IGraphFlowEventPushControl { private readonly dyna...
namespace Serviceable.Objects.Composition.Graph.Events { using System; using System.Collections.Generic; using System.Linq; using Microsoft.CSharp.RuntimeBinder; public sealed class GraphFlowEventPushControlApplyCommandInsteadOfEvent : IGraphFlowEventPushControl { private readonly dyna...
mit
C#
3aae5cb4fa98314112bf335815c17f16b1c3ce27
Fix one more test.
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
test/Microsoft.AspNet.Mvc.ModelBinding.Test/ValueProviders/FormValueProviderFactoryTests.cs
test/Microsoft.AspNet.Mvc.ModelBinding.Test/ValueProviders/FormValueProviderFactoryTests.cs
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #if NET45 using System.Collections.Generic; using System.Globalization; using System.Threading.Tasks; using Microsoft.AspNet.Http; usin...
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #if NET45 using System.Collections.Generic; using System.Globalization; using System.Threading.Tasks; using Microsoft.AspNet.Http; usin...
apache-2.0
C#
73f75bed0a7d50175547e2425c4120fc363a5270
Fix in rebar contribution to shear strength
Wosad/Wosad.Dynamo
Wosad/Concrete/ACI318/Section/ShearAndTorsion/OneWayShear/OneWayShearStrengthProvidedByRebar.cs
Wosad/Concrete/ACI318/Section/ShearAndTorsion/OneWayShear/OneWayShearStrengthProvidedByRebar.cs
#region Copyright /*Copyright (C) 2015 Wosad 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 applicable law or a...
#region Copyright /*Copyright (C) 2015 Wosad 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 applicable law or a...
apache-2.0
C#
4e955324de40a614e8f2d3d20f67ece9d91e3e5f
Fix uri templates in season requests.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Seasons/TraktSeasonCommentsRequest.cs
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Seasons/TraktSeasonCommentsRequest.cs
namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Seasons { using Enums; using Objects.Basic; using Objects.Get.Shows.Seasons; using System.Collections.Generic; internal class TraktSeasonCommentsRequest : TraktGetByIdSeasonRequest<TraktPaginationListResult<TraktSeasonComment>, TraktSeasonComment...
namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Seasons { using Enums; using Objects.Basic; using Objects.Get.Shows.Seasons; using System.Collections.Generic; internal class TraktSeasonCommentsRequest : TraktGetByIdSeasonRequest<TraktPaginationListResult<TraktSeasonComment>, TraktSeasonComment...
mit
C#
a086d47328acb3c832f7ddeac9a6b8df4707e08a
Fix CodeGeneratorTask to use fullpath.
nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke
source/Nuke.CodeGeneration/CodeGeneratorTask.cs
source/Nuke.CodeGeneration/CodeGeneratorTask.cs
// Copyright Matthias Koch 2017. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.IO; using System.Linq; using JetBrains.Annotations; using Microsoft.Build.Framework; using Nuke.Common.Git; using Nuke.Common.IO; using Nuke.Core; using Nuke.Core...
// Copyright Matthias Koch 2017. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.IO; using System.Linq; using JetBrains.Annotations; using Microsoft.Build.Framework; using Nuke.Common.Git; using Nuke.Common.IO; using Nuke.Core; using Nuke.Core...
mit
C#
71fda0e4821e3d8c86ad1237a585d8339c24c7b7
fix guid not being serialized in file record graphs types'
SnowflakePowered/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake
src/Snowflake.Support.Remoting.GraphQl/Types/Record/FileRecordGraphType.cs
src/Snowflake.Support.Remoting.GraphQl/Types/Record/FileRecordGraphType.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using GraphQL.Conventions.Adapters.Types; using GraphQL.Types; using Snowflake.Records.File; namespace Snowflake.Support.Remoting.GraphQl.Types.Record { public class FileRecordGraphType : ObjectGraphType<IFileRecord> { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using GraphQL.Conventions.Adapters.Types; using GraphQL.Types; using Snowflake.Records.File; namespace Snowflake.Support.Remoting.GraphQl.Types.Record { public class FileRecordGraphType : ObjectGraphType<IFileRecord> { ...
mpl-2.0
C#
6653721c4b0a32875254ca5815817bb0b5647720
Fix bug which causes unnecessary sorts
terrajobst/nquery-vnext
src/NQuery/Optimization/AggregationPhysicalOperatorChooser.cs
src/NQuery/Optimization/AggregationPhysicalOperatorChooser.cs
using System; using System.Collections; using System.Collections.Immutable; using System.Linq; using NQuery.Binding; namespace NQuery.Optimization { internal sealed class AggregationPhysicalOperatorChooser : BoundTreeRewriter { protected override BoundRelation RewriteGroupByAndAggregationRelation(Boun...
using System; using System.Collections; using System.Collections.Immutable; using System.Linq; using NQuery.Binding; namespace NQuery.Optimization { internal sealed class AggregationPhysicalOperatorChooser : BoundTreeRewriter { protected override BoundRelation RewriteGroupByAndAggregationRelation(Boun...
mit
C#
28f3bc840f6034249404c23fd039cf4436cd0492
Support `Status` filter when listing Terminal `Reader`s
stripe/stripe-dotnet
src/Stripe.net/Services/Terminal/Readers/ReaderListOptions.cs
src/Stripe.net/Services/Terminal/Readers/ReaderListOptions.cs
namespace Stripe.Terminal { using System; using Newtonsoft.Json; public class ReaderListOptions : ListOptions { /// <summary> /// A location ID to filter the response list to only readers at the specific location. /// </summary> [JsonProperty("location")] public ...
namespace Stripe.Terminal { using System; using Newtonsoft.Json; public class ReaderListOptions : ListOptions { [JsonProperty("location")] public string Location { get; set; } [Obsolete("This feature has been deprecated and should not be used moving forward.")] [JsonPro...
apache-2.0
C#
7f3a72aef72c8feff544f8647153081069fe7e7e
fix for missing common logging reference
Fody/Anotar,distantcam/Anotar,modulexcite/Anotar,mstyura/Anotar
CommonLoggingFody/ReferenceFinder.cs
CommonLoggingFody/ReferenceFinder.cs
using System; using System.Linq; using Mono.Cecil; public partial class ModuleWeaver { public AssemblyDefinition CommonLoggingReference; public AssemblyDefinition CommonLoggingCoreReference; void FindReference() { CommonLoggingReference = GetReference("Common.Logging", "Common.Logging.Portable"); ...
using System; using System.Linq; using Mono.Cecil; public partial class ModuleWeaver { public AssemblyDefinition CommonLoggingReference; public AssemblyDefinition CommonLoggingCoreReference; void FindReference() { CommonLoggingReference = GetReference("Common.Logging", "Common.Logging.Portable"); ...
mit
C#
da679084117f7e9971ba98f5b959960ecd533503
Change Version to 1.0.0.1
bstockus/sting
Sting/Properties/AssemblyInfo.cs
Sting/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
apache-2.0
C#
d2ad6142a15f6fc2390cea16a32f443d57e8bf2b
Update AutoFitMode.cs
wieslawsoltes/MatrixPanAndZoomDemo,PanAndZoom/PanAndZoom,PanAndZoom/PanAndZoom,wieslawsoltes/PanAndZoom,wieslawsoltes/PanAndZoom
src/Avalonia.Controls.PanAndZoom/AutoFitMode.cs
src/Avalonia.Controls.PanAndZoom/AutoFitMode.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. namespace Avalonia.Controls.PanAndZoom { /// <summary> /// Specifies auto-fit modes. /// </summary> public enum AutoFitMode { /// <sum...
// 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. namespace Avalonia.Controls.PanAndZoom { /// <summary> /// /// </summary> public enum AutoFitMode { /// <summary> /// ...
mit
C#
03231583671f99cd807c8c90b87c39d7d9aa2fb7
Fix GatewayRateLimiter not waiting long enough
BundledSticksInkorperated/Discore
src/Discore/WebSocket/Net/GatewayRateLimiter.cs
src/Discore/WebSocket/Net/GatewayRateLimiter.cs
using System; using System.Threading; using System.Threading.Tasks; namespace Discore.WebSocket.Net { class GatewayRateLimiter { public int ResetTimeSeconds => resetTime.Seconds; readonly TimeSpan resetTime; readonly int maxInvokes; DateTime resetAt; int invokesLeft; ...
using System; using System.Threading; using System.Threading.Tasks; namespace Discore.WebSocket.Net { class GatewayRateLimiter { public int ResetTimeSeconds => resetTime.Seconds; readonly TimeSpan resetTime; readonly int maxInvokes; DateTime resetAt; int invokesLeft; ...
mit
C#
67065b66861d568f3e2d5ce0762221644478cff7
improve speed of fetching table rows
mvbalaw/FluentWebUITesting
src/FluentWebUITesting/Controls/TableWrapper.cs
src/FluentWebUITesting/Controls/TableWrapper.cs
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using FluentWebUITesting.Extensions; using OpenQA.Selenium; namespace FluentWebUITesting.Controls { public class TableWrapper : ControlWrapperBase { private readonly IWebElement _table; public TableWrapper...
using System; using System.Collections.Generic; using System.Linq; using FluentWebUITesting.Extensions; using OpenQA.Selenium; namespace FluentWebUITesting.Controls { public class TableWrapper : ControlWrapperBase { private readonly IWebElement _table; public TableWrapper(IWebElement table, string howFound) ...
mit
C#
690896198164f69fd536d4a215597504ce59e07f
Bump up version number
hendryluk/cormo,hendryluk/cormo
src/GlobalAssemblyInfo.cs
src/GlobalAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Cormo")] [assembly: AssemblyCopyright("Copyright © 2015")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: AssemblyVersion(AssemblyConstants.VERSION)] [assembly: AssemblyFileVersion(AssemblyConsta...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Cormo")] [assembly: AssemblyCopyright("Copyright © 2015")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Version information ...
mit
C#
010db8968fa664cb7d0a44ec0da727c3a9776773
Adjust wording of xmldoc
ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,NeoAdonis/osu,smoogipoo/osu
osu.Game/Rulesets/Difficulty/Preprocessing/DifficultyHitObject.cs
osu.Game/Rulesets/Difficulty/Preprocessing/DifficultyHitObject.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.Objects; namespace osu.Game.Rulesets.Difficulty.Preprocessing { /// <summary> /// Wraps a <see cref="HitObject"/> and provides additional...
// 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.Objects; namespace osu.Game.Rulesets.Difficulty.Preprocessing { /// <summary> /// Wraps a <see cref="HitObject"/> and provides additional...
mit
C#
602d557d58c833b10d0986f78e242dfc0424f228
fix missing parameter
RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,SnowflakePowered/snowflake
src/Snowflake.Support.Remoting.GraphQl/Containers/ExtensibilityQueryContainer.cs
src/Snowflake.Support.Remoting.GraphQl/Containers/ExtensibilityQueryContainer.cs
using System.Linq; using Snowflake.Configuration; using Snowflake.Execution.Extensibility; using Snowflake.Execution.Saving; using Snowflake.Input; using Snowflake.Input.Device; using Snowflake.Loader; using Snowflake.Records.Game; using Snowflake.Scraping; using Snowflake.Scraping.Extensibility; using Snowflake.Servi...
using System.Linq; using Snowflake.Configuration; using Snowflake.Execution.Extensibility; using Snowflake.Execution.Saving; using Snowflake.Input; using Snowflake.Input.Device; using Snowflake.Loader; using Snowflake.Records.Game; using Snowflake.Scraping; using Snowflake.Scraping.Extensibility; using Snowflake.Servi...
mpl-2.0
C#
5cf947c106756a5bbc078e36a7195b79cee459af
Remove Socket.InnerSafeCloseSocket (dotnet/corefx#41888)
poizan42/coreclr,cshung/coreclr,cshung/coreclr,poizan42/coreclr,poizan42/coreclr,poizan42/coreclr,poizan42/coreclr,cshung/coreclr,cshung/coreclr,cshung/coreclr,poizan42/coreclr,cshung/coreclr
src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.CancelIoEx.cs
src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.CancelIoEx.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.Runtime.InteropServices; using System.Threading; internal static partial class Interop {...
// 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.Runtime.InteropServices; using System.Threading; internal static partial class Interop { internal ...
mit
C#
d99faf71f290166b6514e669527c0a44606f6f6a
Add more UnitTests for Line2D
ProgTrade/SharpMath
SharpMath.Tests/Line2DTest.cs
SharpMath.Tests/Line2DTest.cs
using Microsoft.VisualStudio.TestTools.UnitTesting; using SharpMath.Geometry; namespace SharpMath.Tests { [TestClass] public class Line2DTest { [TestMethod] public void CanCreateLineFromPoints() { var line = Line2D.FromPoints(new Point2D(0, 2), new Point2D(3, 1)); ...
using System; using System.Text; using System.Collections.Generic; using Microsoft.VisualStudio.TestTools.UnitTesting; using SharpMath.Geometry; namespace SharpMath.Tests { [TestClass] public class Line2DTest { [TestMethod] public void CanFindIntersectionPoint() { // 0....
mit
C#
c533e4cf675a0f8300034f5086e22a7604750225
Add event hub connection property
Azure/azure-webjobs-sdk,Azure/azure-webjobs-sdk
src/Microsoft.Azure.WebJobs.ServiceBus/EventHubs/EventHubTriggerAttribute.cs
src/Microsoft.Azure.WebJobs.ServiceBus/EventHubs/EventHubTriggerAttribute.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.Description; namespace Microsoft.Azure.WebJobs.ServiceBus { /// <summary> /// Setup an 'trigger' on a parameter to...
// 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.Description; namespace Microsoft.Azure.WebJobs.ServiceBus { /// <summary> /// Setup an 'trigger' on a parameter to...
mit
C#
068df46673eff39d9961acdf59fd96356bbf4063
Fix invalid xml in XmlDocComment of PackageVersionRequest.cs
OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn
src/OmniSharp.Abstractions/Models/v1/PackageVersion/PackageVersionRequest.cs
src/OmniSharp.Abstractions/Models/v1/PackageVersion/PackageVersionRequest.cs
using System.Collections.Generic; using OmniSharp.Mef; namespace OmniSharp.Models.PackageVersion { [OmniSharpEndpoint(OmniSharpEndpoints.PackageVersion, typeof(PackageVersionRequest), typeof(PackageVersionResponse))] public class PackageVersionRequest : IRequest { /// <summary> /// The path...
using System.Collections.Generic; using OmniSharp.Mef; namespace OmniSharp.Models.PackageVersion { [OmniSharpEndpoint(OmniSharpEndpoints.PackageVersion, typeof(PackageVersionRequest), typeof(PackageVersionResponse))] public class PackageVersionRequest : IRequest { /// <summary> /// The path...
mit
C#
a4bb225f103bbbcbbeb1fcc5d9d7b3f06b758e71
Throw an exception if the Redis connection is not open
vendettamit/compilify,vendettamit/compilify,jrusbatch/compilify,appharbor/ConsolR,appharbor/ConsolR,jrusbatch/compilify
Web/EndPoints/ExecuteEndPoint.cs
Web/EndPoints/ExecuteEndPoint.cs
using System; using System.Threading.Tasks; using System.Web.Mvc; using BookSleeve; using SignalR; namespace Compilify.Web.EndPoints { public class ExecuteEndPoint : PersistentConnection { /// <summary> /// Handle messages sent by the client.</summary> protected override Ta...
using System; using System.Threading.Tasks; using System.Web.Mvc; using BookSleeve; using SignalR; namespace Compilify.Web.EndPoints { public class ExecuteEndPoint : PersistentConnection { /// <summary> /// Handle messages sent by the client.</summary> protected override Ta...
mit
C#
9f8a1e529641b3b97a967bdc6ac7ad704cd51c8f
Fix TestGrain
OrleansContrib/OrleansDashboard,OrleansContrib/OrleansDashboard,OrleansContrib/OrleansDashboard
Tests/TestGrains/TestGrain.cs
Tests/TestGrains/TestGrain.cs
using System; using System.Threading; using System.Threading.Tasks; using Orleans; using Orleans.Runtime; namespace TestGrains { public interface ITestGrain : IGrainWithIntegerKey { Task ExampleMethod1(); Task ExampleMethod2(); } public class TestGrain : Grain, ITestGrain, IRemindabl...
using System; using System.Threading; using System.Threading.Tasks; using Orleans; using Orleans.Runtime; namespace TestGrains { public interface ITestGrain : IGrainWithIntegerKey { Task ExampleMethod1(); Task ExampleMethod2(); Task<int> ExampleMethod3(); } public class Test...
mit
C#
28f3f005e451aca980b56325fab805bd01f285ab
Remove protocol from licenses view.
fuyuno/Norma
Norma/ViewModels/LibraryViewModel.cs
Norma/ViewModels/LibraryViewModel.cs
using System.Diagnostics; using System.Windows.Input; using Norma.Models; using Norma.ViewModels.Internal; using Prism.Commands; namespace Norma.ViewModels { internal class LibraryViewModel : ViewModel { private readonly Library _library; public string Name => _library.Name; public...
using System.Diagnostics; using System.Windows.Input; using Norma.Models; using Norma.ViewModels.Internal; using Prism.Commands; namespace Norma.ViewModels { internal class LibraryViewModel : ViewModel { private readonly Library _library; public string Name => _library.Name; public...
mit
C#
e488aa993386c58be05a4992dfc6426202504343
Fix build - forgot to use System in ReadOnlyListWrapper
alexshtf/autodiff
AutoDiff/Core/AutoDiff/ReadOnlyListWrapper.cs
AutoDiff/Core/AutoDiff/ReadOnlyListWrapper.cs
using System; using System.Collections; using System.Collections.Generic; namespace AutoDiff { #if (!NETSTANDARD1_0 && !NETSTANDARD1_1 && !NETSTANDARD1_2 && !NETSTANDARD1_3 && !NETSTANDARD1_4 && !NETSTANDARD1_5 && !NETSTANDARD1_6) [Serializable] #endif internal class ReadOnlyListWrapper<T> : IReadOnly...
using System.Collections; using System.Collections.Generic; namespace AutoDiff { #if (!NETSTANDARD1_0 && !NETSTANDARD1_1 && !NETSTANDARD1_2 && !NETSTANDARD1_3 && !NETSTANDARD1_4 && !NETSTANDARD1_5 && !NETSTANDARD1_6) [Serializable] #endif internal class ReadOnlyListWrapper<T> : IReadOnlyList<T> { ...
mit
C#
3770e63d4ff6a5e7a464d3c39525f5a171b59a02
Set OpenCoffee as default test type
jamesmontemagno/Coffee-Filter,hoanganhx86/Coffee-Filter
CoffeeFilter.UITests.Shared/UITestsHelpers.cs
CoffeeFilter.UITests.Shared/UITestsHelpers.cs
using System; using System.ComponentModel; namespace CoffeeFilter.UITests.Shared { public static class UITestsHelpers { public static string XTCApiKey { get; } = "024b0d715a7e9c22388450cf0069cb19"; public static TestType SelectedTest { get; set; } public enum TestType { OpenCoffee = 0, NoConnect...
using System; using System.ComponentModel; namespace CoffeeFilter.UITests.Shared { public static class UITestsHelpers { public static string XTCApiKey { get; } = "024b0d715a7e9c22388450cf0069cb19"; public static TestType SelectedTest { get; set; } public enum TestType { NoConnection, ParseError,...
mit
C#
83a37ad0cdc0421ec8f2fded86c9ae2adbf3f78e
add characters parsing
neowutran/OpcodeSearcher
DamageMeter.Core/Heuristic/S_GET_USER_LIST.cs
DamageMeter.Core/Heuristic/S_GET_USER_LIST.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tera.Game.Messages; namespace DamageMeter.Heuristic { public class S_GET_USER_LIST : AbstractPacketHeuristic { public static S_GET_USER_LIST Instance => _instance ?? (_instance = n...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tera.Game.Messages; namespace DamageMeter.Heuristic { public class S_GET_USER_LIST : AbstractPacketHeuristic { public static S_GET_USER_LIST Instance => _instance ?? (_instance = n...
mit
C#
1f7b6b08c3fc2afcce6df2ec2acf2d831ae5f636
revert set mezzi db
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Persistence.MongoDB/GestioneComposizioneMezzi/SetComposizioneMezzi.cs
src/backend/SO115App.Persistence.MongoDB/GestioneComposizioneMezzi/SetComposizioneMezzi.cs
using MongoDB.Driver; using Persistence.MongoDB; using SO115App.API.Models.Classi.Composizione; using SO115App.Models.Servizi.Infrastruttura.Composizione; using System.Collections.Generic; using System.Threading.Tasks; namespace SO115App.Persistence.MongoDB.GestioneComposizioneMezzi { public class SetComposizione...
using MongoDB.Driver; using Persistence.MongoDB; using SO115App.API.Models.Classi.Composizione; using SO115App.Models.Servizi.Infrastruttura.Composizione; using System.Collections.Generic; using System.Threading.Tasks; namespace SO115App.Persistence.MongoDB.GestioneComposizioneMezzi { public class SetComposizione...
agpl-3.0
C#