commit stringlengths 40 40 | subject stringlengths 0 1.12k | message stringlengths 11 14.5k | repos stringlengths 8 11.5k | file_path stringlengths 6 191 | license stringclasses 12
values | unix_time int64 805M 1.66B | new_contents stringlengths 14 20M | old_contents stringlengths 1 20M |
|---|---|---|---|---|---|---|---|---|
ee65df9b722f30666488941d3c2473ed634c2ada | Treat JsonErrorCode.UnterminatedMultiLineComment as a warning. | Treat JsonErrorCode.UnterminatedMultiLineComment as a warning.
| PenguinF/sandra-three | Eutherion/Shared/Text/Json/JsonUnterminatedMultiLineCommentSyntax.cs | apache-2.0 | 1,588,936,028 | #region License
/*********************************************************************************
* JsonUnterminatedMultiLineCommentSyntax.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with t... | #region License
/*********************************************************************************
* JsonUnterminatedMultiLineCommentSyntax.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with t... |
fa4afb5fca18876786458880fae82c68ee2bd3e4 | Initialize line number margin for new empty files. | Initialize line number margin for new empty files.
| PenguinF/sandra-three | Sandra.UI/AppTemplate/SyntaxEditor.cs | apache-2.0 | 1,588,935,188 | #region License
/*********************************************************************************
* SyntaxEditor.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... | #region License
/*********************************************************************************
* SyntaxEditor.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... |
bd7d0c7d235f3127962dd548c75223335bf5461e | Only style what's visible, so Ctrl+End doesn't pass out on >200 kB files. | Only style what's visible, so Ctrl+End doesn't pass out on >200 kB files.
| PenguinF/sandra-three | Sandra.UI/AppTemplate/SyntaxEditor.cs | apache-2.0 | 1,588,934,915 | #region License
/*********************************************************************************
* SyntaxEditor.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... | #region License
/*********************************************************************************
* SyntaxEditor.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... |
4172812ad42eec343d4b46b4d7524e52542a1407 | [Fix] Fix for no value lol | [Fix] Fix for no value lol
| sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Net/WebHeaderCollection.cs | mit | 1,588,934,500 | #region License
/*
* WebHeaderCollection.cs
*
* This code is derived from WebHeaderCollection.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
* Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
* Copyright (c) 2012-... | #region License
/*
* WebHeaderCollection.cs
*
* This code is derived from WebHeaderCollection.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
* Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
* Copyright (c) 2012-... |
6539edf68948dfde3d482239e2777c7463e0259b | Display different indicators for different error levels. | Display different indicators for different error levels.
| PenguinF/sandra-three | Sandra.UI/AppTemplate/SyntaxEditor.cs | apache-2.0 | 1,588,934,331 | #region License
/*********************************************************************************
* SyntaxEditor.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... | #region License
/*********************************************************************************
* SyntaxEditor.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... |
a1d406cafcba51eb8ee179a0c75c0e919f37c2ca | fix: make --settings optional | fix: make --settings optional
| gasparnagy/berp,gasparnagy/berp,gasparnagy/berp | src/Berp/Program.cs | apache-2.0 | 1,588,934,150 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Berp.BerpGrammar;
using CommandLine;
using CommandLine.Text;
namespace Berp
{
public class Options
{
[Option('t', "template", Required = true, HelpText = "Template (.razor) file for generation.... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Berp.BerpGrammar;
using CommandLine;
using CommandLine.Text;
namespace Berp
{
public class Options
{
[Option('t', "template", Required = true, HelpText = "Template (.razor) file for generation.... |
beb3689ecc0d871816265dab65b5ba35a1385b3e | Updated OperationResult to be delegate-based. | Updated OperationResult to be delegate-based.
| DragonSpark/Framework,DragonSpark/Framework,DragonSpark/Framework | DragonSpark/Model/Operations/OperationResult.cs | mit | 1,588,934,117 | using DragonSpark.Model.Results;
using DragonSpark.Model.Selection;
using System;
using System.Threading.Tasks;
namespace DragonSpark.Model.Operations
{
public class OperationResult<TIn, TOut> : Select<TIn, ValueTask<TOut>>, IOperationResult<TIn, TOut>
{
public OperationResult(ISelect<TIn, ValueTask<TOut>> select... | using DragonSpark.Model.Results;
using DragonSpark.Model.Selection;
using System;
using System.Threading.Tasks;
namespace DragonSpark.Model.Operations
{
public class OperationResult<TIn, TOut> : Select<TIn, ValueTask<TOut>>, IOperationResult<TIn, TOut>
{
public OperationResult(ISelect<TIn, ValueTask<TOut>> select... |
115cbf25ae21c9f1a1d950f0783c875ff3bfd082 | Fix new sprites not getting spawned with correct passing state | Fix new sprites not getting spawned with correct passing state
| UselessToucan/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,smoogipooo/osu,peppy/osu-new,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,ppy/osu,peppy/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu | osu.Game.Rulesets.Taiko/Skinning/LegacyTaikoScroller.cs | mit | 1,588,932,919 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... |
1a31e1f10fe91f646e18b285c6312a4d8ebf86be | Also check for AffectsCombo to avoid too many passing switches | Also check for AffectsCombo to avoid too many passing switches
| NeoAdonis/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,peppy/osu,peppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,ppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu | osu.Game.Rulesets.Taiko/Skinning/LegacyTaikoScroller.cs | mit | 1,588,932,821 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... |
eb49564ee2a022319fc7c1430a6b998da927021b | Disable external loading Unlit/Transparent Colored (because we lose transparency) | Disable external loading Unlit/Transparent Colored (because we lose transparency)
| Albeoris/Memoria,Albeoris/Memoria,Albeoris/Memoria | Assembly-CSharp/Memoria/Scripts/ScriptsLoader.cs | mit | 1,588,932,799 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using System.Threading;
using Memoria.Assets;
using Memoria.Prime;
using Memoria.Prime.IL;
using Memoria.Prime.Threading;
using UnityEngine;
using Object = System.Object;
namespace... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using System.Threading;
using Memoria.Assets;
using Memoria.Prime;
using Memoria.Prime.IL;
using Memoria.Prime.Threading;
using UnityEngine;
using Object = System.Object;
namespace... |
f06eaf38f879a3b222b9467704f4264c58c9dc27 | Use correct unit test AppBuilder. | Use correct unit test AppBuilder.
A reference was added to `Avalonia.ReactiveUI` from `Avalonia.Controls.UnitTests` which caused the incorrect `AppBuilder` to be resolved.
| SuperJMN/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,Perspex/Perspex,jkoritzinsky/Perspex,SuperJMN/Avalonia,Perspex/Perspex,Perspex/Perspex,wieslawsoltes/Perspex,Avalon... | tests/Avalonia.Controls.UnitTests/AppBuilderTests.cs | mit | 1,588,932,655 | using Avalonia.Controls.UnitTests;
using Avalonia.Platform;
using Xunit;
[assembly: ExportAvaloniaModule("DefaultModule", typeof(AppBuilderTests.DefaultModule))]
[assembly: ExportAvaloniaModule("RenderingModule", typeof(AppBuilderTests.Direct2DModule), ForRenderingSubsystem = "Direct2D1")]
[assembly: ExportAvaloniaMo... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Avalonia.Controls.UnitTests;
using Avalonia.Platform;
using Avalonia.UnitTests;
[assembly: ExportAvaloniaModule("DefaultModule", typeof(AppBuilderTests.DefaultModule))]
[assembly: Exp... |
abd1115c6d1dcf068e7eccd48a987dc27fe54839 | Fix test failures | Fix test failures
| UselessToucan/osu,ppy/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,smoogipooo/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu | osu.Game/OsuGameBase.cs | mit | 1,588,932,523 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using osu.Framework.Allocation;... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using osu.Framework.Allocation;... |
cfd9060eeafd9dcd197d62dd7bb07ac223a04a0d | Renames to errorSymbolStyleIndex and errorSymbolForeColor. | Renames to errorSymbolStyleIndex and errorSymbolForeColor.
| PenguinF/sandra-three | Sandra.UI/PgnStyleSelector.cs | apache-2.0 | 1,588,932,317 | #region License
/*********************************************************************************
* PgnStyleSelector.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You ... | #region License
/*********************************************************************************
* PgnStyleSelector.cs
*
* Copyright (c) 2004-2020 Henk Nicolai
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You ... |
e1336a8a8f37c8751b5a7c5f446c03d1e1e1d138 | fixing null-elements in lists | fixing null-elements in lists
| dotmos/uGameFramework,dotmos/uGameFramework | Unity/Assets/GameFramework/Services/SerializerService/FlatbufferUtils.cs | mit | 1,588,932,288 | using System.Collections.Generic;
using System;
using FlatBuffers;
using System.Linq;
using System.Collections;
using System.Text;
using System.Threading;
using UnityEngine;
namespace Service.Serializer
{
public struct ExtendedTable
{
public static readonly ExtendedTable NULL = new ExtendedTable(-1, ... | using System.Collections.Generic;
using System;
using FlatBuffers;
using System.Linq;
using System.Collections;
using System.Text;
using System.Threading;
using UnityEngine;
namespace Service.Serializer
{
public struct ExtendedTable
{
public static readonly ExtendedTable NULL = new ExtendedTable(-1, ... |
046834129f36d06fdd01161a45058115c38ed694 | Fix ranged weapons getting stuck down. | Fix ranged weapons getting stuck down.
Thanks ShadowCommander for figuring this one out.
| space-wizards/space-station-14,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-content | Content.Client/GameObjects/EntitySystems/RangedWeaponSystem.cs | mit | 1,588,931,719 | using Content.Client.GameObjects.Components.Weapons.Ranged;
using Content.Client.Interfaces.GameObjects;
using Content.Shared.Input;
using Robust.Client.GameObjects.EntitySystems;
using Robust.Client.Interfaces.Graphics.ClientEye;
using Robust.Client.Interfaces.Input;
using Robust.Client.Player;
using Robust.Shared.Ga... | using Content.Client.GameObjects.Components.Weapons.Ranged;
using Content.Client.Interfaces.GameObjects;
using Content.Shared.Input;
using Robust.Client.GameObjects.EntitySystems;
using Robust.Client.Interfaces.Graphics.ClientEye;
using Robust.Client.Interfaces.Input;
using Robust.Client.Player;
using Robust.Shared.Ga... |
d67facf8e4c28443840af1519ec7be669ef552d3 | Add test scene | Add test scene
| ppy/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,UselessToucan/osu,peppy/osu-new,peppy/osu,UselessToucan/osu | osu.Game.Rulesets.Mania.Tests/TestSceneManiaHitObjectComposer.cs | mit | 1,588,931,406 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framewo... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framewo... |
dcfef6b44383c48246ab2a648b13855d13e8834c | Add clear method to EditorBeatmap | Add clear method to EditorBeatmap
| peppy/osu,peppy/osu-new,NeoAdonis/osu,smoogipoo/osu,ppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,smoogipoo/osu | osu.Game/Screens/Edit/EditorBeatmap.cs | mit | 1,588,931,197 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framew... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections;
using System.Collections.Generic;
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
usin... |
b967114dbf098a9c3965739f4e4d8992f3226bce | pause before connecting | pause before connecting
| bbsimonbb/query-first | QueryFirst/SolutionEventHandlers.cs | mit | 1,588,930,587 | using EnvDTE;
using EnvDTE80;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using System;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using TinyIoC;
namespace QueryFirst
{
class SolutionEventHandlers
{
... | using EnvDTE;
using EnvDTE80;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using System;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Reflection;
using TinyIoC;
namespace QueryFirst
{
class SolutionEventHandlers
{
// singleton
... |
741cc1dc463b8f9fa1a77097fb4322421ed59554 | File layout. | File layout.
| ExRam/ExRam.Gremlinq | ExRam.Gremlinq.Core/Queries/GremlinQuery.explicit.cs | mit | 1,588,930,096 | // ReSharper disable ArrangeThisQualifier
// ReSharper disable CoVariantArrayConversion
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using ExRam.Gremlinq.Core.G... | // ReSharper disable ArrangeThisQualifier
// ReSharper disable CoVariantArrayConversion
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using ExRam.Gremlinq.Core.G... |
95379c270d5d4530b501fa9f9aa3bf89893a4fba | Don't allow IScriptCustomFunction to be inspected from object.keys | Don't allow IScriptCustomFunction to be inspected from object.keys
| lunet-io/scriban,textamina/scriban | src/Scriban/Functions/ObjectFunctions.cs | bsd-2-clause | 1,588,929,834 | // Copyright (c) Alexandre Mutel. All rights reserved.
// Licensed under the BSD-Clause 2 license.
// See license.txt file in the project root for full license information.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Reflection;
using Scriban.Helpe... | // Copyright (c) Alexandre Mutel. All rights reserved.
// Licensed under the BSD-Clause 2 license.
// See license.txt file in the project root for full license information.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Reflection;
using Scriban.Helpe... |
34f520acd77f598363fb79cdaa70bfb166a6d35a | fix DataTableBuilder 动态方法报错 | fix DataTableBuilder 动态方法报错 | ldqk/Masuit.Tools | Masuit.Tools/Database/DataTableBuilder.cs | mit | 1,588,928,524 | using System;
using System.Data;
using System.Reflection;
using System.Reflection.Emit;
namespace Masuit.Tools.Database
{
internal class DataTableBuilder<T>
{
private static readonly MethodInfo GetValueMethod = typeof(DataRow).GetMethod("get_Item", new[]
{
typeof(int)
});
... | using System;
using System.Data;
using System.Reflection;
using System.Reflection.Emit;
namespace Masuit.Tools.Database
{
internal class DataTableBuilder<T>
{
private static readonly MethodInfo GetValueMethod = typeof(DataRow).GetMethod("get_Item", new[]
{
typeof(int)
});
... |
94adddcd5bedcebf6fb0e5c1461032c4bc7c675c | disable clean for now | disable clean for now
| MienDev/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4 | src/build/Program.Partial.cs | apache-2.0 | 1,588,927,534 | using System;
using System.IO;
using System.Linq;
using static Bullseye.Targets;
using static SimpleExec.Command;
namespace build
{
partial class Program
{
private const string packOutput = "./artifacts";
private const string packOutputCopy = "../../nuget";
private const st... | using System;
using System.IO;
using System.Linq;
using static Bullseye.Targets;
using static SimpleExec.Command;
namespace build
{
partial class Program
{
private const string packOutput = "./artifacts";
private const string packOutputCopy = "../../nuget";
private const st... |
0f57eca73f7655aa240870e07228e9b80bdbc2d3 | Added delegate and callback to mouse handler class | Added delegate and callback to mouse handler class
| EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framew... | osu.Framework.iOS/Input/IOSMouseHandler.cs | mit | 1,588,926,795 | // 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 CoreGraphics;
using Foundation;
using ObjCRuntime;
using osu.Framework.Input.Handlers;
using osu.Framework.Input.StateChanges;
using osu.Framework.Pl... | // 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 Foundation;
using ObjCRuntime;
using osu.Framework.Input.Handlers;
using osu.Framework.Platform;
using UIKit;
namespace osu.Framework.iOS.Input
{
... |
6675432f3a9e26ebb03c12b5b2a3ad5a6f272700 | Inserted mouse handler into iOS game host | Inserted mouse handler into iOS game host
| EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,ppy/osu-fr... | osu.Framework.iOS/IOSGameHost.cs | mit | 1,588,926,783 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using Foundation;
using osu.Framework.Bindables;
using osu.Framework.Configuration;... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using Foundation;
using osu.Framework.Bindables;
using osu.Framework.Configuration;... |
bd24c4c82ba47f5dac14846823587820e4e07b7e | allow loading setting from file | allow loading setting from file
| gasparnagy/berp,gasparnagy/berp,gasparnagy/berp | src/Berp/Program.cs | apache-2.0 | 1,588,926,708 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Berp.BerpGrammar;
using CommandLine;
using CommandLine.Text;
namespace Berp
{
public class Options
{
[Option('t', "template", Required = true, HelpText = "Template (.razor) file for generation.... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Berp.BerpGrammar;
using CommandLine;
using CommandLine.Text;
namespace Berp
{
public class Options
{
[Option('t', "template", Required = true, HelpText = "Template (.razor) file for generation.... |
3d25220322a3a556456c160e207a534f970da309 | Add unit test | Add unit test
| fredatgithub/UsefulFunctions | UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs | mit | 1,588,926,475 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto;
namespace UnitTestUsefullFunctions
{
[TestClass]
public class UnitTestFunctionCrypto
{
#region Crypto
... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto;
namespace UnitTestUsefullFunctions
{
[TestClass]
public class UnitTestFunctionCrypto
{
#region Crypto
... |
3025bea195bad51bcc41a3e8c258984d5c31010a | Remove API route trailing slash to avoid AWS API Gateway modification | Remove API route trailing slash to avoid AWS API Gateway modification
Remove last slash in API route so url don't get modified when passing AWS API Gateway. This may be cause of signature error
| sinch/nuget-serversdk | src/Sinch.ServerSdk/Callouts/ICalloutApiEndpoints.cs | mit | 1,588,926,359 | using System.Threading.Tasks;
using Sinch.ServerSdk.Callouts;
using Sinch.WebApiClient;
public interface ICalloutApiEndpoints
{
[HttpPost("calling/v1/callouts")]
Task<CalloutResponse> Callout([ToBody] CalloutRequest request);
} | using System.Threading.Tasks;
using Sinch.ServerSdk.Callouts;
using Sinch.WebApiClient;
public interface ICalloutApiEndpoints
{
[HttpPost("calling/v1/callouts/")]
Task<CalloutResponse> Callout([ToBody] CalloutRequest request);
} |
a995e029f3b59b0d350181e855390009ed240c55 | Fix VerifyWitness (#1628) | Fix VerifyWitness (#1628)
| AntShares/AntShares | src/neo/SmartContract/Helper.cs | mit | 1,588,925,586 | using Neo.Cryptography;
using Neo.Cryptography.ECC;
using Neo.Ledger;
using Neo.Network.P2P.Payloads;
using Neo.Persistence;
using Neo.SmartContract.Manifest;
using Neo.VM;
using Neo.VM.Types;
using System;
using System.Buffers.Binary;
using System.Collections.Generic;
using System.Text;
namespace Neo.SmartContract
{
... | using Neo.Cryptography;
using Neo.Cryptography.ECC;
using Neo.Ledger;
using Neo.Network.P2P.Payloads;
using Neo.Persistence;
using Neo.SmartContract.Manifest;
using Neo.VM;
using Neo.VM.Types;
using System;
using System.Buffers.Binary;
using System.Collections.Generic;
using System.Text;
namespace Neo.SmartContract
{
... |
493c0ad3e206b4178ba17d998776ca43eb879099 | fix: add custom Metadata | fix: add custom Metadata
| mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati | Duplicati.Library.Backend.Tardigrade/TardigradeBackend.cs | lgpl-2.1 | 1,588,923,049 | using Duplicati.Library.Interface;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using uplink.NET.Interfaces;
using uplink.NET.Models;
using uplink.NET.Services;
namespace Duplicati.Library.Backend.Tardigrad... | using Duplicati.Library.Interface;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using uplink.NET.Interfaces;
using uplink.NET.Models;
using uplink.NET.Services;
namespace Duplicati.Library.Backend.Tardigrad... |
0c89b99418157de06dd78b679f86f79864631f68 | Re-enable update test | Re-enable update test
| tgstation/tgstation-server-tools,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server | tests/Tgstation.Server.Tests/IntegrationTest.cs | agpl-3.0 | 1,588,922,286 | using Discord.WebSocket;
using Microsoft.Extensions.Logging;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using System;
using System.Diagnostics;
using System.IO;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using ... | using Discord.WebSocket;
using Microsoft.Extensions.Logging;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using System;
using System.Diagnostics;
using System.IO;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using ... |
73df4f93257ebfa4d0095d27581a227f1de4aa3b | Fix ChatBotLimit being unable to update instances | Fix ChatBotLimit being unable to update instances
Fixes #968
| tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools | src/Tgstation.Server.Host/Controllers/InstanceController.cs | agpl-3.0 | 1,588,922,242 | using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Net;
using System.Refl... | using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Net;
using System.Refl... |
dbe626f83db63e6f904e99c4b633f54b4803009d | Fix being unable to set chat bot channel limits. | Fix being unable to set chat bot channel limits.
Fixes #967
| tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools | src/Tgstation.Server.Host/Controllers/ChatController.cs | agpl-3.0 | 1,588,922,182 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Net;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Tgstation.Ser... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Net;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Tgstation.Ser... |
17e76fdde21e8fa7f25e5a995d246eb1f85f05c6 | 订单优惠时区分优惠商品时必需 | 订单优惠时区分优惠商品时必需
PackageRequestHandler.SetParameter("version", Register.TenpayV3ProtfitRequestDataVersion); 订单优惠时区分优惠商品时必需, | mc7246/WeiXinMPSDK,JeffreySu/WeiXinMPSDK,lishewen/WeiXinMPSDK,mc7246/WeiXinMPSDK,lishewen/WeiXinMPSDK,JeffreySu/WeiXinMPSDK | src/Senparc.Weixin.TenPay/Senparc.Weixin.TenPay/V3/Universal/Entities/Request/TenPayV3UnifiedorderRequestData.cs | apache-2.0 | 1,588,921,667 | #region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2020 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
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 ... | #region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2020 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
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 ... |
2493428203d3da99c2b95377be5ffb51b6e16833 | cleanup: Extend documentation | cleanup: Extend documentation
| mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati | Duplicati.Library.Backend.Tardigrade/TardigradeBackend.cs | lgpl-2.1 | 1,588,920,954 | using Duplicati.Library.Interface;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using uplink.NET.Interfaces;
using uplink.NET.Models;
using uplink.NET.Services;
namespace Duplicati.Library.Backend.Tardigrad... | using Duplicati.Library.Interface;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using uplink.NET.Interfaces;
using uplink.NET.Models;
using uplink.NET.Services;
namespace Duplicati.Library.Backend.Tardigrad... |
ee34d363e068c797e6aefa058ba2003073c5207a | Changed my mind around the increased timeout | Changed my mind around the increased timeout
| elmahio/Elmah.Io.Client | src/Elmah.Io.Client/ElmahioAPI.Create.cs | apache-2.0 | 1,588,920,761 | using System;
using System.Net.Http.Headers;
using System.Reflection;
namespace Elmah.Io.Client
{
public partial class ElmahioAPI
{
public ElmahIoOptions Options { get; set; } = new ElmahIoOptions();
public static IElmahioAPI Create(string apiKey, ElmahIoOptions options)
{
... | using System;
using System.Net.Http.Headers;
using System.Reflection;
namespace Elmah.Io.Client
{
public partial class ElmahioAPI
{
public ElmahIoOptions Options { get; set; } = new ElmahIoOptions();
public static IElmahioAPI Create(string apiKey, ElmahIoOptions options)
{
... |
d85ff5fa37c6ce35602c50b186b07b10b99d69f9 | Fix/8354 caching (#8364) | Fix/8354 caching (#8364)
* Caching the ShellDescriptor
This avoids fetching all connected records on every request.
refreshed cache after an update
This is after having evicted it and having updated the database | hbulzy/Orchard,hbulzy/Orchard,LaserSrl/Orchard,LaserSrl/Orchard,OrchardCMS/Orchard,OrchardCMS/Orchard,Lombiq/Orchard,hbulzy/Orchard,hbulzy/Orchard,OrchardCMS/Orchard,OrchardCMS/Orchard,hbulzy/Orchard,OrchardCMS/Orchard,Lombiq/Orchard,LaserSrl/Orchard,LaserSrl/Orchard,Lombiq/Orchard,LaserSrl/Orchard,Lombiq/Orchard,Lombi... | src/Orchard.Web/Core/Settings/Descriptor/ShellDescriptorManager.cs | bsd-3-clause | 1,588,919,493 | using System;
using System.Collections.Generic;
using System.Linq;
using Orchard.Caching;
using Orchard.Core.Settings.Descriptor.Records;
using Orchard.Data;
using Orchard.Environment.Configuration;
using Orchard.Environment.Descriptor;
using Orchard.Environment.Descriptor.Models;
using Orchard.Locking;
using Orchard.... | using System;
using System.Collections.Generic;
using System.Linq;
using Orchard.Core.Settings.Descriptor.Records;
using Orchard.Data;
using Orchard.Environment.Configuration;
using Orchard.Environment.Descriptor;
using Orchard.Environment.Descriptor.Models;
using Orchard.Logging;
namespace Orchard.Core.Settings.Desc... |
bffde3c9984e8f32df55986e53ca40e4ead76d67 | Allow ExcludeFromDynamicCompile on enums | Allow ExcludeFromDynamicCompile on enums
| peppy/osu-framework,peppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,s... | osu.Framework/Testing/ExcludeFromDynamicCompileAttribute.cs | mit | 1,588,919,389 | // 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;
namespace osu.Framework.Testing
{
/// <summary>
/// Indicates that a type should be excluded from dynamic compilation. Does not affect derived type... | // 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;
namespace osu.Framework.Testing
{
/// <summary>
/// Indicates that a type should be excluded from dynamic compilation. Does not affect derived type... |
8b5de7403f317cd87be9315976632d08873b021a | Fix android usage of obsoleted VersionCode | Fix android usage of obsoleted VersionCode
| smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu,ppy/osu | osu.Android/OsuGameAndroid.cs | mit | 1,588,918,349 | // 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 Android.App;
using osu.Game;
using osu.Game.Updater;
namespace osu.Android
{
public class OsuGameAndroid : OsuGame
{
public override... | // 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 Android.App;
using osu.Game;
using osu.Game.Updater;
namespace osu.Android
{
public class OsuGameAndroid : OsuGame
{
public override... |
49fbf0308dca82d7fe3ff0f5157ec0bc89623f42 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,588,917,705 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "a0285c77e63afe239a2e523382845f892bf5b398";
public static string Version = "1.3";
public static string Build = "3373";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "e7be934c7815676f8540374dd48e976a533ad0ea";
public static string Version = "1.2";
public static string Build = "3372";
... |
a20afa3add2d6ecd8b8f095ee6d4b717bdb8fdf2 | Include PPA and needy scoring in the score commands | Include PPA and needy scoring in the score commands
| samfun123/KtaneTwitchPlays | TwitchPlaysAssembly/Src/ModuleData.cs | mit | 1,588,917,220 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEngine;
using System.Reflection;
public class ModuleInformation
{
public string moduleDisplayName = string.Empty;
public string moduleID;
public bool moduleScoreOverride;
public float moduleScore = 5;
public bool modu... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEngine;
using System.Reflection;
public class ModuleInformation
{
public string moduleDisplayName = string.Empty;
public string moduleID;
public bool moduleScoreOverride;
public float moduleScore = 5;
public bool modu... |
7a89564ab1e705fa52181d3d910789dc6ccb43b8 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,588,916,935 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "e7be934c7815676f8540374dd48e976a533ad0ea";
public static string Version = "1.2";
public static string Build = "3372";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "122370c5182a167cad6a8b35558c260daecf9e79";
public static string Version = "1.2";
public static string Build = "3359";
... |
e7be934c7815676f8540374dd48e976a533ad0ea | Fix issue with SellPrice usage for AlternateCurrency (#2979) | Fix issue with SellPrice usage for AlternateCurrency (#2979)
| ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE | Source/ACE.Server/WorldObjects/Vendor.cs | agpl-3.0 | 1,588,916,798 | using System;
using System.Collections.Generic;
using System.Linq;
using log4net;
using ACE.Database;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Server.Entity.Actions;
using ACE.Server.Factories;
using ACE.Server.Network.GameE... | using System;
using System.Collections.Generic;
using System.Linq;
using log4net;
using ACE.Database;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Server.Entity.Actions;
using ACE.Server.Factories;
using ACE.Server.Network.GameE... |
fad8d611d7fcd399f3d9eea450fca2e66f8cc215 | Add ping to clients at character select (#2977) | Add ping to clients at character select (#2977)
This "hack" deviates from known retail pcaps/behavior, but appears to be the least harmful way to work around something that seemingly didn't occur to players using ThwargLauncher connecting to retail servers.
In order to prevent the launcher from thinking the session... | LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/Network/Session.cs | agpl-3.0 | 1,588,916,789 | using System;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using log4net;
using ACE.Common;
using ACE.Database;
using ACE.Database.Models.Shard;
using ACE.Entity.Enum;
using ACE.Server.WorldObjects;
using ACE.Server.Managers;
using ACE.Server.Network.Enum;
using ACE.Server.Network.GameE... | using System;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using log4net;
using ACE.Common;
using ACE.Database;
using ACE.Database.Models.Shard;
using ACE.Entity.Enum;
using ACE.Server.WorldObjects;
using ACE.Server.Managers;
using ACE.Server.Network.Enum;
using ACE.Server.Network.GameM... |
d4491df023fa89591b418ddeb7f3804b14437339 | Do not send Structure in Appraisal reply for TinkeringMaterial CraftTools (#2976) | Do not send Structure in Appraisal reply for TinkeringMaterial CraftTools (#2976)
| LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE | Source/ACE.Server/Network/Structure/AppraiseInfo.cs | agpl-3.0 | 1,588,916,772 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using ACE.DatLoader;
using ACE.DatLoader.FileTypes;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Server.Managers;
using ACE.Server.Network.Enum;
using ACE.Server.W... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using ACE.DatLoader;
using ACE.DatLoader.FileTypes;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Server.Managers;
using ACE.Server.Network.Enum;
using ACE.Server.W... |
483fd196d89a49a89d16163b4d7f660f4c8445b6 | Destroy projectiles on collision (#2971) | Destroy projectiles on collision (#2971)
| LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE | Source/ACE.Server/WorldObjects/ProjectileCollisionHelper.cs | agpl-3.0 | 1,588,916,733 | using System;
using ACE.Entity.Enum;
using ACE.Server.Entity;
using ACE.Server.Network.GameMessages.Messages;
namespace ACE.Server.WorldObjects
{
/// <summary>
/// Helper class for arrows / bolts / thrown weapons
/// outside of the WorldObject hierarchy
/// </summary>
public static class Projectil... | using System;
using ACE.Entity.Enum;
using ACE.Server.Entity;
using ACE.Server.Network.GameMessages.Messages;
namespace ACE.Server.WorldObjects
{
/// <summary>
/// Helper class for arrows / bolts / thrown weapons
/// outside of the WorldObject hierarchy
/// </summary>
public static class Projectil... |
7b6784d54fe2251be1790df73cdd37ecf07fed47 | Update offline purge to clean up invalid allegiance data (#2970) | Update offline purge to clean up invalid allegiance data (#2970)
* Update offline purge to clean up invalid allegiance data
* Update ShardDatabaseOfflineTools.cs
* Update ShardDatabaseOfflineTools.cs
* Update ShardDatabaseOfflineTools.cs | ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,LtRipley36706/ACE | Source/ACE.Database/ShardDatabaseOfflineTools.cs | agpl-3.0 | 1,588,916,718 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using log4net;
using ACE.Common;
using ACE.Database.Models.Shard;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
namespace ACE.Database
{
public... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using log4net;
using ACE.Common;
using ACE.Database.Models.Shard;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
namespace ACE.Database
{
public... |
bea2c7ad2e53fd584187520093c416c4b045922a | Update fix-allegiances command (#2964) | Update fix-allegiances command (#2964)
| LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/Command/Handlers/AdminCommands.cs | agpl-3.0 | 1,588,916,647 | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Net;
using System.Threading;
using log4net;
using ACE.Common.Extensions;
using ACE.Database;
using ACE.Database.Models.Auth;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
... | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Net;
using System.Threading;
using log4net;
using ACE.Common.Extensions;
using ACE.Database;
using ACE.Database.Models.Auth;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
... |
125c6cf7d7b2799db9291290037654921b4f590b | Changed default timeout to 30 seconds. Each integration should make a desicion about what to put in there | Changed default timeout to 30 seconds. Each integration should make a desicion about what to put in there
| elmahio/Elmah.Io.Client | src/Elmah.Io.Client/ElmahioAPI.Create.cs | apache-2.0 | 1,588,913,648 | using System;
using System.Net.Http.Headers;
using System.Reflection;
namespace Elmah.Io.Client
{
public partial class ElmahioAPI
{
public ElmahIoOptions Options { get; set; } = new ElmahIoOptions();
public static IElmahioAPI Create(string apiKey, ElmahIoOptions options)
{
... | using System;
using System.Net.Http.Headers;
using System.Reflection;
namespace Elmah.Io.Client
{
public partial class ElmahioAPI
{
public ElmahIoOptions Options { get; set; } = new ElmahIoOptions();
public static IElmahioAPI Create(string apiKey, ElmahIoOptions options)
{
... |
4e735598e10ba3e285f6ec6b7348ff2b78ec9eca | Add tests for attempting escaping root | Add tests for attempting escaping root
| ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EV... | osu.Framework.Tests/IO/TestDesktopStorage.cs | mit | 1,588,910,498 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using NUnit.Framework;
namespace osu.Framework.Tests.IO
{
[TestFixture]
public class TestDesktopStorage
{
[Test]
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using NUnit.Framework;
namespace osu.Framework.Tests.IO
{
[TestFixture]
public class TestDesktopStorage
{
[Test]
... |
a6323cf4a25ce73b390a735e69a137405ac9eb79 | Add test for normal usage as well | Add test for normal usage as well
| ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ppy/osu-fram... | osu.Framework.Tests/IO/TestDesktopStorage.cs | mit | 1,588,910,392 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using NUnit.Framework;
namespace osu.Framework.Tests.IO
{
[TestFixture]
public class TestDesktopStorage
{
[Test]
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using NUnit.Framework;
namespace osu.Framework.Tests.IO
{
[TestFixture]
public class TestDesktopStorage
{
[Test]
... |
c027fcf8e60f894d81a3de560822ea3b287123e7 | Missed a minor optimization as I wasn't using a parameter for the binary search method. The files I've opened don't actually hit the code path (they always hit the optimization for checking the previous/next/current line) \n\nCommit migrated from https://github.com/dotnet/aspnetcore-tooling/commit/75f34eec6069cb39a2c6b... | Missed a minor optimization as I wasn't using a parameter for the binary search method. The files I've opened don't actually hit the code path (they always hit the optimization for checking the previous/next/current line)
\n\nCommit migrated from https://github.com/dotnet/aspnetcore-tooling/commit/75f34eec6069cb39a2c6b... | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Razor/Microsoft.AspNetCore.Razor.Language/src/Legacy/LineTrackingStringBuffer.cs | apache-2.0 | 1,588,909,455 | // 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Microsoft.AspNetCore.Razor.Language.Legacy
{
... | // 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Microsoft.AspNetCore.Razor.Language.Legacy
{
... |
290b861a85ab27c5575bd30c9607e5c9d2d27be2 | Fix calling GetStorageForDirectory with empty string failing lookup | Fix calling GetStorageForDirectory with empty string failing lookup
| ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-fram... | osu.Framework/Platform/NativeStorage.cs | mit | 1,588,908,756 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using JetBrains.Annotations;
namespace osu.Framework.Platform
{
public class Nat... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace osu.Framework.Platform
{
public class NativeStorage : Storage
{
... |
2a689133de57c20910773ef96743b818dce3e4cd | Only connect SqlServer windows | Only connect SqlServer windows
| bbsimonbb/query-first | QueryFirst/SolutionEventHandlers.cs | mit | 1,588,902,728 | using EnvDTE;
using EnvDTE80;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using System;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Reflection;
using TinyIoC;
namespace QueryFirst
{
class SolutionEventHandlers
{
// singleton
... | using EnvDTE;
using EnvDTE80;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using System;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Reflection;
using TinyIoC;
namespace QueryFirst
{
class SolutionEventHandlers
{
// singleton
... |
cdfa43bbe0ecc13757cc6517c9a253de77c3ec56 | Avoid trying to fix the trusted root certificates (#21599) | Avoid trying to fix the trusted root certificates (#21599)
| aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Shared/CertificateGeneration/CertificateManager.cs | apache-2.0 | 1,588,902,112 | // 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;
using System.Collections.Generic;
using System.Diagnostics.Tracing;
using System.IO;
using System.Linq;
using System.Runtime.InteropServic... | // 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;
using System.Collections.Generic;
using System.Diagnostics.Tracing;
using System.IO;
using System.Linq;
using System.Runtime.InteropServic... |
0cbb75dbeafbc7276840217c94673150f3b8e229 | Made key version optional. | Made key version optional.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtApiDotNet/Win32/Security/Authentication/Kerberos/KerberosEncryptedData.cs | apache-2.0 | 1,588,902,019 | // Copyright 2020 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applica... | // Copyright 2020 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applica... |
576fb55604057fea5dcb958ba9fd6a0433747e3e | Do not reject rejection messages locally. Drop them instead (#6525) | Do not reject rejection messages locally. Drop them instead (#6525)
| waynemunro/orleans,jthelin/orleans,ReubenBond/orleans,jason-bragg/orleans,jason-bragg/orleans,jthelin/orleans,ElanHasson/orleans,ElanHasson/orleans,ElanHasson/orleans,amccool/orleans,hoopsomuah/orleans,amccool/orleans,hoopsomuah/orleans,yevhen/orleans,waynemunro/orleans,veikkoeeva/orleans,dotnet/orleans,ReubenBond/orle... | src/Orleans.Runtime/Messaging/MessageCenter.cs | mit | 1,588,899,757 | using System;
using System.Threading;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Orleans.Configuration;
namespace Orleans.Runtime.Messaging
{
internal class MessageCenter : IMessageCenter, IDisposable
{
public Gateway Gateway { get; set; }
private readonly ILo... | using System;
using System.Threading;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Orleans.Configuration;
namespace Orleans.Runtime.Messaging
{
internal class MessageCenter : IMessageCenter, IDisposable
{
public Gateway Gateway { get; set; }
private readonly ILo... |
0e24f55f0faed5c100c011219ec290f0a1a4ca5d | feat(issue-4162): Fixing names to display in a nicer format. | feat(issue-4162): Fixing names to display in a nicer format.
| fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Util/SweetExtensions.cs | agpl-3.0 | 1,588,899,460 | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Mirror;
using UnityEngine;
using Random = UnityEngine.Random;
public static class SweetExtensions
{
public static IPushable Pushable(this GameObject go)
{
return go.GetComponent<IPushable>();
}
public static Con... | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Mirror;
using UnityEngine;
using Random = UnityEngine.Random;
public static class SweetExtensions
{
public static IPushable Pushable(this GameObject go)
{
return go.GetComponent<IPushable>();
}
public static Con... |
069b409dd4eae142106558d0a4f631cb2b7d4938 | Fix perf issue in LineTrackingStringbuffer.ScanLines. | Fix perf issue in LineTrackingStringbuffer.ScanLines.
I noticed several hundred ms spent in this method from a customer profile. Primarilly, the method was doing a linear scan of all lines trying to find one that contained the requested position. I changed this to a binary search, but kept/improved the optimization ar... | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Razor/Microsoft.AspNetCore.Razor.Language/src/Legacy/LineTrackingStringBuffer.cs | apache-2.0 | 1,588,898,141 | // 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Microsoft.AspNetCore.Razor.Language.Legacy
{
... | // 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace Microsoft.AspNetCore.Razor.Language.Legacy
{
... |
7f61f27be1e3031266110c0f64a812bc2a787829 | Use null-conditional operator when checking against UpdateManager | Use null-conditional operator when checking against UpdateManager
Co-authored-by: Dean Herbert <1db828bcd41de75377dce59825af73ae7fca5651@ppy.sh> | NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu-new,ppy/osu,peppy/osu,peppy/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu | osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs | mit | 1,588,897,992 | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... |
6c29d3b4e623b16d2d4c12d6522d4518f76c0237 | Core - Update CefErrorCode | Core - Update CefErrorCode
Resolves #3106
| Livit/CefSharp,Livit/CefSharp,Livit/CefSharp,Livit/CefSharp | CefSharp/Enums/CefErrorCode.cs | bsd-3-clause | 1,588,897,376 | // Copyright © 2013 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
/// <summary>
/// This file contains the list of network errors.
///
/// For a complete up-to-date list, see the C... | // Copyright © 2013 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
/// <summary>
/// Lists some of the error codes that can be reported by CEF.
///
/// For a complete up-to-date lis... |
9a57abcb4dbf4860bd39b630500229481e3bc673 | New clientlib ver | New clientlib ver
| kaltura/KalturaGeneratedAPIClientsCsharp | KalturaClient/Client.cs | agpl-3.0 | 1,588,896,529 | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... |
52215b3b724177f7c7fda38d0dfddc5898edfab2 | Gum can now export xamforms and adjust for screen density. | Gum can now export xamforms and adjust for screen density.
| vchelaru/Gum | CodeOutputPlugin/Manager/CodeGenerator.cs | mit | 1,588,894,033 | using CodeOutputPlugin.Models;
using Gum.Converters;
using Gum.DataTypes;
using Gum.DataTypes.Variables;
using Gum.Managers;
using Gum.ToolStates;
using RenderingLibrary.Graphics;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Ta... | using CodeOutputPlugin.Models;
using Gum.Converters;
using Gum.DataTypes;
using Gum.DataTypes.Variables;
using Gum.Managers;
using Gum.ToolStates;
using RenderingLibrary.Graphics;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Ta... |
6a37c5f021db724b28e83b2f2b212e07f2a2adb9 | Removed telerik from Hotcakes.Commerce library | Removed telerik from Hotcakes.Commerce library
| HotcakesCommerce/core,HotcakesCommerce/core | Libraries/Hotcakes.Commerce/Globalization/LocalizationUtils.cs | mit | 1,588,893,702 | #region License
// Distributed under the MIT License
// ============================================================
// Copyright (c) 2019 Hotcakes Commerce, LLC
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software
// and associated documentation files (the "Software")... | #region License
// Distributed under the MIT License
// ============================================================
// Copyright (c) 2019 Hotcakes Commerce, LLC
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software
// and associated documentation files (the "Software")... |
a74b5d62ead07d1198050318bc8959b44a61d2e0 | moved update speed watch to helper method | moved update speed watch to helper method
| antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora | Project-Aurora/Project-Aurora/Devices/Uniwill/UniwillDevice.cs | mit | 1,588,893,598 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Aurora.Devices.RGBNet;
using Aurora.Settings;
using Microsoft.Win32;
using UniwillSDKDL... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Aurora.Devices.RGBNet;
using Aurora.Settings;
using Microsoft.Win32;
using UniwillSDKDL... |
c781df3d212c0d30a072ed98de00d1ba2fea22b9 | Updated generated code for C#. (#7476) | Updated generated code for C#. (#7476)
| google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf | csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.cs | bsd-3-clause | 1,588,893,568 | // <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/unittest_proto3_optional.proto
// </auto-generated>
#pragma warning disable 1591, 0612, 3021
#region Designer generated code
using pb = global::Google.Protobuf;
using pbc = global::Google.Protobuf.Collect... | // <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/unittest_proto3_optional.proto
// </auto-generated>
#pragma warning disable 1591, 0612, 3021
#region Designer generated code
using pb = global::Google.Protobuf;
using pbc = global::Google.Protobuf.Collect... |
75e65766ffcf0e3e1820407534bcd0104d469adb | Annotate dependency | Annotate dependency
| ppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu | osu.Game/OsuGame.cs | mit | 1,588,892,956 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using osu.Framework.Configuration;
using osu.Framework.Screens;
using osu.Game.Configuration;
us... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using osu.Framework.Configuration;
using osu.Framework.Screens;
using osu.Game.Configuration;
us... |
a7792070bc01f4108515f665f5ff17dc750c25e4 | Final changes to DI fields and values | Final changes to DI fields and values
| UselessToucan/osu,smoogipoo/osu,ppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,peppy/osu | osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs | mit | 1,588,892,897 | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... |
811c7c6d654e926b31cffb300becfe1a5aa8bb97 | check either bound of the image. | check either bound of the image.
| SuperJMN/Avalonia,AvaloniaUI/Avalonia,Perspex/Perspex,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,akrisiun/Perspex,jkoritzinsky/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,jkoritzi... | src/Avalonia.Controls/Image.cs | mit | 1,588,892,816 | using Avalonia.Media;
using Avalonia.Media.Imaging;
namespace Avalonia.Controls
{
/// <summary>
/// Displays a <see cref="Bitmap"/> image.
/// </summary>
public class Image : Control
{
/// <summary>
/// Defines the <see cref="Source"/> property.
/// </summary>
pub... | using Avalonia.Media;
using Avalonia.Media.Imaging;
namespace Avalonia.Controls
{
/// <summary>
/// Displays a <see cref="Bitmap"/> image.
/// </summary>
public class Image : Control
{
/// <summary>
/// Defines the <see cref="Source"/> property.
/// </summary>
pub... |
acf8f7a62a5aede7c7880020ce429dfea0caba5e | whitespace and style changes | whitespace and style changes
no actual code changes were made in this commit | antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora | Project-Aurora/Project-Aurora/Devices/Uniwill/UniwillDevice.cs | mit | 1,588,892,523 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Aurora.Devices.RGBNet;
using Aurora.Settings;
using Microsoft.Win32;
using UniwillSDKDL... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Aurora.Devices.RGBNet;
using Aurora.Settings;
using Microsoft.Win32;
using UniwillSDKDL... |
8fa983d5bcecdf7030434d96777b8939fff9b8db | image class will not make invalid render calls if its size is 0 causing divide by zero and passing .NaN to drawing context. | image class will not make invalid render calls if its size is 0 causing divide by zero and passing .NaN to drawing context.
| SuperJMN/Avalonia,SuperJMN/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,grokys/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,Perspex/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkoritzins... | src/Avalonia.Controls/Image.cs | mit | 1,588,891,415 | using Avalonia.Media;
using Avalonia.Media.Imaging;
namespace Avalonia.Controls
{
/// <summary>
/// Displays a <see cref="Bitmap"/> image.
/// </summary>
public class Image : Control
{
/// <summary>
/// Defines the <see cref="Source"/> property.
/// </summary>
pub... | using Avalonia.Media;
using Avalonia.Media.Imaging;
namespace Avalonia.Controls
{
/// <summary>
/// Displays a <see cref="Bitmap"/> image.
/// </summary>
public class Image : Control
{
/// <summary>
/// Defines the <see cref="Source"/> property.
/// </summary>
pub... |
477bd7fa613c75a6b535324cf59e42bdb7dce669 | Change to Resolved attribute | Change to Resolved attribute
| smoogipoo/osu,smoogipooo/osu,peppy/osu-new,smoogipoo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,ppy/osu,UselessToucan/osu,ppy/osu | osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs | mit | 1,588,890,927 | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... |
546e64a457e80fe5328b754896e054e721b2f29d | fixup values | fixup values
| andrewlock/blog-examples,andrewlock/blog-examples,andrewlock/blog-examples,andrewlock/blog-examples | ProblemDetailsHandling/ProblemDetailsHandling/Controllers/ValuesController.cs | mit | 1,588,890,846 | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc;
namespace ProblemDetailsHandling.Controllers
{
[ApiController]
[Route("[controller]")]
public class ValuesController : ControllerBase
{
const string ErrorMessage = "Vali... | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc;
namespace ProblemDetailsHandling.Controllers
{
[Route("[controller]")]
public class ValuesController : ControllerBase
{
const string ErrorMessage = "Validation errors";
... |
72b6bb25a5c1125f038d4b079e2e57fd31fdbcd1 | Allow nulls and hide if missing dependencies | Allow nulls and hide if missing dependencies
| peppy/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,smoogipooo/osu | osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs | mit | 1,588,890,813 | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... | // 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;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Game.Configuration;
using osu.Game.Updater;
namespace osu.Game.Overlays.Set... |
df48ee1f63ecf71b25e9ef824aa3a4af831d1ee2 | Update CameraEffectControlScript.cs | Update CameraEffectControlScript.cs
| krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Camera/CameraEffectControlScript.cs | agpl-3.0 | 1,588,890,709 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace CameraEffects
{
public class CameraEffectControlScript : MonoBehaviour
{
public DrunkCamera drunkCamera;
public GlitchEffect glitchEffect;
public NightVisionCamera nightVisionCamera;
public void ToggleDrunkEffectSta... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace CameraEffects
{
public class CameraEffectControlScript : MonoBehaviour
{
public DrunkCamera drunkCamera;
public GlitchEffect glitchEffect;
public NightVisionCamera nightVisionCamera;
public void ChangeDrunkState()
... |
77b87d9c6201406c4b1d7f50a0a15e14d3266bd6 | Bug fix: Navigate AR for Xamarin.Forms | Bug fix: Navigate AR for Xamarin.Forms
| Esri/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet | src/Forms/AugmentedReality/Samples/NavigateAR/RoutePlanner.xaml.cs | apache-2.0 | 1,588,889,559 | // Copyright 2020 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software... | // Copyright 2020 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software... |
3b518ee3c006c0937769dbc6a894be266fd72db1 | #188 fix file/folder creation in root folder | #188 fix file/folder creation in root folder
| yar229/WebDavMailRuCloud | NWebDav/NWebDav.Server/WebDavUri.cs | mit | 1,588,889,230 | using System;
namespace NWebDav.Server
{
public class WebDavUri
{
//private readonly Uri _fakeurl;
public WebDavUri(string url)
{
AbsoluteUri = url;
//_fakeurl = new Uri(AbsoluteUri);
}
/// <summary>
///
/// </summary>
... | using System;
namespace NWebDav.Server
{
public class WebDavUri
{
//private readonly Uri _fakeurl;
public WebDavUri(string url)
{
AbsoluteUri = url;
//_fakeurl = new Uri(AbsoluteUri);
}
/// <summary>
///
/// </summary>
... |
e63b4ac88d6d4a085f15437746cdb3439d433771 | fix: Correct compilation error | fix: Correct compilation error
| mjedrzejek/nunit,nunit/nunit,mjedrzejek/nunit,nunit/nunit,nunit/nunit,mjedrzejek/nunit | src/NUnitFramework/framework/Constraints/DictionaryContainsKeyConstraint.cs | mit | 1,588,888,980 | // ***********************************************************************
// Copyright (c) 2018 Charlie Poole, Rob Prouse
//
// 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 restri... | // ***********************************************************************
// Copyright (c) 2018 Charlie Poole, Rob Prouse
//
// 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 restri... |
30f9716c2cd697eaef30517686f1e9c00dde6017 | Issue-186 - Global setting keys no longer support a period | Issue-186 - Global setting keys no longer support a period
Use a dash instead of a period in the configuration-specific settings.
| AquaticInformatics/Examples,AquaticInformatics/Examples,schmidt4brains/Examples,schmidt4brains/Examples,schmidt4brains/Examples,AquaticInformatics/Examples,schmidt4brains/Examples,AquaticInformatics/Examples | TimeSeries/PublicApis/SdkExamples/SosExporter/SyncStatus.cs | apache-2.0 | 1,588,887,783 | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Security.Cryptography;
using System.Text;
using Aquarius.TimeSeries.Client;
using Aquarius.TimeSeries.Client.ServiceModels.Provisioning;
using log4net;
using ServiceStack;
namespace Sos... | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Security.Cryptography;
using System.Text;
using Aquarius.TimeSeries.Client;
using Aquarius.TimeSeries.Client.ServiceModels.Provisioning;
using log4net;
using ServiceStack;
namespace Sos... |
201b3dce83c8430a3eba7cf10d6c908f6f291f33 | Update Framework | Update Framework
| WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework | Framework/UtilFramework.cs | mit | 1,588,887,090 | using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Framework.Cli")] // Internal functions used by Framework.Cli assembly.
namespace Framework
{
using Database.dbo;
using Framework.Server;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
us... | using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Framework.Cli")] // Internal functions used by Framework.Cli assembly.
namespace Framework
{
using Database.dbo;
using Framework.Server;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
us... |
7f82ec0aa36bbb6d7cea57785202563f677ac859 | Make logger public | Make logger public | CoderLine/alphaTab,CoderLine/alphaTab,CoderLine/alphaTab,CoderLine/alphaTab,CoderLine/alphaTab | Source/AlphaTab/Util/Logger.cs | mpl-2.0 | 1,588,886,766 | namespace AlphaTab.Util
{
public class Logger
{
public static LogLevel LogLevel { get; set; }
static Logger()
{
LogLevel = LogLevel.Info;
}
public static void Debug(string category, string msg, object details = null)
{
Log(LogLevel.Debug,... | namespace AlphaTab.Util
{
internal class Logger
{
public static LogLevel LogLevel { get; set; }
static Logger()
{
LogLevel = LogLevel.Info;
}
public static void Debug(string category, string msg, object details = null)
{
Log(LogLevel.Debu... |
952b36568d80b86b3714867471c552d2cbf66da1 | Fixed issue with navigation authorization | Fixed issue with navigation authorization
| Esri/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet | src/Forms/AugmentedReality/Samples/NavigateAR/RoutePlanner.xaml.cs | apache-2.0 | 1,588,886,081 | // Copyright 2020 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software... | // Copyright 2020 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software... |
13f1965b29551e753d027f91eee564cc3629b9af | SubscriptionSecurityAllMessageAdapter fix. | SubscriptionSecurityAllMessageAdapter fix.
| StockSharp/StockSharp | Algo/SubscriptionSecurityAllMessageAdapter.cs | apache-2.0 | 1,588,886,047 | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Security ALL subscription counter adapter.
/// </summary>
public class SubscriptionSecurityAllMe... | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Security ALL subscription counter adapter.
/// </summary>
public class SubscriptionSecurityAllMe... |
0871105ce57b2eefd49d0a33771fca9fc9aa3e5c | fix: rename Id to BookId | fix: rename Id to BookId
| joergjo/BookLibrary-NetCore,joergjo/BookLibrary-NetCore | src/BookLibrary/Common/LoggerExtensions.cs | mit | 1,588,885,676 | using System;
using Microsoft.Extensions.Logging;
namespace BookLibrary.Common
{
public static class LoggerExtensions
{
private static readonly Action<ILogger, int, Exception?> _libraryQueried =
LoggerMessage.Define<int>(
LogLevel.Information,
ApplicationEven... | using System;
using Microsoft.Extensions.Logging;
namespace BookLibrary.Common
{
public static class LoggerExtensions
{
private static readonly Action<ILogger, int, Exception?> _libraryQueried =
LoggerMessage.Define<int>(
LogLevel.Information,
ApplicationEven... |
8049c4b9c1d9e2f283dbcec82ac34643baff09fc | Fix nullabilitiy warnings | Fix nullabilitiy warnings
| 1and1/TypedRest-DotNet,TypedRest/TypedRest-DotNet,TypedRest/TypedRest-DotNet,TypedRest/TypedRest-DotNet,1and1/TypedRest-DotNet,1and1/TypedRest-DotNet | src/TypedRest/Links/DefaultLinkHandler.cs | mit | 1,588,884,743 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using TypedRest.Http;
using TypedRest.UriTemplates;
namespace TypedRest.Links
{
/// <summary>
/// Detects links in HTTP Link headers and HAL... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using TypedRest.Http;
using TypedRest.UriTemplates;
namespace TypedRest.Links
{
/// <summary>
/// Detects links in HTTP Link headers and HAL... |
47021d6e01fbaeba2e23bc1f18e611a23db88f41 | Fixed parse string unit tests | Fixed parse string unit tests
| takenet/lime-csharp | src/Lime.Protocol.UnitTests/Serialization/TypeUtilTests.cs | apache-2.0 | 1,588,884,442 | using System;
using System.Globalization;
using Lime.Protocol.Serialization;
using NUnit.Framework;
using Shouldly;
namespace Lime.Protocol.UnitTests.Serialization
{
[TestFixture]
public class TypeUtilTests
{
[Test]
public void GetGenericFormatterParseFunc_DoubleInvariantCulture_ReturnVali... | using System.Globalization;
using Lime.Protocol.Serialization;
using NUnit.Framework;
using Shouldly;
namespace Lime.Protocol.UnitTests.Serialization
{
[TestFixture]
public class TypeUtilTests
{
[Test]
public void GetGenericFormatterParseFunc_DoubleInvariantCulture_ReturnValidParser()
... |
924128b94fbcb9a0f8fefa6dfa234c27aade61ff | when a library is added, only its creatures are used, as expected. | when a library is added, only its creatures are used, as expected.
| cadon/ARKStatsExtractor | ARKBreedingStats/Form1.collection.cs | mit | 1,588,884,344 | using ARKBreedingStats.Library;
using ARKBreedingStats.mods;
using ARKBreedingStats.species;
using ARKBreedingStats.values;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
using System.Xml.Serialization;
nam... | using ARKBreedingStats.Library;
using ARKBreedingStats.mods;
using ARKBreedingStats.species;
using ARKBreedingStats.values;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
using System.Xml.Serialization;
nam... |
89a3652055b258a5133388657b9649de9cc65707 | This song and dance again | This song and dance again
| tgstation/tgstation-server-tools,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server | tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs | agpl-3.0 | 1,588,883,500 | using Byond.TopicSender;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Client.Components;
using Tgstation.Server.Host.Components.Interop;
using Tgstatio... | using Byond.TopicSender;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Client.Components;
using Tgstation.Server.Host.Components.Interop;
using Tgstatio... |
faf2b141e36d501addffab5674c009ee19f12802 | build fix. | build fix.
| roice3/Honeycombs | code/HyperbolicModels/Experiments/Sandbox.cs | mit | 1,588,883,352 | namespace HyperbolicModels
{
using R3.Algorithm;
using R3.Core;
using R3.Drawing;
using R3.Geometry;
using R3.Math;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using Math = System.Math;
internal static class Sandbox
{
public static void ElevenCell()
{
... | namespace HyperbolicModels
{
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using R3.Algorithm;
using R3.Core;
using R3.Geometry;
using R3.Math;
using Math = System.Math;
internal static class Sa... |
e27c8fed3d8858e5da665de812e178febe3a282b | Fix watchdog tests | Fix watchdog tests
| tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools | tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs | agpl-3.0 | 1,588,883,022 | using Byond.TopicSender;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Client.Components;
using Tgstation.Server.Host.Components.Interop;
using Tgstatio... | using Byond.TopicSender;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Client.Components;
using Tgstation.Server.Host.Components.Interop;
using Tgstatio... |
b3b31da9502cb376eff0422434a19ca3c7cd3a18 | Passing the array empty handling option to TryParseString method | Passing the array empty handling option to TryParseString method
| takenet/lime-csharp | src/Lime.Protocol/Serialization/TypeUtilEx.cs | apache-2.0 | 1,588,882,204 | using System;
using System.Collections.Concurrent;
using System.Globalization;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
namespace Lime.Protocol.Serialization
{
/// <summary>
/// Provides metadata about the types.
/// </summary>
public static class TypeUtilEx
{
... | using System;
using System.Collections.Concurrent;
using System.Globalization;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
namespace Lime.Protocol.Serialization
{
/// <summary>
/// Provides metadata about the types.
/// </summary>
public static class TypeUtilEx
{
... |
2ec3e323d97c9e549f8e34cc3ca58c1b52544e3b | Code cleanup | Code cleanup
| unosquare/passcore,unosquare/passcore,unosquare/passcore,unosquare/passcore | src/PwnedPasswordsSearch/PwnedSearch.cs | mit | 1,588,881,700 | using System;
using System.IO;
using System.Net;
using System.Security.Cryptography;
using System.Text;
namespace PwnedPasswordsSearch
{
// Based on https://github.com/mikepound/pwned-search/blob/master/csharp/pwned-search.cs
public static class PwnedSearch
{
/// <summary>
/// Makes a cal... | using System;
using System.IO;
using System.Net;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Text;
namespace PwnedPasswordsSearch
{
// Based on https://github.com/mikepound/pwned-search/blob/master/csharp/pwned-search.cs
public static class PwnedSearch
{
... |
157ad3a8c98f7eaae0526a99cfa9c066bb2c8e69 | Need to make more of this configurable | Need to make more of this configurable
| roice3/Honeycombs | code/R3/R3.Core/Formats/PovRay.cs | mit | 1,588,881,594 | namespace R3.Core
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using R3.Geometry;
using R3.Math;
public class PovRay
{
public class Parameters
{
public double Scale = 1;
public bool Halfspace = false;
public bool ThinEdges = false;
p... | namespace R3.Core
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using R3.Geometry;
using R3.Math;
public class PovRay
{
public class Parameters
{
public double Scale = 1;
public bool Halfspace = false;
public bool ThinEdges = false;
p... |
5fb706604ec6b0e9eb2431aec8d5957c5776b56b | Add a complex infinity value | Add a complex infinity value
| roice3/Honeycombs | code/R3/R3.Core/Math/Infinity.cs | mit | 1,588,881,456 | namespace R3.Geometry
{
using System.Numerics;
/// <summary>
/// Class with some hackish methods for dealing with points projected to infinite.
/// </summary>
public static class Infinity
{
public static Vector3D InfinityVector = new Vector3D( double.PositiveInfinity, double.PositiveInfinity, double.PositiveI... | namespace R3.Geometry
{
using System.Numerics;
/// <summary>
/// Class with some hackish methods for dealing with points projected to infinite.
/// </summary>
public static class Infinity
{
public static Vector3D InfinityVector = new Vector3D( double.PositiveInfinity, double.PositiveInfinity, double.PositiveI... |
9a5f80cc7248ffe7fc6d4c73c53b78065b92d4ab | Make it a proper Clifford torus. | Make it a proper Clifford torus.
| roice3/Honeycombs | code/R3/R3.Core/Geometry/Torus.cs | mit | 1,588,881,436 | namespace R3.Geometry
{
using Math = System.Math;
using System.Diagnostics;
using System.Drawing;
/// <summary>
/// Class to generate tori on a 3-sphere
/// </summary>
public class Torus
{
/// <summary>
/// The things that define us.
/// </summary>
public class Parameters
{
public Parameters()
... | namespace R3.Geometry
{
using Math = System.Math;
using System.Diagnostics;
using System.Drawing;
/// <summary>
/// Class to generate tori on a 3-sphere
/// </summary>
public class Torus
{
/// <summary>
/// The things that define us.
/// </summary>
public class Parameters
{
public Parameters()
... |
ec0d7f5032bf5797b6e92bfbdd1fb506b87ed530 | Fencepost fix | Fencepost fix
| roice3/Honeycombs | code/R3/R3.Core/Drawing/ImageGrid.cs | mit | 1,588,881,374 | namespace R3.Drawing
{
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
/// <summary>
/// This will take a list of images and resize/combine them into a single image grid.
/// </summary>
public class ImageGrid
{
public class Settings
{
public Settings()
{
Columns = 4;
Row... | namespace R3.Drawing
{
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
/// <summary>
/// This will take a list of images and resize/combine them into a single image grid.
/// </summary>
public class ImageGrid
{
public class Settings
{
public Settings()
{
Columns = 4;
Row... |
0913eec713607f9c607d46fedae87419251c26e8 | Add color interpolation function. | Add color interpolation function.
| roice3/Honeycombs | code/R3/R3.Core/Drawing/ColorUtil.cs | mit | 1,588,881,203 | namespace R3.Core
{
using R3.Geometry;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using Math = System.Math;
public static class ColorUtil
{
// Takes Hue value as input, returns RGB vector.
// Copied from POV-Ray
public static Vector3D CH2RGB( double H )
{
... | namespace R3.Core
{
using R3.Geometry;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using Math = System.Math;
public static class ColorUtil
{
// Takes Hue value as input, returns RGB vector.
// Copied from POV-Ray
public static Vector3D CH2RGB( double H )
{
... |
f86f902d5c783dc291f3f7d5e28248b2036c2beb | update ArkId on creature import | update ArkId on creature import
| cadon/ARKStatsExtractor | ARKBreedingStats/library/CreatureCollection.cs | mit | 1,588,881,036 | using ARKBreedingStats.species;
using ARKBreedingStats.values;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
namespace ARKBreedingStats.Library
{
[JsonObject(MemberSerialization.OptIn)]
public class CreatureCollection
{
... | using ARKBreedingStats.species;
using ARKBreedingStats.values;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
namespace ARKBreedingStats.Library
{
[JsonObject(MemberSerialization.OptIn)]
public class CreatureCollection
{
... |
9780b324c3fe3dfe20a3441537ccce1e3bd49fc5 | PDOException - code, errorInfo | PDOException - code, errorInfo
fixes https://github.com/peachpiecompiler/peachpie/issues/746
- $code = SQLSTATE
- $errorInfo can be set
- hides internal fields
| iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie | src/PDO/Peachpie.Library.PDO/PDOException.cs | apache-2.0 | 1,588,880,933 | #nullable enable
using Pchp.Library.Spl;
using System;
using Pchp.Core;
namespace Peachpie.Library.PDO
{
/// <summary>
/// Exception raised by PDO objects
/// </summary>
/// <seealso cref="Pchp.Library.Spl.Exception" />
[PhpType(PhpTypeAttribute.InheritName)]
[PhpExtension(PDOConfiguration.Pd... | using Pchp.Library.Spl;
using System;
using Pchp.Core;
namespace Peachpie.Library.PDO
{
/// <summary>
/// Exception raised by PDO objects
/// </summary>
/// <seealso cref="Pchp.Library.Spl.Exception" />
[PhpType(PhpTypeAttribute.InheritName)]
[PhpExtension(PDOConfiguration.PdoExtensionName)]
... |
3bc9f02230636e772775323789d8347fe800fbf4 | more nullable enable | more nullable enable
| iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie | src/PDO/Peachpie.Library.PDO/PDO.Errors.cs | apache-2.0 | 1,588,880,685 | #nullable enable
using Pchp.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Peachpie.Library.PDO
{
partial class PDO
{
/// <summary>
/// Internal representation of PDO error.
/// </summary>
public struct ErrorInf... | using Pchp.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Peachpie.Library.PDO
{
partial class PDO
{
/// <summary>
/// Internal representation of PDO error.
/// </summary>
public struct ErrorInfo
{
... |
224572a5bdd66cb9b4f09fe185fbc11de1e4cc0e | Support all daemon kinds except global analysis | Support all daemon kinds except global analysis
| JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | resharper/resharper-unity/src/CSharp/Daemon/Stages/Dispatcher/UnityElementProblemAnalyzer.cs | apache-2.0 | 1,588,879,902 | using JetBrains.Annotations;
using JetBrains.ReSharper.Daemon.Stages.Dispatcher;
using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Plugins.Unity.ProjectModel;
using JetBrains.ReSharper.Psi.Tree;
namespace JetBrains.ReSharper.Plugins.Unity.CSharp.Daemon.Stages.Dispatcher
{
public abstract... | using JetBrains.Annotations;
using JetBrains.ReSharper.Daemon.Stages.Dispatcher;
using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Plugins.Unity.ProjectModel;
using JetBrains.ReSharper.Psi.Tree;
namespace JetBrains.ReSharper.Plugins.Unity.CSharp.Daemon.Stages.Dispatcher
{
public abstract... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.