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 |
|---|---|---|---|---|---|---|---|---|
c0cc2bcb146f7b509900fd4c73c68b08b830f851 | More improvements to file watcher. | More improvements to file watcher.
| vchelaru/Gum | Gum/Logic/FileWatch/FileWatchManager.cs | mit | 1,591,465,758 | using Gum.Managers;
using Gum.ToolStates;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ToolsUtilities;
namespace Gum.Logic.FileWatch
{
public class FileWatchManager : Singleton<FileWatchManager>
{
#region Fie... | using Gum.Managers;
using Gum.ToolStates;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ToolsUtilities;
namespace Gum.Logic.FileWatch
{
public class FileWatchManager : Singleton<FileWatchManager>
{
#region Fie... |
e8fece4cb5ab65a9bde437a610a91621afa7e57e | Remove dead code from Processor | Remove dead code from Processor
| canton7/RestEase | src/RestEase.SourceGenerator/Implementation/Processor.cs | mit | 1,591,465,057 | using Microsoft.CodeAnalysis;
namespace RestEase.SourceGenerator.Implementation
{
internal class Processor : SymbolVisitor
{
private readonly SourceGeneratorContext context;
private readonly RoslynImplementationFactory factory;
public Processor(SourceGeneratorContext context)
... | using Microsoft.CodeAnalysis;
namespace RestEase.SourceGenerator.Implementation
{
internal class Processor : SymbolVisitor
{
private readonly SourceGeneratorContext context;
private readonly RoslynImplementationFactory factory;
public Processor(SourceGeneratorContext context)
... |
b6f1f780be4dd49e385b44a81082c1160b687bde | Don't emit a MethodInfo field at all if Expressions aren't available | Don't emit a MethodInfo field at all if Expressions aren't available
This will avoid a warning in that case, as the field will never have had
a value assigned
| canton7/RestEase | src/Common/Implementation/Emission/MethodEmitter.Roslyn.cs | mit | 1,591,464,691 | using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using RestEase.Implementation.Analysis;
using RestEase.SourceGenerator.Implementati... | using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using RestEase.Implementation.Analysis;
using RestEase.SourceGenerator.Implementati... |
1453c0e0dd67721eb4bd035047e4259744b5df1f | Test Explorer execution takes place in-process using the TestAssemblyLoadContext. | Test Explorer execution takes place in-process using the TestAssemblyLoadContext.
| fixie/fixie,fixie/fixie | src/Fixie.TestAdapter/VsTestExecutor.cs | mit | 1,591,464,653 | namespace Fixie.TestAdapter
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using Internal;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;
using Micr... | namespace Fixie.TestAdapter
{
using System;
using System.Collections.Generic;
using System.IO.Pipes;
using System.Linq;
using Internal.Listeners;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;
using Microsoft.VisualS... |
fb81e2bf6bad84b5cb6e8ade0bf975943524b6d4 | plugin: minor formatting | plugin: minor formatting
My kingdom for a C# linter. :eyes:
| quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot | plugin/CactbotEventSource/CactbotEventSource.cs | apache-2.0 | 1,591,464,567 | using Advanced_Combat_Tracker;
using Newtonsoft.Json.Linq;
using RainbowMage.HtmlRenderer;
using RainbowMage.OverlayPlugin;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
namespace Cactbot {
// TODO: remove this in favor of th... | using Advanced_Combat_Tracker;
using Newtonsoft.Json.Linq;
using RainbowMage.HtmlRenderer;
using RainbowMage.OverlayPlugin;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
namespace Cactbot {
// TODO: remove this in favor of th... |
9fc502f86fe53d28ccdc0b4106b9bf7cd2d7275e | plugin: only start file watching after updater | plugin: only start file watching after updater
This should (hopefully!) prevent issues where file reloads as the
updater is happening cause cactbot updates to fail.
| quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot | plugin/CactbotEventSource/CactbotEventSource.cs | apache-2.0 | 1,591,464,534 | using Advanced_Combat_Tracker;
using Newtonsoft.Json.Linq;
using RainbowMage.HtmlRenderer;
using RainbowMage.OverlayPlugin;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
namespace Cactbot {
// TODO: remove this in favor of th... | using Advanced_Combat_Tracker;
using Newtonsoft.Json.Linq;
using RainbowMage.HtmlRenderer;
using RainbowMage.OverlayPlugin;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
namespace Cactbot {
// TODO: remove this in favor of th... |
0728687d4c201524d5df81ca9e9b7e6e3a29557b | Test Explorer discovery takes place in-process using the TestAssemblyLoadContext. | Test Explorer discovery takes place in-process using the TestAssemblyLoadContext.
| fixie/fixie,fixie/fixie | src/Fixie.TestAdapter/VsTestDiscoverer.cs | mit | 1,591,463,878 | namespace Fixie.TestAdapter
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using Internal;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;
using Microsoft.VisualStudio.Test... | namespace Fixie.TestAdapter
{
using System;
using System.Collections.Generic;
using System.IO.Pipes;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
using Int... |
38f422ff691e4383d2738567f2712fbe63fe1135 | Minor colors library enhancements | Minor colors library enhancements
| Thraka/SadConsole | SadConsole/UI/Themes/Library.cs | mit | 1,591,462,638 | using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using SadConsole.UI.Controls;
namespace SadConsole.UI.Themes
{
/// <summary>
/// The library of themes. Holds the themes of all controls.
/// </summary>
[DataContract]
public class Library
{
... | using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using SadConsole.UI.Controls;
namespace SadConsole.UI.Themes
{
/// <summary>
/// The library of themes. Holds the themes of all controls.
/// </summary>
[DataContract]
public class Library
{
... |
3e48ee4be43f792e939af9aa370d08f0ad7a9d55 | Start of Font overhaul (not finished) | Start of Font overhaul (not finished)
| Thraka/SadConsole | SadConsole/Font.cs | mit | 1,591,462,627 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using SadRogue.Primitives;
namespace SadConsole
{
public interface IFont
{
Rectangle SolidGlyphRectangle { get; }
Rectangle Unsupported... | using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using SadRogue.Primitives;
namespace SadConsole
{
/// <summary>
/// Represents a graphical font used by SadConsole.
/// </summary>
[DataContract]
public seale... |
6c7e253874385f34b819b0f031c9b1cda9b555a8 | Fix draw string instruction | Fix draw string instruction
| Thraka/SadConsole | SadConsole/Instructions/DrawString.cs | mit | 1,591,462,578 | using System;
using Console = SadConsole.Console;
using SadRogue.Primitives;
namespace SadConsole.Instructions
{
/// <summary>
/// Draws a string to a console as if someone was typing.
/// </summary>
public class DrawString : InstructionBase
{
private ColoredString _text;
private C... | using System;
using Console = SadConsole.Console;
using SadRogue.Primitives;
namespace SadConsole.Instructions
{
/// <summary>
/// Draws a string to a console as if someone was typing.
/// </summary>
public class DrawString : InstructionBase
{
private ColoredString _text;
private C... |
20b09c36b03490399bd5060e3772c2b49863c7bf | Minor changes for usability of cursor | Minor changes for usability of cursor
| Thraka/SadConsole | SadConsole/Components/Cursor.cs | mit | 1,591,462,564 | using System;
using System.Collections.Generic;
using SadRogue.Primitives;
using SadConsole.Input;
using SadConsole.Effects;
namespace SadConsole.Components
{
/// <summary>
/// A cursor that is attached to a <see cref="Console"/> used for printing.
/// </summary>
public class Cursor: IComponent
{
... | using System;
using System.Collections.Generic;
using SadRogue.Primitives;
using SadConsole.Input;
using SadConsole.Effects;
namespace SadConsole.Components
{
/// <summary>
/// A cursor that is attached to a <see cref="Console"/> used for printing.
/// </summary>
public class Cursor: IComponent
{
... |
54d16af982fa60339bf72790cd46e8efcca2d03c | Add documentation | Add documentation
| autofac/Autofac,autofac/Autofac | src/Autofac/Core/ImplicitRegistrationSource.cs | mit | 1,591,460,565 | // This software is part of the Autofac IoC container
// Copyright © 2007 - 2008 Autofac Contributors
// https://autofac.org
//
// 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
// ... | // This software is part of the Autofac IoC container
// Copyright © 2007 - 2008 Autofac Contributors
// https://autofac.org
//
// 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
// ... |
efd5e144103cfb7a06563674f23d712017550dd2 | Clarify why ruleset bindable must be set at the BDL of any base test scene | Clarify why ruleset bindable must be set at the BDL of any base test scene
| UselessToucan/osu,smoogipooo/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,ppy/osu | osu.Game/Tests/Visual/PlayerTestScene.cs | mit | 1,591,460,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.Linq;
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Te... | // 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.Linq;
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Te... |
0f78af7252a08179cce65ee47d9bbe3acbf70c00 | Remove unnecessary disabled check | Remove unnecessary disabled check
I have a bad memory here, til.
| NeoAdonis/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu-new,peppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu | osu.Game/Tests/Visual/OsuTestScene.cs | mit | 1,591,460,370 | // 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.Threading.Tasks;
using JetBrains.Annotations;
using osu.Framework;
using ... | // 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.Threading.Tasks;
using JetBrains.Annotations;
using osu.Framework;
using ... |
f77cd772bccfe1f735bcff2df7525dbeed3cd5ba | Build fail fix | Build fail fix
| nunit/nunit3-vs-adapter,nunit/nunit3-vs-adapter | src/NUnitTestAdapter/NUnitEngine/NUnitDiscoveryTestClasses.cs | mit | 1,591,459,618 | // ***********************************************************************
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
//
// 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 wit... | // ***********************************************************************
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
//
// 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 wit... |
2d07f0c916a4f32fe99db4e36401c4deabf0eb3e | Fix a zoom being interrupted if the camera wall was disabled | Fix a zoom being interrupted if the camera wall was disabled
| samfun123/KtaneTwitchPlays | TwitchPlaysAssembly/Src/UI/ModuleCameras.cs | mit | 1,591,457,885 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEngine;
using UnityEngine.UI;
using static ModuleCommands;
public class ModuleCameras : MonoBehaviour
{
/// <summary>
/// Camera layer used on all modules/cameras when int... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEngine;
using UnityEngine.UI;
using static ModuleCommands;
public class ModuleCameras : MonoBehaviour
{
/// <summary>
/// Camera layer used on all modules/cameras when int... |
dcadebd10229cbf3578f298646d7e64522c8fb41 | Format file, refactor code. | Format file, refactor code.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | src/MitternachtBot/Extensions/StringExtensions.cs | mit | 1,591,457,224 | using System;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Mitternacht.Extensions {
public static class StringExtensions {
/// <summary>
/// Easy use of fast, efficient case-insensitive Contains check with StringComparison Mem... | using System;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Mitternacht.Extensions
{
public static class StringExtensions
{
/// <summary>
/// Easy use of fast, efficient case-insen... |
b3370d72bb832553a592f5c381db11085f076b00 | Add domain "discord.com" to invite link filter regex. | Add domain "discord.com" to invite link filter regex.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | src/MitternachtBot/Extensions/StringExtensions.cs | mit | 1,591,456,200 | using System;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Mitternacht.Extensions
{
public static class StringExtensions
{
/// <summary>
/// Easy use of fast, efficient case-insen... | using System;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Mitternacht.Extensions
{
public static class StringExtensions
{
/// <summary>
/// Easy use of fast, efficient case-insen... |
d081b2e0227c5d6fbf7ae36f03c7019897f8f9cc | Added Widget.KeyboardFocusChanged event | Added Widget.KeyboardFocusChanged event
| rds1983/Myra,rds1983/Myra | src/Myra/Graphics2D/UI/Widget.cs | mit | 1,591,456,066 | using System;
using System.ComponentModel;
using Myra.Graphics2D.UI.Styles;
using Myra.Utility;
using System.Xml.Serialization;
using Myra.MML;
using Myra.Graphics2D.UI.Properties;
using Myra.Attributes;
#if !STRIDE
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
#else
using Stride.Core.Mathematics... | using System;
using System.ComponentModel;
using Myra.Graphics2D.UI.Styles;
using Myra.Utility;
using System.Xml.Serialization;
using Myra.MML;
using Myra.Graphics2D.UI.Properties;
using Myra.Attributes;
#if !STRIDE
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
#else
using Stride.Core.Mathematics... |
5950b0a7bfe3e17691048ed788543acb86597450 | set parsing fix | set parsing fix
| splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net | IPTables.Net/Iptables/IpSet/Parser/IpSetSetParser.cs | apache-2.0 | 1,591,455,930 | using System;
using IPTables.Net.Iptables.DataTypes;
namespace IPTables.Net.Iptables.IpSet.Parser
{
class IpSetSetParser
{
private readonly string[] _arguments;
public int Position = 0;
private IpSetSet _set;
public IpSetSetParser(string[] arguments, IpSetSet set)
{
... | using System;
using IPTables.Net.Iptables.DataTypes;
namespace IPTables.Net.Iptables.IpSet.Parser
{
class IpSetSetParser
{
private readonly string[] _arguments;
public int Position = 0;
private IpSetSet _set;
public IpSetSetParser(string[] arguments, IpSetSet set)
{
... |
635ae7673a5212dff7a6fcc2d1607b27f1bd505d | Fix: Crash caused by console largest width not being set | Fix: Crash caused by console largest width not being set
| Piotrekol/StreamCompanion,Piotrekol/StreamCompanion | osu!StreamCompanion/Code/Core/Loggers/ConsoleLogger.cs | mit | 1,591,453,875 | using System;
using System.CodeDom.Compiler;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using osu_StreamCompanion.Code.Helpers;
using StreamCompanionTypes;
using StreamCompanionTypes.Enums;
using StreamCompanionTypes.Interfaces.Services;
namespace osu_StreamCom... | using System;
using System.CodeDom.Compiler;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using osu_StreamCompanion.Code.Helpers;
using StreamCompanionTypes;
using StreamCompanionTypes.Enums;
using StreamCompanionTypes.Interfaces.Services;
namespace osu_StreamCom... |
36fbf2e8e50d091bca304430ed5165991c427d90 | AddonService: Actually send empty response when supposed to | AddonService: Actually send empty response when supposed to
| kokolihapihvi/RockSniffer,kokolihapihvi/RockSniffer | RockSniffer/Addons/AddonServiceListener.cs | mit | 1,591,453,820 | using Newtonsoft.Json;
using RockSniffer.Addons.Storage;
using RockSniffer.Configuration;
using RockSnifferLib.Events;
using RockSnifferLib.Logging;
using RockSnifferLib.RSHelpers;
using RockSnifferLib.Sniffing;
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.... | using Newtonsoft.Json;
using RockSniffer.Addons.Storage;
using RockSniffer.Configuration;
using RockSnifferLib.Events;
using RockSnifferLib.Logging;
using RockSnifferLib.RSHelpers;
using RockSnifferLib.Sniffing;
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.... |
3f6f23e268ec138f23ca75045fcceb52dba89cc1 | Try to load plugin from `.dll` instead of `.exe` | Try to load plugin from `.dll` instead of `.exe`
| Xeeynamo/KingdomHearts | OpenKh.Tools.BarEditor/Services/ToolsLoaderService.cs | mit | 1,591,453,643 | using OpenKh.Kh2;
using OpenKh.Tools.Common;
using System;
using System.IO;
using System.Linq;
using System.Windows;
using Xe.Tools;
namespace OpenKh.Tools.BarEditor.Services
{
public static class ToolsLoaderService
{
public static ToolInvokeDesc.ContentChangeInfo? OpenTool(string fileName, string temporaryFileNa... | using OpenKh.Kh2;
using OpenKh.Tools.Common;
using System;
using System.IO;
using System.Linq;
using System.Windows;
using Xe.Tools;
namespace OpenKh.Tools.BarEditor.Services
{
public static class ToolsLoaderService
{
public static ToolInvokeDesc.ContentChangeInfo? OpenTool(string fileName, string temporaryFileNa... |
5b51b949fbfae8ea72c26fa22a0912bf3f553120 | Add failing test for overridden object members | Add failing test for overridden object members
| blairconrad/FakeItEasy,thomaslevesque/FakeItEasy,FakeItEasy/FakeItEasy,thomaslevesque/FakeItEasy,FakeItEasy/FakeItEasy,blairconrad/FakeItEasy | tests/FakeItEasy.Specs/ObjectMembersSpecs.cs | mit | 1,591,452,982 | namespace FakeItEasy.Specs
{
using FakeItEasy.Core;
using FluentAssertions;
using Xbehave;
public static class ObjectMembersSpecs
{
[Scenario]
public static void DefaultEqualsWithSelf(IFoo fake, bool equals)
{
"Given a fake"
.x(() => f... | namespace FakeItEasy.Specs
{
using FakeItEasy.Core;
using FluentAssertions;
using Xbehave;
public static class ObjectMembersSpecs
{
[Scenario]
public static void DefaultEqualsWithSelf(IFoo fake, bool equals)
{
"Given a fake"
.x(() => f... |
3afeb3da1b445619b4befde3dbc0e1cfd3dabebd | Add tests for hidden methods | Add tests for hidden methods
| FakeItEasy/FakeItEasy,FakeItEasy/FakeItEasy,thomaslevesque/FakeItEasy,blairconrad/FakeItEasy,thomaslevesque/FakeItEasy,blairconrad/FakeItEasy | tests/FakeItEasy.Specs/ObjectMembersSpecs.cs | mit | 1,591,452,982 | namespace FakeItEasy.Specs
{
using FakeItEasy.Core;
using FluentAssertions;
using Xbehave;
public static class ObjectMembersSpecs
{
[Scenario]
public static void DefaultEqualsWithSelf(IFoo fake, bool equals)
{
"Given a fake"
.x(() => f... | namespace FakeItEasy.Specs
{
using FakeItEasy.Core;
using FluentAssertions;
using Xbehave;
public static class ObjectMembersSpecs
{
[Scenario]
public static void DefaultEqualsWithSelf(IFoo fake, bool equals)
{
"Given a fake"
.x(() => f... |
918d86dcd833f30bb9ded1769814dc63fc5346d2 | Remove unnecessary EnsureNonGeneric method | Remove unnecessary EnsureNonGeneric method
| blairconrad/FakeItEasy,FakeItEasy/FakeItEasy,thomaslevesque/FakeItEasy,thomaslevesque/FakeItEasy,blairconrad/FakeItEasy,FakeItEasy/FakeItEasy | src/FakeItEasy/Core/MethodInfoManager.cs | mit | 1,591,452,982 | namespace FakeItEasy.Core
{
using System;
using System.Collections.Concurrent;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
/// <summary>
/// Handles comparisons of instances of <see cref="MethodInfo"/>.
/// </summary>
internal class ... | namespace FakeItEasy.Core
{
using System;
using System.Collections.Concurrent;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
/// <summary>
/// Handles comparisons of instances of <see cref="MethodInfo"/>.
/// </summary>
internal class ... |
36ada1fe446abac8c5cdec6e409930c2c017cb11 | fixed BinaryExpressionTests to ignore fallback | fixed BinaryExpressionTests to ignore fallback
| dadhi/FastExpressionCompiler,dadhi/FastExpressionCompiler | test/FastExpressionCompiler.UnitTests/BinaryExpressionTests.cs | mit | 1,591,450,863 | using System;
using NUnit.Framework;
#if LIGHT_EXPRESSION
using ExpressionType = System.Linq.Expressions.ExpressionType;
using static FastExpressionCompiler.LightExpression.Expression;
namespace FastExpressionCompiler.LightExpression.UnitTests
#else
using System.Linq.Expressions;
using static System.Linq.Expressions.... | using System;
using NUnit.Framework;
#if LIGHT_EXPRESSION
using ExpressionType = System.Linq.Expressions.ExpressionType;
using static FastExpressionCompiler.LightExpression.Expression;
namespace FastExpressionCompiler.LightExpression.UnitTests
#else
using System.Linq.Expressions;
using static System.Linq.Expressions.... |
5dc7ea7e56263d1ba944a9c5111dd0b39efb990c | Fix deadlock | Fix deadlock
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,449,201 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
fac7be75b37011e5a25facb6243e6a0a394138bf | remove control statements from middle of a method | remove control statements from middle of a method
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,449,112 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
6aed7f35b04f4606bb20cb1579f3922fecea76fa | Remove return values | Remove return values
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,448,869 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
555844307678faa22a3e932569705597f3f66e57 | add parameters to set comparison | add parameters to set comparison
| splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net | IPTables.Net/Iptables/IpSet/IpSetSet.cs | apache-2.0 | 1,591,448,413 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Policy;
using System.Text;
using IPTables.Net.Iptables.DataTypes;
using IPTables.Net.Iptables.IpSet.Parser;
using IPTables.Net.Netfilter;
using IPTables.Net.Supporting;
namespace IPTables.Net.Iptables.IpSet
{
/// <summary>
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Policy;
using System.Text;
using IPTables.Net.Iptables.DataTypes;
using IPTables.Net.Iptables.IpSet.Parser;
using IPTables.Net.Netfilter;
using IPTables.Net.Supporting;
namespace IPTables.Net.Iptables.IpSet
{
/// <summary>
... |
e79fcb77f131e78fdaef06d640b298a4229018b0 | fixed WebAssemblyPreferences for server side blazor | fixed WebAssemblyPreferences for server side blazor
| bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework | src/Client/Web/Bit.Client.Web.Wasm/Implementation/WebAssemblyPreferences.cs | mit | 1,591,446,941 | using Microsoft.JSInterop;
using System;
using System.Collections.Concurrent;
using System.Globalization;
using Xamarin.Essentials.Interfaces;
namespace Bit.Client.Web.Wasm.Implementation
{
public class WebAssemblyPreferences : IPreferences
{
private readonly IJSInProcessRuntime? _wasm_js_runtime;
... | using Microsoft.JSInterop;
using System;
using System.Collections.Concurrent;
using System.Globalization;
using Xamarin.Essentials.Interfaces;
namespace Bit.Client.Web.Wasm.Implementation
{
public class WebAssemblyPreferences : IPreferences
{
private readonly IJSInProcessRuntime? _wasm_js_runtime;
... |
8b3fd716af867a0d7b0832740762a6c706c876d3 | Less flicker on DrawPanel rendering. | Less flicker on DrawPanel rendering.
| Xeeynamo/KingdomHearts | OpenKh.Tools.Common/Controls/DrawPanel.cs | mit | 1,591,446,310 | using OpenKh.Engine.Renders;
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using Xe.Drawing;
using static OpenKh.Tools.Common.Depe... | using OpenKh.Engine.Renders;
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using Xe.Drawing;
using static OpenKh.Tools.Common.Depe... |
6287ab16944384aa92d0005f453c0cdec7100344 | [Modify] Add it | [Modify] Add it
| sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Net/WebHeaderCollection.cs | mit | 1,591,445,624 | #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-... |
a0734624e0a1d4bacf926954d3d38bc6c183c6d1 | Fix CodeScene | Fix CodeScene
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,445,186 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
a9ee27cc53e82bb542a2338a5a39de66440740a9 | Remove duplicated ; | Remove duplicated ;
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,444,628 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
803cad67a17e48a586eea5f8462d3823622279ec | Improve logs | Improve logs
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,444,351 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
1a69b429b618ac63e6247ed9ee6f48394bca14ec | Another small fix | Another small fix
| rds1983/Myra,rds1983/Myra | src/Myra/Graphics2D/UI/Widget.cs | mit | 1,591,444,225 | using System;
using System.ComponentModel;
using Myra.Graphics2D.UI.Styles;
using Myra.Utility;
using System.Xml.Serialization;
using Myra.MML;
using Myra.Graphics2D.UI.Properties;
using Myra.Attributes;
#if !STRIDE
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
#else
using Stride.Core.Mathematics... | using System;
using System.ComponentModel;
using Myra.Graphics2D.UI.Styles;
using Myra.Utility;
using System.Xml.Serialization;
using Myra.MML;
using Myra.Graphics2D.UI.Properties;
using Myra.Attributes;
#if !STRIDE
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
#else
using Stride.Core.Mathematics... |
919a34380c1f55af8f8a3a7f1937512e3a93b0d6 | Include .lnk files when scanning directory for executables | Include .lnk files when scanning directory for executables
| JosefNemec/Playnite,JosefNemec/Playnite,JosefNemec/Playnite | source/Playnite.Common/Programs.cs | mit | 1,591,444,200 | using Microsoft.Win32;
using Playnite.SDK;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Security.Principal;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using Windo... | using Microsoft.Win32;
using Playnite.SDK;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Security.Principal;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using Windo... |
e00550356fef3617d7d2ddcc09645a94080f77c8 | ipset missing space | ipset missing space
| splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net | IPTables.Net/Iptables/Modules/IpSet/SetTargetModule.cs | apache-2.0 | 1,591,442,401 | using System;
using System.Collections.Generic;
using System.Text;
using IPTables.Net.Exceptions;
using IPTables.Net.Iptables.DataTypes;
using IPTables.Net.Iptables.Helpers;
namespace IPTables.Net.Iptables.Modules.IpSet
{
public class SetTargetModule : ModuleBase, IEquatable<SetTargetModule>, IIpTablesModule
... | using System;
using System.Collections.Generic;
using System.Text;
using IPTables.Net.Exceptions;
using IPTables.Net.Iptables.DataTypes;
using IPTables.Net.Iptables.Helpers;
namespace IPTables.Net.Iptables.Modules.IpSet
{
public class SetTargetModule : ModuleBase, IEquatable<SetTargetModule>, IIpTablesModule
... |
60b19eb89b7dd5960ebc252fe2d7e2d58a144a69 | Fix #271 (thanks muffmolch) | Fix #271 (thanks muffmolch)
| zapadi/redmine-net-api | src/redmine-net-api/Types/Upload.cs | apache-2.0 | 1,591,440,880 | /*
Copyright 2011 - 2019 Adrian Popescu.
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 agre... | /*
Copyright 2011 - 2019 Adrian Popescu.
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 agre... |
1029b90c01a93c2357372cd78251db9c3d02390f | Use Graphics from event (#149) | Use Graphics from event (#149)
Avoid creating a temporary Image because it wastes
plenty of memory resources. | GoogleCloudPlatform/iap-desktop,GoogleCloudPlatform/iap-desktop,GoogleCloudPlatform/iap-desktop | Google.Solutions.IapDesktop.Application/Services/Windows/FlatVerticalTabControl.cs | apache-2.0 | 1,591,440,876 | //
// Copyright 2020 Google LLC
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Ver... | //
// Copyright 2020 Google LLC
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Ver... |
df0e05e4a8872d9442f6225829018c09ba395ae0 | fixes formatting | fixes formatting
| thoemmi/7Zip4Powershell,thoemmi/7Zip4Powershell | 7Zip4Powershell/Compress7Zip.cs | lgpl-2.1 | 1,591,440,019 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Security;
using JetBrains.Annotations;
using SevenZip;
namespace SevenZip4PowerShell {
public enum OutputFormat {
Auto,
SevenZip,
Zip,
GZip,
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Security;
using JetBrains.Annotations;
using SevenZip;
namespace SevenZip4PowerShell {
public enum OutputFormat {
Auto,
SevenZip,
Zip,
GZip,
... |
25063d9e05692779228ef7e3815aa018d92e76cc | Add switch to PreserveDirectoryRoot | Add switch to PreserveDirectoryRoot
| thoemmi/7Zip4Powershell,thoemmi/7Zip4Powershell | 7Zip4Powershell/Compress7Zip.cs | lgpl-2.1 | 1,591,439,955 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Security;
using JetBrains.Annotations;
using SevenZip;
namespace SevenZip4PowerShell {
public enum OutputFormat {
Auto,
SevenZip,
Zip,
GZip,
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Security;
using JetBrains.Annotations;
using SevenZip;
namespace SevenZip4PowerShell {
public enum OutputFormat {
Auto,
SevenZip,
Zip,
GZip,
... |
6867c487fc4978214e2465522ddd0d6665d02910 | Change UseServerSide parameter in E2E test fixture | Change UseServerSide parameter in E2E test fixture
| duracellko/planningpoker4azure,duracellko/planningpoker4azure,duracellko/planningpoker4azure | test/Duracellko.PlanningPoker.E2ETest/Server/ServerFixture.cs | mit | 1,591,438,580 | using System;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Duracellko.PlanningPoker.Web;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Hosting.Server;
using Microsoft.AspNetCore.Hosting.Server.Features;
using Microsoft.Extensions.Hosting;
... | using System;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Duracellko.PlanningPoker.Web;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Hosting.Server;
using Microsoft.AspNetCore.Hosting.Server.Features;
using Microsoft.Extensions.Hosting;
... |
5afd22a5074fdff399ef93fcf7273a783fb871cc | Fix NRE with CustomGamePlayedWhileFarming | Fix NRE with CustomGamePlayedWhileFarming
| JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm | ArchiSteamFarm/Bot.cs | apache-2.0 | 1,591,434,845 | // _ _ _ ____ _ _____
// / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___
// / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \
// / ___ \ | | | (__ | | | || | ___) || |_| __/| ... | // _ _ _ ____ _ _____
// / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___
// / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \
// / ___ \ | | | (__ | | | || | ___) || |_| __/| ... |
36fc1a63fc46ce93a9f0cdcdabd1bf164b987be1 | array_merge() cleanup | array_merge() cleanup
| iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie | src/Peachpie.Library/Arrays.cs | apache-2.0 | 1,591,433,722 | using Pchp.Core;
using Pchp.Library.Resources;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Pchp.Library
{
#region Enumerations
/// <summa... | using Pchp.Core;
using Pchp.Library.Resources;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Pchp.Library
{
#region Enumerations
/// <summa... |
cce860040b897880a5694f57d73ed1e22a318494 | Improve an error message | Improve an error message
| effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer | Dev/Editor/Effekseer/Program.cs | mit | 1,591,433,714 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Reflection;
using System.Runtime.ExceptionServices;
using EfkN = Effekseer.swig.EffekseerNative;
namespace Effekseer
{
class Program
{
/// <summary>
//... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Reflection;
using System.Runtime.ExceptionServices;
using EfkN = Effekseer.swig.EffekseerNative;
namespace Effekseer
{
class Program
{
/// <summary>
//... |
a8e439f4983da6f779dea538a47fb4ed2dad406f | Address code-review comments | Address code-review comments
In unit tests, assertions are usually better than throwing exceptions,
because the test framework often includes more detail in the failure
text (such as the actual value that didn't match the expected value).
| sillsdev/LfMerge,ermshiperete/LfMerge,sillsdev/LfMerge,sillsdev/LfMerge,ermshiperete/LfMerge,ermshiperete/LfMerge | src/LfMerge.Core.Tests/Actions/SynchronizeActionTests.cs | mit | 1,591,433,713 | // Copyright (c) 2016-2018 SIL International
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using LfMerge.Core.Actions;
using LfMerge.Core.LanguageForge.Model;
using LfMerge.Core.... | // Copyright (c) 2016-2018 SIL International
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using LfMerge.Core.Actions;
using LfMerge.Core.LanguageForge.Model;
using LfMerge.Core.... |
aac7c08ca8edffe157d3fafae19f153d9344c4d9 | Fix blank combobox after adding new feed and prevent double loads | Fix blank combobox after adding new feed and prevent double loads
| campersau/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,campersau/NuGetPackageExplorer | PackageViewModel/PackageChooser/PackageChooserViewModel.cs | mit | 1,591,433,034 | using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Input;
using NuGet.Packaging;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGetPackageExplorer.Types;
using NuGetPe;
using Package... | using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Input;
using NuGet.Packaging;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGetPackageExplorer.Types;
using NuGetPe;
using Package... |
15d308a509e60bed425d4aa350e2f132d3513d94 | updated class description | updated class description
| 6bee/aqua-core | src/Aqua/Dynamic/PropertySet.cs | mit | 1,591,433,014 | // Copyright (c) Christof Senn. All rights reserved. See license.txt in the project root for license information.
namespace Aqua.Dynamic
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
/// <summary>
/// A s... | // Copyright (c) Christof Senn. All rights reserved. See license.txt in the project root for license information.
namespace Aqua.Dynamic
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
/// <summary>
/// A s... |
ddbd78bf5f3c4296c73e7e3ec967c314b1ad10e4 | Edit using | Edit using
| bolorundurowb/vCardLib | vCardLib.Tests/ModelTests/PhoneNumberTests.cs | mit | 1,591,432,823 | // Created by Bolorunduro Winner-Timothy on 11/22/2016 at 5:38 AM
using NUnit.Framework;
using vCardLib.Enums;
using vCardLib.Models;
namespace vCardLib.Tests.ModelTests
{
[TestFixture]
public class PhoneNumberTests
{
[Test]
public void PhoneNumberIsStable()
{
Assert.DoesNotThrow(delegate
{
var p... | // Created by Bolorunduro Winner-Timothy on 11/22/2016 at 5:38 AM
using NUnit.Framework;
using vCardLib.Models;
namespace vCardLib.Tests.ModelTests
{
[TestFixture]
public class PhoneNumberTests
{
[Test]
public void PhoneNumberIsStable()
{
Assert.DoesNotThrow(delegate
{
var phoneNumber = new Phone... |
02353a8571d2a1d037c7d1350b62fdcc70b41f5b | StringBuilder object pool | StringBuilder object pool
| iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie | src/Peachpie.Library/Utils.cs | apache-2.0 | 1,591,432,751 | using Microsoft.Extensions.ObjectPool;
using Pchp.Core;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System_DateTime = System.DateTime;
namespace Pchp.Library
{
internal static class PathUtils
... | using Microsoft.Extensions.ObjectPool;
using Pchp.Core;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System_DateTime = System.DateTime;
namespace Pchp.Library
{
internal static class PathUtils
... |
2a8b4e376c3e5d2a8cb12ec0bc88eafb456288bd | OrderedDictionary cleanup | OrderedDictionary cleanup
- Span<T>.ToArray() instead of Array.Clone()
- cleanup
| iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie | src/Peachpie.Runtime/OrderedDictionary.cs | apache-2.0 | 1,591,432,727 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using Pchp.Core.Utilities;
using TValue = Pchp.Core.PhpValue;
namespace Pchp.Core
{
#region SetOperations
/// <summary>
///... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using Pchp.Core.Utilities;
using TValue = Pchp.Core.PhpValue;
namespace Pchp.Core
{
#region SetOperations
/// <summary>
///... |
ecba4eadbfc0703f43e0d0ef48fda2647579e893 | Ignore redundant resize event (#148) | Ignore redundant resize event (#148)
This fixes an issue where the pane thought the control
was reconnecting, although it was not, which in turn
caused the Full Screen menu item to be disabled. | GoogleCloudPlatform/iap-desktop,GoogleCloudPlatform/iap-desktop,GoogleCloudPlatform/iap-desktop | Google.Solutions.IapDesktop.Application/Services/Windows/RemoteDesktop/RemoteDesktopPane.cs | apache-2.0 | 1,591,432,660 | //
// Copyright 2020 Google LLC
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Ver... | //
// Copyright 2020 Google LLC
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Ver... |
eed0b4594f4319c5c928d25c23f5880f40e693ee | Fix read sources from settings in none windows store versions | Fix read sources from settings in none windows store versions
| campersau/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,campersau/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer | PackageExplorer/MefServices/SettingsManager.cs | mit | 1,591,432,123 | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using System.ComponentModel.Composition;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using Newtonsoft.Json;
using NuGetPackageExplorer.Types;
usi... | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using System.ComponentModel.Composition;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using Newtonsoft.Json;
using NuGetPackageExplorer.Types;
usi... |
c578f366443830a8d330015a11cd3c9585aa9e57 | Block CSP reports | Block CSP reports
| chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck | Browser/Handling/ResourceRequestHandlerBase.cs | mit | 1,591,430,425 | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Text.RegularExpressions;
using CefSharp;
using TweetDuck.Utils;
using TweetLib.Core.Utils;
namespace TweetDuck.Browser.Handling{
class ResourceRequestHandlerBase : ResourceRequestHandler{
... | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Text.RegularExpressions;
using CefSharp;
using TweetDuck.Utils;
using TweetLib.Core.Utils;
namespace TweetDuck.Browser.Handling{
class ResourceRequestHandlerBase : ResourceRequestHandler{
... |
ea64870fe3aefca420746b4e974c43c47fe47a21 | array_merge() cleanup | array_merge() cleanup
| peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie | src/Peachpie.Library/Arrays.cs | apache-2.0 | 1,591,428,834 | using Pchp.Core;
using Pchp.Library.Resources;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Pchp.Library
{
#region Enumerations
/// <summa... | using Pchp.Core;
using Pchp.Library.Resources;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Pchp.Library
{
#region Enumerations
/// <summa... |
e90ea72d72e6b107785d2b11459dda1b75de9936 | Review fix | Review fix
| OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | src/OmniSharp.Host/FileWatching/ManualFileSystemWatcher.cs | mit | 1,591,424,183 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace OmniSharp.FileWatching
{
internal partial class ManualFileSystemWatcher : IFileSystemWatcher, IFileSystemNotifier
{
private readonly object _gate = new object();
private readonly Dictionary<string, Ca... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace OmniSharp.FileWatching
{
internal partial class ManualFileSystemWatcher : IFileSystemWatcher, IFileSystemNotifier
{
private readonly object _gate = new object();
private readonly Dictionary<string, Ca... |
1bb219a09d5896814671f76326e3e81303c6f7e4 | added translation entry: EnableCustomFontCheckboxText | added translation entry: EnableCustomFontCheckboxText
| Willster419/RelhaxModpack,Willster419/RelicModManager | RelhaxModpack/RelhaxModpack/Common/Translations.cs | apache-2.0 | 1,591,419,584 | using RelhaxModpack.UI;
using RelhaxModpack.Windows;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media;
namespace... | using RelhaxModpack.UI;
using RelhaxModpack.Windows;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media;
namespace... |
e141c85aae99224a02a048ec51323c6dae9af652 | typos fixed in comments | typos fixed in comments
| RobHolme/HL7-Powershell-Module,RobHolme/HL7-Powershell-Module | HL7Tools/SelectHL7Item.cs | mit | 1,591,419,060 | /* Filename: SelectHl7Item.cs
*
* Author: Rob Holme (rob@holme.com.au)
*
* Credits: Code to handle the Path and LiteralPath parameter sets, and expansion of wildcards is based
* on Oisin Grehan's post: http://www.nivot.org/blog/post/2008/11/19/Quickstart1ACmdletThatProcess... | /* Filename: SelectHl7Item.cs
*
* Author: Rob Holme (rob@holme.com.au)
*
* Credits: Code to handle the Path and LiteralPath parameter sets, and expansion of wildcards is based
* on Oisin Grehan's post: http://www.nivot.org/blog/post/2008/11/19/Quickstart1ACmdletThatProcess... |
305d121c9bad03a6077053b322270ec4ca90a7cc | trying to fix path expansion of '.\' - still not resolved | trying to fix path expansion of '.\' - still not resolved
| RobHolme/HL7-Powershell-Module,RobHolme/HL7-Powershell-Module | HL7Tools/ReceiveHL7Message.cs | mit | 1,591,419,039 | /* Filename: ReceiveHL7Message.cs
*
* Author: Rob Holme (rob@holme.com.au)
*
* Date: 25/02/2017
*
* Notes: Implements a cmdlet to receive a MLLP framed HL7 message via TCP. Messages reveived are written to disk.
*
*/
namespace HL7Tools
{
using System.IO;
using System.Managemen... | /* Filename: ReceiveHL7Message.cs
*
* Author: Rob Holme (rob@holme.com.au)
*
* Date: 25/02/2017
*
* Notes: Implements a cmdlet to receive a MLLP framed HL7 message via TCP. Messages reveived are written to disk.
*
*/
namespace HL7Tools
{
using System.IO;
using System.Managemen... |
0805100995678a5894c51dbfec6d7fbf5e56690f | Fixing libs usage | Fixing libs usage
| dimmpixeye/Unity3dTools | Runtime/LibEcs/ent.handle.components.cs | mit | 1,591,417,326 | using System;
using System.Diagnostics;
using Debug = UnityEngine.Debug;
#if ACTORS_DEBUG
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using Unity.IL2CPP.CompilerServices;
#endif
namespace Pixeye.Actors
{
public unsafe partial struct ent
{
[Conditional("ACTORS_DEBUG")]
stat... | using System;
using System.Diagnostics;
using Debug = UnityEngine.Debug;
namespace Pixeye.Actors
{
public unsafe partial struct ent
{
[Conditional("ACTORS_DEBUG")]
static void DebugCheckActive<T>(ent entity)
{
#if UNITY_EDITOR
if (!entity.exist)
{
Kernel.Debugger.Log(LogType.NOT_A... |
a8d8c68a82a18e9298448d0ff2ad0b3fcbcb90cf | fixed issue were <CR> wasn;t replaced with system newline when writing file | fixed issue were <CR> wasn;t replaced with system newline when writing file
| RobHolme/HL7-Powershell-Module,RobHolme/HL7-Powershell-Module | HL7Tools/HL7TcpListener.cs | mit | 1,591,415,782 |
namespace HL7Tools
{
using System;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Collections.Concurrent;
class HL7TCPListener
{
int TCP_TIMEOUT; // timeout value for receiving TCP data in millseconds
private TcpList... |
namespace HL7Tools
{
using System;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Collections.Concurrent;
class HL7TCPListener
{
int TCP_TIMEOUT; // timeout value for receiving TCP data in millseconds
private TcpList... |
2c07672c8f0e14eaae8d39335cb7dff8360e64ad | Base hashcode override | Base hashcode override
| lukencode/FluentEmail | src/FluentEmail.Core/Models/Address.cs | mit | 1,591,413,293 | namespace FluentEmail.Core.Models
{
public class Address
{
public string Name { get; set; }
public string EmailAddress { get; set; }
public Address()
{
}
public Address(string emailAddress, string name = null)
{
EmailAddress = em... | namespace FluentEmail.Core.Models
{
public class Address
{
public string Name { get; set; }
public string EmailAddress { get; set; }
public Address()
{
}
public Address(string emailAddress, string name = null)
{
EmailAddress = em... |
014151826f1c7d9a9113e40a95a70faab3e744f1 | Added missing using statement | Added missing using statement
| lukencode/FluentEmail | src/Senders/FluentEmail.MailKit/MailKitSender.cs | mit | 1,591,413,061 | using FluentEmail.Core;
using FluentEmail.Core.Interfaces;
using FluentEmail.Core.Models;
using MailKit.Net.Smtp;
using MimeKit;
using System;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace FluentEmail.MailKitSmtp
{
/// <summary>
/// Send emails with the Ma... | using FluentEmail.Core;
using FluentEmail.Core.Interfaces;
using FluentEmail.Core.Models;
using MailKit.Net.Smtp;
using MimeKit;
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace FluentEmail.MailKitSmtp
{
/// <summary>
/// Send emails with the MailKit Library.
... |
baa67ed219c50905baab05eb75677b2bee5b7ee6 | Clean up the TwitchGame.cs file a bit | Clean up the TwitchGame.cs file a bit
| samfun123/KtaneTwitchPlays | TwitchPlaysAssembly/Src/TwitchGame.cs | mit | 1,591,408,009 | using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Assets.Scripts.Missions;
using Assets.Scripts.Props;
using UnityEngine;
/// <summary>Encapsulates an ongoing game, with all its bombs, module cameras, HUDs etc.</sum... | using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Assets.Scripts.Missions;
using Assets.Scripts.Props;
using UnityEngine;
/// <summary>Encapsulates an ongoing game, with all its bombs, module cameras, HUDs etc.</sum... |
93d245c1db28ca55608564d05beed7513cde4b9c | Command line parser | Command line parser
| nameless323/KiotoEngine,nameless323/KiotoEngine | ShaderInputsParser/ShaderInputsParser/Program.cs | mit | 1,591,405,698 | using Antlr4.Runtime;
using antlrGenerated;
using ShaderInputsParserApp.Source;
using ShaderInputsParserApp.Source.Types;
using System;
using System.IO;
using System.Text;
namespace ShaderInputsParserApp
{
public class InvalidCommandLineException : System.Exception
{
public InvalidCommandLineException... | using Antlr4.Runtime;
using antlrGenerated;
using ShaderInputsParserApp.Source;
using ShaderInputsParserApp.Source.Types;
using System;
using System.IO;
using System.Text;
namespace ShaderInputsParserApp
{
class Program
{
static ShaderInputsParser InitializeAntlr(string content)
{
... |
2bcfdf59bd62dc387baefd8c9c965409df124cbe | Support Net Standard lib folders without the '.' | Support Net Standard lib folders without the '.'
| GlitchEnzo/NuGetForUnity,GlitchEnzo/NuGetForUnity | Assets/NuGet/Editor/NugetHelper.cs | mit | 1,591,404,495 | namespace NugetForUnity
{
using Ionic.Zip;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using Unity... | namespace NugetForUnity
{
using Ionic.Zip;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using Unity... |
3570d48130c545f58fe64b1c119407a7225c9e8f | Remove infinite loop in ArrayPoolBasedCacheEntry (#734) | Remove infinite loop in ArrayPoolBasedCacheEntry (#734)
| Microsoft/clrmd,Microsoft/clrmd,cshung/clrmd,cshung/clrmd,Microsoft/clrmd,cshung/clrmd | src/Microsoft.Diagnostics.Runtime/src/Windows/ArrayPoolBasedCacheEntry.cs | mit | 1,591,403,146 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO.Mem... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO.Mem... |
d2db29a3ffa0a6246305edbb6eeaed7ce40605c4 | New clientlib ver | New clientlib ver
| kaltura/KalturaGeneratedAPIClientsCsharp | KalturaClient/Client.cs | agpl-3.0 | 1,591,402,568 | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... |
bf616ad4e717b8eea98a10fcb6714934a99baa87 | Fix draggable widgets | Fix draggable widgets
| rds1983/Myra,rds1983/Myra | src/Myra/Graphics2D/UI/Widget.cs | mit | 1,591,401,786 | using System;
using System.ComponentModel;
using Myra.Graphics2D.UI.Styles;
using Myra.Utility;
using System.Xml.Serialization;
using Myra.MML;
using Myra.Graphics2D.UI.Properties;
using Myra.Attributes;
#if !STRIDE
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
#else
using Stride.Core.Mathematics... | using System;
using System.ComponentModel;
using Myra.Graphics2D.UI.Styles;
using Myra.Utility;
using System.Xml.Serialization;
using Myra.MML;
using Myra.Graphics2D.UI.Properties;
using Myra.Attributes;
#if !STRIDE
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
#else
using Stride.Core.Mathematics... |
7990ce8f4d64a5f60e58163ca653cca105311e2f | Ensure building in Unity Editor works for iOS platform target. Fixes #1325. | Ensure building in Unity Editor works for iOS platform target. Fixes #1325.
PiperOrigin-RevId: 315021322
| googleads/googleads-mobile-unity,googleads/googleads-mobile-unity | source/plugin/Assets/GoogleMobileAds/Platforms/iOS/GoogleMobileAdsClientFactory.cs | apache-2.0 | 1,591,401,466 | #if UNITY_IOS
// Copyright (C) 2020 Google LLC
//
// 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 ... | #if UNITY_IOS
// Copyright (C) 2020 Google LLC
//
// 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 la... |
06e5c3354793df722820365664685027521c127c | Fix broken UHS boundary images from experimenting | Fix broken UHS boundary images from experimenting
| roice3/Honeycombs | code/HyperbolicModels/CoxeterImages.cs | mit | 1,591,400,538 | namespace HyperbolicModels
{
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using System.Numerics;
using System.Threading.Tasks;
using R3.Core;
using R3.Drawing;
using R3.Geometry;
using R3.Math;
using Math = System.Math;
public class CoxeterImages... | namespace HyperbolicModels
{
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using System.Numerics;
using System.Threading.Tasks;
using R3.Core;
using R3.Drawing;
using R3.Geometry;
using R3.Math;
using Math = System.Math;
public class CoxeterImages... |
432e1cc0c71c49d15c58a744dd08647d4bf468fb | Deleted some code | Deleted some code
Some code in firelemon.cs was creating NREs when lemons were primed, so I deleted it.
| fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Weapons/FireLemon.cs | agpl-3.0 | 1,591,398,725 | using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Light2D;
using UnityEngine;
using UnityEngine.EventSystems;
using Mirror;
/// <summary>
/// Generic grenade base.
/// </summary>
[RequireComponent(typeof(Pickupable))]
public class FireLemon : NetworkBehaviour, IPredictedInteractable<... | using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Light2D;
using UnityEngine;
using UnityEngine.EventSystems;
using Mirror;
/// <summary>
/// Generic grenade base.
/// </summary>
[RequireComponent(typeof(Pickupable))]
public class FireLemon : NetworkBehaviour, IPredictedInteractable<... |
6ad128c4892483d4082bdf4ccb0487e93a682e66 | simplified type querying | simplified type querying
| Kentico/Deliver-.NET-SDK,Kentico/delivery-sdk-net | Kentico.Kontent.Delivery/ContentItems/ModelProvider.cs | mit | 1,591,398,489 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Kentico.Kontent.Delivery.Abstractions;
using Kentico.Kontent.Delivery.ContentItems.ContentLinks;
using Kentico.Kontent.Delivery.ContentItems.InlineContentItems;
using Kentico.Kontent.Delivery.Con... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Kentico.Kontent.Delivery.Abstractions;
using Kentico.Kontent.Delivery.ContentItems.ContentLinks;
using Kentico.Kontent.Delivery.ContentItems.InlineContentItems;
using Kentico.Kontent.Delivery.Con... |
0be98bf2b6484d42ebbba7e0eeef9e5a94e3e5b7 | Expose the target FontStore in AddFont for custom use cases | Expose the target FontStore in AddFont for custom use cases
| ZLima12/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-fram... | osu.Framework/Game.cs | mit | 1,591,397,733 | // 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 osuTK;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Bindables;
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.IO;
using osuTK;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Bindables;
us... |
f4563e6cf3372db5018f85593a6942745a9b3299 | Channel key should use instance on resend | Channel key should use instance on resend
| takenet/lime-csharp | src/Lime.Protocol/Network/Modules/Resend/KeyProvider.cs | apache-2.0 | 1,591,397,133 | namespace Lime.Protocol.Network.Modules.Resend
{
public sealed class KeyProvider : IKeyProvider
{
public static KeyProvider Instance { get; } = new KeyProvider();
public string GetChannelKey(IChannel channel) => $"{channel.RemoteNode}:{channel.LocalNode}".ToLowerInvariant();
public st... | namespace Lime.Protocol.Network.Modules.Resend
{
public sealed class KeyProvider : IKeyProvider
{
public static KeyProvider Instance { get; } = new KeyProvider();
public string GetChannelKey(IChannel channel) => $"{channel.RemoteNode.ToIdentity()}:{channel.LocalNode.ToIdentity()}".ToLowerInvar... |
069438bfae9b52d666218763ed85bf53c7fe361b | fix resolving theme. | fix resolving theme.
| wieslawsoltes/Perspex,grokys/Perspex,AvaloniaUI/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,SuperJMN/Avalonia,w... | samples/ControlCatalog/App.xaml.cs | mit | 1,591,397,006 | using System;
using Avalonia;
using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Markup.Xaml;
using Avalonia.Markup.Xaml.Styling;
using Avalonia.Styling;
namespace ControlCatalog
{
public class App : Application
{
public static Styles FluentDark = new Styles
{
new StyleInc... | using System;
using Avalonia;
using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Markup.Xaml;
using Avalonia.Markup.Xaml.Styling;
using Avalonia.Styling;
namespace ControlCatalog
{
public class App : Application
{
public static Styles FluentDark = new Styles
{
new StyleInc... |
9161b718d2365446a695424cb9e72aa574a270f8 | Fix up tests. | Fix up tests.
| OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | tests/OmniSharp.MSBuild.Tests/ProjectLoadListenerTests.cs | mit | 1,591,396,776 | using Microsoft.Build.Construction;
using Microsoft.Build.Execution;
using Microsoft.CodeAnalysis;
using Microsoft.Extensions.Logging;
using OmniSharp.Mef;
using OmniSharp.Models;
using OmniSharp.Models.Events;
using OmniSharp.MSBuild.Notification;
using OmniSharp.Services;
using System;
using System.Collections.Generi... | using Microsoft.Build.Construction;
using Microsoft.Build.Execution;
using Microsoft.CodeAnalysis;
using Microsoft.Extensions.Logging;
using OmniSharp.Mef;
using OmniSharp.Models;
using OmniSharp.Models.Events;
using OmniSharp.MSBuild.Notification;
using OmniSharp.Services;
using System;
using System.Collections.Generi... |
e878929dcb50fbbdf461f13cffe25b2ade4830e5 | IsNullの呼び出しを簡素化 | IsNullの呼び出しを簡素化
| zenuas/Roku,zenuas/Roku | src/Extensions/Lists.cs | mit | 1,591,396,688 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
namespace Extensions
{
public static class Lists
{
[DebuggerHidden]
public static IEnumerable<int> Sequence(int first, int tolerance = 1)
{
for (; ; fi... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
namespace Extensions
{
public static class Lists
{
[DebuggerHidden]
public static IEnumerable<int> Sequence(int first, int tolerance = 1)
{
for (; ; fi... |
cb7d779bcae8c61f216981a39ae106264d024ae9 | Catch Exception instead of RedisException (#6570) | Catch Exception instead of RedisException (#6570)
| jthelin/orleans,ElanHasson/orleans,ibondy/orleans,yevhen/orleans,galvesribeiro/orleans,ReubenBond/orleans,hoopsomuah/orleans,benjaminpetit/orleans,ReubenBond/orleans,yevhen/orleans,hoopsomuah/orleans,galvesribeiro/orleans,ibondy/orleans,amccool/orleans,jason-bragg/orleans,waynemunro/orleans,amccool/orleans,dotnet/orlea... | src/Orleans.GrainDirectory.Redis/RedisGrainDirectory.cs | mit | 1,591,395,561 | using System;
using System.Collections.Generic;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Orleans.Configuration;
using Orleans.Runtime;
using StackExchange.Redis;
nam... | using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Orleans.Configuration;
using Orleans.Runtime;
using StackExchange.Redis;
namespace Orleans.GrainDirectory.Redis
{
... |
f9266f9251b80e68b5a199d8267a069b0aa488ae | In RedisGrainDirectory, log and wrap RedisExceptions into OrleansExceptions (#6569) | In RedisGrainDirectory, log and wrap RedisExceptions into OrleansExceptions (#6569)
| amccool/orleans,ibondy/orleans,ReubenBond/orleans,jason-bragg/orleans,yevhen/orleans,galvesribeiro/orleans,amccool/orleans,amccool/orleans,dotnet/orleans,ElanHasson/orleans,waynemunro/orleans,dotnet/orleans,hoopsomuah/orleans,veikkoeeva/orleans,galvesribeiro/orleans,ElanHasson/orleans,jthelin/orleans,ibondy/orleans,gal... | src/Orleans.GrainDirectory.Redis/RedisGrainDirectory.cs | mit | 1,591,395,561 | using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Orleans.Configuration;
using Orleans.Runtime;
using StackExchange.Redis;
namespace Orleans.GrainDirectory.Redis
{
... | using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Orleans.Configuration;
using Orleans.Runtime;
using StackExchange.Redis;
namespace Orleans.GrainDirectory.Redis
{
... |
713b4be8eb46ff689fe94b95d8c8a0730e7ac24c | Use LUA script to unregister activations (#6571) | Use LUA script to unregister activations (#6571)
| dotnet/orleans,ibondy/orleans,ElanHasson/orleans,ReubenBond/orleans,amccool/orleans,galvesribeiro/orleans,amccool/orleans,veikkoeeva/orleans,yevhen/orleans,ibondy/orleans,veikkoeeva/orleans,yevhen/orleans,jason-bragg/orleans,galvesribeiro/orleans,hoopsomuah/orleans,yevhen/orleans,ElanHasson/orleans,benjaminpetit/orlean... | src/Orleans.GrainDirectory.Redis/RedisGrainDirectory.cs | mit | 1,591,395,561 | using System;
using System.Collections.Generic;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Orleans.Configuration;
using Orleans.Runtime;
using StackExchange.Redis;
nam... | using System;
using System.Collections.Generic;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Orleans.Configuration;
using Orleans.Runtime;
using StackExchange.Redis;
nam... |
e78862137cbbfa884a1cf7a1776d73e017c0b59b | Corrected grammar when checking for new versions | Corrected grammar when checking for new versions
| topeterk/HitCounterManager,topeterk/HitCounterManager,topeterk/HitCounterManager | Sources/Form1.cs | mit | 1,591,395,503 | //MIT License
//Copyright (c) 2016-2020 Peter Kirmeier
//Permission is hereby granted, free of charge, to any person obtaining a copy
//of this software and associated documentation files (the "Software"), to deal
//in the Software without restriction, including without limitation the rights
//to use, copy, m... | //MIT License
//Copyright (c) 2016-2020 Peter Kirmeier
//Permission is hereby granted, free of charge, to any person obtaining a copy
//of this software and associated documentation files (the "Software"), to deal
//in the Software without restriction, including without limitation the rights
//to use, copy, m... |
f3f277d4e71b5de90ae34eab7f7b31b55d137535 | Add unit test | Add unit test
| fredatgithub/UsefulFunctions | UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs | mit | 1,591,395,233 | 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
... |
fcf8adec64e90176a55eeaa818e3549ab199cf2a | Fixing bug in Debug Mode 🚧 | Fixing bug in Debug Mode 🚧
| dimmpixeye/Unity3dTools | Runtime/LibEcs/ent.cs | mit | 1,591,394,802 | // Project : ecs
// Contacts : Pix - info@pixeye.games
// Date : 3/16/2019
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Unity.IL2CPP.CompilerServices;
using UnityEngine;
namespace Pixeye.Actors
{
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSe... | // Project : ecs
// Contacts : Pix - info@pixeye.games
// Date : 3/16/2019
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Unity.IL2CPP.CompilerServices;
using UnityEngine;
namespace Pixeye.Actors
{
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
... |
91e9aaa853ac90b1d8ec6a99716bf2b6f8a2f715 | FIX typo in method descriptions | FIX typo in method descriptions
| mdesalvo/RDFSharp | RDFSharp/Query/Mirella/Algebra/RDFFederation.cs | apache-2.0 | 1,591,394,693 | /*
Copyright 2012-2020 Marco De Salvo
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... | /*
Copyright 2012-2020 Marco De Salvo
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... |
41c9944c41e54a3b6b7727b5a60868bebf95a3a5 | Fix pda crash from code being outside if statement (#1079) | Fix pda crash from code being outside if statement (#1079)
Co-authored-by: FL-OZ <bae8573b8797400b4b365bd1ce58c70a0c661532@gmail.com> | 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-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14 | Content.Client/GameObjects/Components/PDA/PDABoundUserInterface.cs | mit | 1,591,394,280 | using System;
using Content.Client.GameObjects.EntitySystems;
using Content.Client.Utility;
using Content.Shared.GameObjects.Components.PDA;
using Robust.Client.GameObjects.Components.UserInterface;
using Robust.Client.Graphics.Drawing;
using Robust.Client.Interfaces.UserInterface;
using Robust.Client.UserInterface.Con... | using System;
using Content.Client.GameObjects.EntitySystems;
using Content.Client.Utility;
using Content.Shared.GameObjects.Components.PDA;
using Robust.Client.GameObjects.Components.UserInterface;
using Robust.Client.Graphics.Drawing;
using Robust.Client.Interfaces.UserInterface;
using Robust.Client.UserInterface.Con... |
07b349800c63d8488dad829c2511aa3076676ebe | Adding useless lexer rules. | Adding useless lexer rules.
| kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX | LanguageServer/Analysis.cs | mit | 1,591,394,053 | namespace LanguageServer
{
using Algorithms;
using Antlr4.Runtime;
using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Tree;
using GrammarGrammar;
using Microsoft.CodeAnalysis;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Document = Workspaces.Docume... | namespace LanguageServer
{
using Algorithms;
using Antlr4.Runtime;
using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Tree;
using GrammarGrammar;
using Microsoft.CodeAnalysis;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Document = Workspaces.Docume... |
f35f86759f70a62dcf301cd035920020d92764ea | Added safe area insets to iOS on all pages | Added safe area insets to iOS on all pages
| HTBox/MobileKidsIdApp,HTBox/MobileKidsIdApp,HTBox/MobileKidsIdApp,HTBox/MobileKidsIdApp | src/MobileKidsIdApp/MobileKidsIdApp/Mvvm/ContentPageBase.cs | apache-2.0 | 1,591,393,727 | using Xamarin.Forms;
using Xamarin.Forms.PlatformConfiguration;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
namespace MobileKidsIdApp
{
public abstract class ContentPageBase : ContentPage
{
public ContentPageBase()
{
Visual = VisualMarker.Material;
On<iOS>().... | using Xamarin.Forms;
namespace MobileKidsIdApp
{
public abstract class ContentPageBase : ContentPage
{
public ContentPageBase() => Visual = VisualMarker.Material;
protected ViewModelBase ViewModel => BindingContext as ViewModelBase;
protected override void OnAppearing() => ViewModel?... |
cec86f053399a58adde3646fb8b066c228baecda | EntityStorage empties contents on destroy. (#1074) | EntityStorage empties contents on destroy. (#1074)
Co-authored-by: FL-OZ <bae8573b8797400b4b365bd1ce58c70a0c661532@gmail.com> | 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,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs | mit | 1,591,393,722 | using System;
using System.Linq;
using Content.Server.GameObjects.Components.Interactable;
using Content.Server.GameObjects.Components.Items.Storage;
using Content.Server.GameObjects.Components.Sound;
using Content.Server.GameObjects.EntitySystems;
using Content.Shared.GameObjects;
using Content.Shared.GameObjects.Com... | using System;
using System.Linq;
using Content.Server.GameObjects.Components.Interactable;
using Content.Server.GameObjects.Components.Items.Storage;
using Content.Server.GameObjects.Components.Sound;
using Content.Server.GameObjects.EntitySystems;
using Content.Shared.GameObjects;
using Content.Shared.GameObjects.Com... |
05bc28d2fdb7f7be7530c609277fe8e04fdad85e | Revert "Add server reset time checks in PlaceOrder/UpdateOrder/CancelOrder" | Revert "Add server reset time checks in PlaceOrder/UpdateOrder/CancelOrder"
This reverts commit d1963fe32e803e3693be7f7ba52ffc7ca3b6883f.
| StefanoRaggi/Lean,QuantConnect/Lean,StefanoRaggi/Lean,jameschch/Lean,jameschch/Lean,QuantConnect/Lean,JKarathiya/Lean,jameschch/Lean,StefanoRaggi/Lean,AlexCatarino/Lean,JKarathiya/Lean,AlexCatarino/Lean,QuantConnect/Lean,JKarathiya/Lean,AlexCatarino/Lean,jameschch/Lean,StefanoRaggi/Lean | Brokerages/InteractiveBrokers/InteractiveBrokersBrokerage.cs | apache-2.0 | 1,591,393,474 | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of ... | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of ... |
35f21f5403a5f4a01cd37af228b9ba31e58e20c0 | Fix index out of range in HeapSegmentDataCache (#731) | Fix index out of range in HeapSegmentDataCache (#731)
| cshung/clrmd,cshung/clrmd,cshung/clrmd,Microsoft/clrmd,Microsoft/clrmd,Microsoft/clrmd | src/Microsoft.Diagnostics.Runtime/src/Windows/HeapSegmentDataCache.cs | mit | 1,591,393,296 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Microsoft.Dia... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Microsoft.Dia... |
f03d97bdeb5b1161cb31f66615aeb15567d23440 | add ability to get table header row cell by class name | add ability to get table header row cell by class name
| mvbalaw/FluentBrowserAutomation | src/FluentBrowserAutomation/Controls/TableRowWrapper.cs | mit | 1,591,392,980 | using System;
using System.Collections.Generic;
using System.Linq;
using FluentBrowserAutomation.Extensions;
using OpenQA.Selenium;
namespace FluentBrowserAutomation.Controls
{
public class TableRowWrapper : BasicInfoWrapper, IAmVisualElement, ICanBeClicked
{
public TableRowWrapper(RemoteWebElementWrapper tableR... | using System;
using System.Collections.Generic;
using System.Linq;
using FluentBrowserAutomation.Extensions;
using OpenQA.Selenium;
namespace FluentBrowserAutomation.Controls
{
public class TableRowWrapper : BasicInfoWrapper, IAmVisualElement, ICanBeClicked
{
public TableRowWrapper(RemoteWebElementWrapper tableR... |
eeb1ac94179225be5e4d092632efd51dfc27b080 | Added a unit test to highlight the problem | Added a unit test to highlight the problem
| GeoJSON-Net/GeoJSON.Net | src/GeoJSON.Net.Tests/Geometry/PolygonTests.cs | mit | 1,591,392,265 | using System.Collections.Generic;
using GeoJSON.Net.Converters;
using GeoJSON.Net.Geometry;
using Newtonsoft.Json;
using NUnit.Framework;
namespace GeoJSON.Net.Tests.Geometry
{
[TestFixture]
public class PolygonTests : TestBase
{
[Test]
public void Can_Serialize()
{
var... | using System.Collections.Generic;
using GeoJSON.Net.Geometry;
using Newtonsoft.Json;
using NUnit.Framework;
namespace GeoJSON.Net.Tests.Geometry
{
[TestFixture]
public class PolygonTests : TestBase
{
[Test]
public void Can_Serialize()
{
var polygon = new Polygon(new Lis... |
0896decbbe5175e41d230e7ecb71bcdb89e962a1 | Remove Possible multiple enumeration | Remove Possible multiple enumeration
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,392,213 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
291ff8cf7baf4ca963e54b355afbc641f38f1cd3 | Adjusted GetActualGenericMethoodDefinition to be able to potentially work on non-MethodInfos like ConstructorInfo on a generic type | Adjusted GetActualGenericMethoodDefinition to be able to potentially work on non-MethodInfos like ConstructorInfo on a generic type
| 0x0ade/MonoMod,AngelDE98/MonoMod | MonoMod.Utils/Extensions.Utils.cs | mit | 1,591,392,125 | using Mono.Cecil.Cil;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
namespace MonoMod.Utils {
public static partial class Extensions {
/// <summary>
/// Create a hexadecimal string for the given ... | using Mono.Cecil.Cil;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
namespace MonoMod.Utils {
public static partial class Extensions {
/// <summary>
/// Create a hexadecimal string for the given ... |
b9c240e90c4850792341fb2cca20b16d7a10f901 | I forgot about constructor info | I forgot about constructor info
| 0x0ade/MonoMod,AngelDE98/MonoMod | MonoMod.Utils/GenericMethodInstantiationComparer.cs | mit | 1,591,392,053 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace MonoMod.Utils {
public class GenericMethodInstantiationComparer : IEqualityComparer<MethodBase> {
// this may be null on Mono, so we just don't support the magic this does there
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace MonoMod.Utils {
public class GenericMethodInstantiationComparer : IEqualityComparer<MethodBase> {
// this may be null on Mono, so we just don't support the magic this does there
... |
7612a2ae34808eefb3c28c0ffc9cf0d3b0abe70c | Reuse linq | Reuse linq
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/CoinJoin/Coordinator/Rounds/CoordinatorRound.cs | mit | 1,591,391,990 | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... | using NBitcoin;
using NBitcoin.RPC;
using Nito.AsyncEx;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.BitcoinCore;
using WalletWasabi.CoinJoin.Common.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.