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 |
|---|---|---|---|---|---|---|---|---|
cee7563abecf16b210e4bc80c1459cc316802809 | Changed how Token Pair tests handle missing samples | Changed how Token Pair tests handle missing samples
Previously if one token was missing samples, the whole set of pair tests would fail (as an exception was thrown during test data generation).
Instead now generate all known pairs, with a seperate test ensuring that all kinds have samples defined. This means that if... | afscrome/IronVelocity | test/IronVelocity.CodeAnalysis.Tests/Syntax/TokenSamples.cs | mit | 1,589,115,532 | using IronVelocity.CodeAnalysis.Syntax;
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
namespace IronVelocity.Tests.CodeAnalysis.Syntax
{
public class TokenSamples
{
public static ImmutableArray<SyntaxKind> LexerTokenKinds ... | using IronVelocity.CodeAnalysis.Syntax;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
namespace IronVelocity.Tests.CodeAnalysis.Syntax
{
public static class TokenSamples
{
public static ImmutableArray<SyntaxKind> LexerTokenKinds { get; } = Enum
... |
1b53d91109e0c105a72bd265077548857a8b590d | Improved REPL | Improved REPL
Added commands to toggle whether parse trees / tokens are printed.
Default to off, but are still printed if an error occurs.
| afscrome/IronVelocity | test/Repl/Program.cs | mit | 1,589,115,532 | using IronVelocity.CodeAnalysis.Syntax;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronVelocity.Repl
{
class Program
{
private static bool _printTokens = false;
private stati... | using IronVelocity.CodeAnalysis.Syntax;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronVelocity.Repl
{
class Program
{
static void Main(string[] args)
{
while (tru... |
3c0fa605a1bf82fc2b4047388a14f1761d59a1c5 | Be more consistent in Evaluator | Be more consistent in Evaluator
| afscrome/IronVelocity | src/IronVelocity.CodeAnalysis/Evaluator.cs | mit | 1,589,115,532 | using IronVelocity.CodeAnalysis.Binding;
using System;
namespace IronVelocity.CodeAnalysis
{
public class Evaluator
{
private readonly BoundExpression _root;
public Evaluator(BoundExpression root)
{
_root = root;
}
public object? Evaluate() => EvaluateExpr... | using IronVelocity.CodeAnalysis.Binding;
using System;
namespace IronVelocity.CodeAnalysis
{
public class Evaluator
{
private readonly BoundExpression _root;
public Evaluator(BoundExpression root)
{
_root = root;
}
public object? Evaluate() => EvaluateExpr... |
97d0e6b11bd43fe770cde3993acb82f7a5060a26 | Parser Refactoring | Parser Refactoring
| afscrome/IronVelocity | src/IronVelocity.CodeAnalysis/Syntax/Parser.cs | mit | 1,589,115,532 | using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
namespace IronVelocity.CodeAnalysis.Syntax
{
public class Parser
{
private readonly IImmutableList<SyntaxToken> _tokens;
private readonly DiagnosticBag _diagnostics = new DiagnosticBag();
private in... | using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
namespace IronVelocity.CodeAnalysis.Syntax
{
public class Parser
{
private readonly IImmutableList<SyntaxToken> _tokens;
private readonly DiagnosticBag _diagnostics = new DiagnosticBag();
private in... |
a507d847b490d62da768cbf4e4af391dca7e55fe | Clean up unreachable code | Clean up unreachable code
| afscrome/IronVelocity | src/CodeAnalysis/Syntax/Parser.cs | mit | 1,589,115,532 | using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
namespace IronVelocity.CodeAnalysis.Syntax
{
public class Parser
{
private readonly IImmutableList<SyntaxToken> _tokens;
private int _position;
public IImmutableList<string> Diagnosti... | using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
namespace IronVelocity.CodeAnalysis.Syntax
{
public class Parser
{
private readonly IImmutableList<SyntaxToken> _tokens;
private int _position;
public IImmutableList<string> Diagnosti... |
476945159395ceb586fd84fd9e69bbc6fd153fb8 | Evaluator refactoring | Evaluator refactoring
| afscrome/IronVelocity | src/IronVelocity.CodeAnalysis/Evaluator.cs | mit | 1,589,115,532 | using IronVelocity.CodeAnalysis.Binding;
using System;
namespace IronVelocity.CodeAnalysis
{
public class Evaluator
{
private readonly BoundExpression _root;
public Evaluator(BoundExpression root)
{
_root = root;
}
public object? Evaluate() => EvaluateExpr... | using IronVelocity.CodeAnalysis.Binding;
using System;
namespace IronVelocity.CodeAnalysis
{
public class Evaluator
{
private readonly BoundExpression _root;
public Evaluator(BoundExpression root)
{
_root = root;
}
public object? Evaluate() => EvaluateExpr... |
7571d494ba2e6a7b0710c8d0249b215d44845a4f | Refactored NextToken() method in Lexer | Refactored NextToken() method in Lexer
| afscrome/IronVelocity | src/CodeAnalysis/Syntax/Lexer.cs | mit | 1,589,115,532 |
using System;
using IronVelocity.CodeAnalysis.Text;
namespace IronVelocity.CodeAnalysis.Syntax
{
public class Lexer
{
private readonly SourceText _text;
private int _position;
public Lexer(string text)
{
_text = new SourceText(text);
}
private char... |
using System;
using IronVelocity.CodeAnalysis.Text;
namespace IronVelocity.CodeAnalysis.Syntax
{
public class Lexer
{
private readonly SourceText _text;
private int _position;
public Lexer(string text)
{
_text = new SourceText(text);
}
private char... |
c14ec6d11875fc0aaed6eaaea8b672c432f1f432 | Better handle REPL evaluation errors | Better handle REPL evaluation errors
| afscrome/IronVelocity | test/Repl/Program.cs | mit | 1,589,115,532 | using IronVelocity.CodeAnalysis.Syntax;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronVelocity.Repl
{
class Program
{
private static bool _printTokens = false;
private stati... | using IronVelocity.CodeAnalysis.Syntax;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronVelocity.Repl
{
class Program
{
private static bool _printTokens = false;
private stati... |
0354347d2e19fae9bab1ffdd48570e4138796a9a | #115 - Finished queue command | #115 - Finished queue command
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModule.cs | agpl-3.0 | 1,589,115,521 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using SoraBot.Common.Utils;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
p... | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using SoraBot.Common.Utils;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
p... |
d66030664be23b358a752f565523960612b70eaf | Update CommentsThreaded_Tests.cs | Update CommentsThreaded_Tests.cs
| cobalto/WordPressPCL,wp-net/WordPressPCL,cobalto/WordPressPCL,wp-net/WordPressPCL | WordPressPCL.Tests.Selfhosted/CommentsThreaded_Tests.cs | mit | 1,589,115,378 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Diagnostics;
using System.Threading.Tasks;
using WordPressPCL.Models;
using WordPressPCL.Utility;
using WordPressPCL.Tests.Selfhosted.Utility;
using System.Linq;
namespace WordPressPCL.Tests.Selfhosted
{
[TestClass]
public class CommentsThreaded... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Diagnostics;
using System.Threading.Tasks;
using WordPressPCL.Models;
using WordPressPCL.Utility;
using WordPressPCL.Tests.Selfhosted.Utility;
using System.Linq;
namespace WordPressPCL.Tests.Selfhosted
{
[TestClass]
public class CommentsThreaded... |
80906228038d3d9fa90baa8427b006b8fecc8b67 | disable custom request tests for contact form | disable custom request tests for contact form
| cobalto/WordPressPCL,wp-net/WordPressPCL,cobalto/WordPressPCL,wp-net/WordPressPCL | WordPressPCL.Tests.Selfhosted/CustomRequests_Tests.cs | mit | 1,589,114,963 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using WordPressPCL.Tests.Selfhosted.Utility;
namespace WordPressPCL.Tests.Selfhosted
{
[TestClass]
public class CustomRequests_Tests
{... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using WordPressPCL.Tests.Selfhosted.Utility;
namespace WordPressPCL.Tests.Selfhosted
{
[TestClass]
public class CustomRequests_Tests
{... |
0c97729695cb442671835d3d5871fdcbf39f60f5 | [Modify] Add it | [Modify] Add it
| sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Net/WebHeaderCollection.cs | mit | 1,589,114,826 | #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-... |
79c5e9010ab677180285b2a46c5eca1294e50809 | Resolve duplication in listener factory usages, establish a pattern for the remaining conditionally-enlisted listeners. | Resolve duplication in listener factory usages, establish a pattern for the remaining conditionally-enlisted listeners.
| fixie/fixie,fixie/fixie | src/Fixie/Internal/AssemblyRunner.cs | mit | 1,589,114,429 | namespace Fixie.Internal
{
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Pipes;
using System.Linq;
using System.Reflection;
using System.Xml.Linq;
using Cli;
using Listeners;
using static System.Console;
public class AssemblyRunner
{
... | namespace Fixie.Internal
{
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Pipes;
using System.Linq;
using System.Reflection;
using System.Xml.Linq;
using Cli;
using Listeners;
using static System.Console;
public class AssemblyRunner
{
... |
e85fda53c7dc83e3b212f40114586759adb78911 | zkb agent update | zkb agent update
| Slazanger/SMT,Slazanger/SMT | EVEData/ZKillRedisQ.cs | mit | 1,589,113,805 | //-----------------------------------------------------------------------
// ZKillboard ReDisQ feed
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.IO;
using... | //-----------------------------------------------------------------------
// ZKillboard ReDisQ feed
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.IO;
using... |
f0891ef4fd406c7b7c1749122c022c29e912a46c | Added error handling to the Dropbox backend for cases where the Dropbox server responds with invalid JSON in the error message. | Added error handling to the Dropbox backend for cases where the Dropbox server responds with invalid JSON in the error message.
| mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati | Duplicati/Library/Backend/Dropbox/DropboxHelper.cs | lgpl-2.1 | 1,589,112,935 | using Duplicati.Library.Utility;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace Duplicati.Library.Backend
{
public class DropboxHelper : OAuthHelper
{
private const int DRO... | using Duplicati.Library.Utility;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace Duplicati.Library.Backend
{
public class DropboxHelper : OAuthHelper
{
private const int DRO... |
2f1f5bb7e095fd0d5b061790d805da95c6456a8c | The purpose of this update is to provide better error messages from servers that return error messages, but are expected to return JSON data. In the current setup, the response stream is parsed by the JSON decoder, which throws an exception due to reading a non-json formatted error message. The reported exception simpl... | The purpose of this update is to provide better error messages from servers that return error messages, but are expected to return JSON data.
In the current setup, the response stream is parsed by the JSON decoder, which throws an exception due to reading a non-json formatted error message.
The reported exception simpl... | duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati | Duplicati/Library/Backend/OAuthHelper/JSONWebHelper.cs | lgpl-2.1 | 1,589,112,875 | // Copyright (C) 2015, The Duplicati Team
// http://www.duplicati.com, info@duplicati.com
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// L... | // Copyright (C) 2015, The Duplicati Team
// http://www.duplicati.com, info@duplicati.com
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// L... |
22b506ef4ecfa0b9d1b1f60ed965dfb6b5c8f2b3 | Null check | Null check
| fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Construction/MachineFrame.cs | agpl-3.0 | 1,589,112,274 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
namespace Machines
{
[System.Serializable]
public class AllowedTraitList
{
public AllowedTraitList()
{
}
public AllowedTraitList(ItemTrait allowedTrait)
{
AllowedTrait = allowedTrait;
}
public ItemTrait ... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
namespace Machines
{
[System.Serializable]
public class AllowedTraitList
{
public AllowedTraitList()
{
}
public AllowedTraitList(ItemTrait allowedTrait)
{
AllowedTrait = allowedTrait;
}
public ItemTrait ... |
6d24568072f7b0c21cad6bd5eedb72f9eac2a25f | Built machineframe fix | Built machineframe fix
| fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Construction/MachineFrame.cs | agpl-3.0 | 1,589,112,074 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
namespace Machines
{
[System.Serializable]
public class AllowedTraitList
{
public AllowedTraitList()
{
}
public AllowedTraitList(ItemTrait allowedTrait)
{
AllowedTrait = allowedTrait;
}
public ItemTrait ... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
namespace Machines
{
[System.Serializable]
public class AllowedTraitList
{
public AllowedTraitList()
{
}
public AllowedTraitList(ItemTrait allowedTrait)
{
AllowedTrait = allowedTrait;
}
public ItemTrait ... |
9d78297e3dca3152927faebe4f2199db3cf7f626 | Remove extra whitespace from inklecate/CommandLineTool.cs | Remove extra whitespace from inklecate/CommandLineTool.cs
| inkle/ink,ghostpattern/ink,inkle/ink,inkle/ink,ghostpattern/ink | inklecate/CommandLineTool.cs | mit | 1,589,109,749 | using System;
using System.IO;
using System.Linq;
using System.Diagnostics;
using System.Collections.Generic;
namespace Ink
{
class CommandLineTool : Ink.IFileHandler
{
class Options {
public bool verbose;
public bool playMode;
public bool stats;
public bool jsonOutput;
p... | using System;
using System.IO;
using System.Linq;
using System.Diagnostics;
using System.Collections.Generic;
namespace Ink
{
class CommandLineTool : Ink.IFileHandler
{
class Options {
public bool verbose;
public bool playMode;
public bool stats;
public bool jsonOutput;
p... |
d43c3ff782e7f54b873f79f3992bd1f7f6eaef17 | Add newlines on inklecate help | Add newlines on inklecate help
| inkle/ink,inkle/ink,ghostpattern/ink,inkle/ink,ghostpattern/ink | inklecate/CommandLineTool.cs | mit | 1,589,109,563 | using System;
using System.IO;
using System.Linq;
using System.Diagnostics;
using System.Collections.Generic;
namespace Ink
{
class CommandLineTool : Ink.IFileHandler
{
class Options {
public bool verbose;
public bool playMode;
public bool stats;
public bool jsonOutput;
p... | using System;
using System.IO;
using System.Linq;
using System.Diagnostics;
using System.Collections.Generic;
namespace Ink
{
class CommandLineTool : Ink.IFileHandler
{
class Options {
public bool verbose;
public bool playMode;
public bool stats;
public bool jsonOutput;
p... |
c6f3c20c62d80de0575fa17c6fffb6927641e333 | Do not cache parsing of normal BitcoinStrings | Do not cache parsing of normal BitcoinStrings
| dgarage/NBXplorer,dgarage/NBXplorer,dgarage/NBXplorer | NBXplorer.Client/JsonConverters/CachedSerializer.cs | mit | 1,589,109,520 | using NBitcoin;
using System.Linq;
using NBitcoin.JsonConverters;
using Newtonsoft.Json;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Reflection;
using System.Threading;
namespace NBXplorer.JsonConverters
{
/// <summary>
/// Cache serialization of costly base58 s... | using NBitcoin;
using System.Linq;
using NBitcoin.JsonConverters;
using Newtonsoft.Json;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Reflection;
using System.Threading;
namespace NBXplorer.JsonConverters
{
/// <summary>
/// Cache serialization of costly base58 s... |
44fdf1e6b05b033977287647e126e4ed99b898e4 | Reword xmldoc | Reword xmldoc | UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu,peppy/osu,UselessToucan/osu,smoogipooo/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu-new,smoogipoo/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu | osu.Game/Rulesets/UI/DrawableRuleset.cs | mit | 1,589,108,981 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Judgements;
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 osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Judgements;
using ... |
6be3f24296c9c40a23d78f0245d9f53dc2954f72 | (#48) Use formatter function instead of format string in numeric scroller | (#48) Use formatter function instead of format string in numeric scroller
| alexguirre/RAGENativeUI,alexguirre/RAGENativeUI,alexguirre/RAGENativeUI | Source/Elements/MenuItems/UIMenuNumericScrollerItem.cs | mit | 1,589,108,803 | namespace RAGENativeUI.Elements
{
using System;
/// <summary>
/// Represents a scroller item that displays numeric values within a range.
/// </summary>
/// <typeparam name="T">
/// The numeric type to use. Possible types are: <see cref="sbyte"/>, <see cref="byte"/>, <see cref="short"/>, <see ... | namespace RAGENativeUI.Elements
{
using System;
/// <summary>
/// Represents a scroller item that displays numeric values within a range.
/// </summary>
/// <typeparam name="T">
/// The numeric type to use. Possible types are: <see cref="sbyte"/>, <see cref="byte"/>, <see cref="short"/>, <see ... |
206b4c568028c0eaf817b5ef5b86724dcdfd25ea | Fix commit 9e32db0340e79da3ff3302cbd90e3b24019a17d3 | Fix commit 9e32db0340e79da3ff3302cbd90e3b24019a17d3
| StockSharp/StockSharp | Algo/Testing/EmulationMessageAdapter.cs | apache-2.0 | 1,589,107,759 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
799077b55d1a66b2d7781ac5ba67c10b20247055 | #115 - Added Np command | #115 - Added Np command
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModule.cs | agpl-3.0 | 1,589,107,731 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... |
429cff31fd32dc0330c710fe139a3015a99f7e74 | #115 - Apparently we dont have to skip by ourselfs. so Let's remove that | #115 - Apparently we dont have to skip by ourselfs. so Let's remove that
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,107,346 | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... |
ca8fce2143335fd11f7cf24ad4b264539e3e10fb | Resolve #AG337 - Fix circular relationship detector | Resolve #AG337 - Fix circular relationship detector
It is no longer detecting false-positives.
| csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil | Agiil.Domain.Impl/Tickets/RelationshipValidation/CircularRelationshipDetector.cs | mit | 1,589,107,112 | using System;
using System.Collections.Generic;
using System.Linq;
using CSF.Entities;
using log4net;
namespace Agiil.Domain.Tickets.RelationshipValidation
{
public class CircularRelationshipDetector : IDetectsCircularRelationship
{
readonly ILog logger;
public bool IsRelationshipCircular(IId... | using System;
using System.Collections.Generic;
using System.Linq;
using CSF.Entities;
using log4net;
namespace Agiil.Domain.Tickets.RelationshipValidation
{
public class CircularRelationshipDetector : IDetectsCircularRelationship
{
readonly ILog logger;
public bool IsRelationshipCircular(IId... |
a3c784883e7f5e10a3832acaf8023082a04799f9 | #115 - Removed unused import | #115 - Removed unused import
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,106,917 | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readon... |
1196ae373f8a680612f699aec6368005e6a8fd38 | #115 - Added even more info to exception handlers | #115 - Added even more info to exception handlers
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,106,904 | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readon... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readon... |
c8e096cf148888faccc928fada9dadd36ed6452b | #115 - Added additional info to on stuck and exception so you know which track got skipped | #115 - Added additional info to on stuck and exception so you know which track got skipped
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,106,563 | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readon... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readon... |
94c0d83658ecc1920d0b2936a66f1c40d7107dc7 | #115 - For WS we just log for now. We'll see how resume and co are handled | #115 - For WS we just log for now. We'll see how resume and co are handled
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,106,279 | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readon... | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... |
1b31013527b597c274990e6ed6857446f1155ad8 | #115 - Added on stuck and on exception handlers | #115 - Added on stuck and on exception handlers
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,105,867 | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... |
d7539e6b169e8f4fc4c543903af2768b47578161 | #115 - Maybe this improves the artwork problem | #115 - Maybe this improves the artwork problem
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModuleHelpers.cs | agpl-3.0 | 1,589,105,221 | using System.Threading.Tasks;
using Discord;
using Victoria;
namespace SoraBot.Bot.Modules.AudioModule
{
public partial class AudioModule
{
private async Task<bool> CheckIfSameVc(IVoiceChannel playerVC)
{
var userVC = ((IGuildUser) Context.User).VoiceChannel;
if (player... | using System.Threading.Tasks;
using Discord;
using Victoria;
namespace SoraBot.Bot.Modules.AudioModule
{
public partial class AudioModule
{
private async Task<bool> CheckIfSameVc(IVoiceChannel playerVC)
{
var userVC = ((IGuildUser) Context.User).VoiceChannel;
if (player... |
bd0da57ec5458b5ff95ad80ee20901d05660ef39 | #115 - Handling playing the next song | #115 - Handling playing the next song
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,104,922 | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEve... | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEventHandler> _log;
private readonly... |
da239ef0be3bc369019b6b4ccf2a90b42192243f | #115 - Added all the necessary event stumps | #115 - Added all the necessary event stumps
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,104,253 | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using Victoria;
using Victoria.EventArgs;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEventHandler> _log;
private readonly... | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using Victoria;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEventHandler> _log;
private readonly LavaNode _node;
... |
725332314c4bf906d71929ccd0b8f712ddd4e253 | #115 - Added logging | #115 - Added logging
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioEventHandler.cs | agpl-3.0 | 1,589,104,120 | using System;
using System.Threading.Tasks;
using Discord;
using Microsoft.Extensions.Logging;
using Victoria;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler : IDisposable
{
private readonly ILogger<AudioEventHandler> _log;
private readonly LavaNode _node;
... | using Microsoft.Extensions.Logging;
namespace SoraBot.Bot.Modules.AudioModule
{
public class AudioEventHandler
{
private readonly ILogger<AudioEventHandler> _log;
public AudioEventHandler(ILogger<AudioEventHandler> log)
{
log.LogInformation("Initialized Audio Event Handler... |
f5283fa5a9b6bdc07c7fd0d53f8fa0e8989e462c | Code clean up | Code clean up
| wangkanai/Detection,wangkanai/Detection | test/Models/VersionTest.cs | apache-2.0 | 1,589,102,165 | // Copyright (c) 2014-2020 Sarin Na Wangkanai, All Rights Reserved.
// The Apache v2. See License.txt in the project root for license information.
using System;
using Xunit;
namespace Wangkanai.Detection.Models
{
public class VersionTests
{
[Theory]
//[InlineData("1")]
[InlineData("1.1... | // Copyright (c) 2014-2020 Sarin Na Wangkanai, All Rights Reserved.
// The Apache v2. See License.txt in the project root for license information.
using System;
using Xunit;
namespace Wangkanai.Detection.Models
{
public class VersionTests
{
[Theory]
//[InlineData("1")]
[InlineData("1.1... |
094548f327c4e44152d1eb43ab2e3e395a28819f | remove server name too for Inserted table | remove server name too for Inserted table
| MaceWindu/linq2db,linq2db/linq2db,LinqToDB4iSeries/linq2db,linq2db/linq2db,MaceWindu/linq2db,MaceWindu/linq2db,LinqToDB4iSeries/linq2db,LinqToDB4iSeries/linq2db,linq2db/linq2db | Source/LinqToDB/SqlQuery/SqlTable.cs | mit | 1,589,101,981 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
namespace LinqToDB.SqlQuery
{
using Common;
using Data;
using Mapping;
public class SqlTable : ISqlTableSource
{
#region Init
public SqlTable()
{
SourceID = Interlock... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
namespace LinqToDB.SqlQuery
{
using Common;
using Data;
using Mapping;
public class SqlTable : ISqlTableSource
{
#region Init
public SqlTable()
{
SourceID = Interlock... |
7b70be4639a08466f7a377dd24c63774052ccdf0 | make error notification clear | make error notification clear
this notification only says the outcome, the legal docs could not be downloaded, but not the reason, the backend is not connected. | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/ViewModels/StatusBarViewModel.cs | mit | 1,589,100,880 | using Avalonia.Threading;
using AvalonStudio.Extensibility;
using AvalonStudio.Shell;
using NBitcoin.Protocol;
using Nito.AsyncEx;
using ReactiveUI;
using Splat;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.... | using Avalonia.Threading;
using AvalonStudio.Extensibility;
using AvalonStudio.Shell;
using NBitcoin.Protocol;
using Nito.AsyncEx;
using ReactiveUI;
using Splat;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.... |
455aa01c4f0a2fd4adcbd86a7072dbfd421a39c4 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,589,099,094 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "98aa601699e21cf42ddeb18bebec56828ee13b0d";
public static string Version = "1.3";
public static string Build = "3380";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "c1d3d494869cc3fce517f147d6568605ce2509d9";
public static string Version = "1.3";
public static string Build = "3379";
... |
1cf885af15e03eadacee096d02ad9e5e186e281e | added test SemanticHighlightWithNullable | added test SemanticHighlightWithNullable
| OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | tests/OmniSharp.Roslyn.CSharp.Tests/SemanticHighlightFacts.cs | mit | 1,589,098,560 | using System;
using System.Threading.Tasks;
using System.Windows.Input;
using Microsoft.CodeAnalysis.Text;
using OmniSharp.Models.SemanticHighlight;
using OmniSharp.Models.V2;
using OmniSharp.Roslyn.CSharp.Services.SemanticHighlight;
using TestUtility;
using Xunit;
using Xunit.Abstractions;
namespace OmniSharp.Roslyn.... | using System;
using System.Threading.Tasks;
using System.Windows.Input;
using Microsoft.CodeAnalysis.Text;
using OmniSharp.Models.SemanticHighlight;
using OmniSharp.Models.V2;
using OmniSharp.Roslyn.CSharp.Services.SemanticHighlight;
using TestUtility;
using Xunit;
using Xunit.Abstractions;
namespace OmniSharp.Roslyn.... |
b9f78a165c980df048569f026a79e982838e45c5 | added test SemanticHighlightWithAsyncEnumerable | added test SemanticHighlightWithAsyncEnumerable
| OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | tests/OmniSharp.Roslyn.CSharp.Tests/SemanticHighlightFacts.cs | mit | 1,589,098,064 | using System;
using System.Threading.Tasks;
using System.Windows.Input;
using Microsoft.CodeAnalysis.Text;
using OmniSharp.Models.SemanticHighlight;
using OmniSharp.Models.V2;
using OmniSharp.Roslyn.CSharp.Services.SemanticHighlight;
using TestUtility;
using Xunit;
using Xunit.Abstractions;
namespace OmniSharp.Roslyn.... | using System;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Text;
using OmniSharp.Models.SemanticHighlight;
using OmniSharp.Models.V2;
using OmniSharp.Roslyn.CSharp.Services.SemanticHighlight;
using TestUtility;
using Xunit;
using Xunit.Abstractions;
namespace OmniSharp.Roslyn.CSharp.Tests
{
public cl... |
28c50261ac08b1d50c876dbb975e2f6ce4902c1b | Fix a null reference exception (InteractionSystem) that crashed the hell out of the client. | Fix a null reference exception (InteractionSystem) that crashed the hell out of the client.
| space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Shared/GameObjects/EntitySystems/SharedInteractionSystem.cs | mit | 1,589,093,246 | using System;
using Content.Shared.Physics;
using JetBrains.Annotations;
using Robust.Shared.GameObjects.Systems;
using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.Interfaces.Map;
using Robust.Shared.Interfaces.Physics;
using Robust.Shared.IoC;
using Robust.Shared.Map;
using Robust.Shared.Maths;
namespa... | using System;
using Content.Shared.Physics;
using JetBrains.Annotations;
using Robust.Shared.GameObjects.Systems;
using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.Interfaces.Map;
using Robust.Shared.Interfaces.Physics;
using Robust.Shared.IoC;
using Robust.Shared.Map;
using Robust.Shared.Maths;
namespa... |
af4cef38e40205928fda96608b1448cfe47819e8 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,589,092,302 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "c1d3d494869cc3fce517f147d6568605ce2509d9";
public static string Version = "1.3";
public static string Build = "3379";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "8aa419d9f333a4bfc6c6bc8966d60cadfad34de6";
public static string Version = "1.3";
public static string Build = "3374";
... |
5ed19c7f5a2be440f09bedb2c3ec225a9ff4d9c0 | Revert "Destroy projectiles on collision (#2971)" (#2983) | Revert "Destroy projectiles on collision (#2971)" (#2983)
This reverts commit 483fd196d89a49a89d16163b4d7f660f4c8445b6. | LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/WorldObjects/ProjectileCollisionHelper.cs | agpl-3.0 | 1,589,092,062 | using System;
using ACE.Entity.Enum;
using ACE.Server.Entity;
using ACE.Server.Network.GameMessages.Messages;
namespace ACE.Server.WorldObjects
{
/// <summary>
/// Helper class for arrows / bolts / thrown weapons
/// outside of the WorldObject hierarchy
/// </summary>
public static class Projectil... | using System;
using ACE.Entity.Enum;
using ACE.Server.Entity;
using ACE.Server.Network.GameMessages.Messages;
namespace ACE.Server.WorldObjects
{
/// <summary>
/// Helper class for arrows / bolts / thrown weapons
/// outside of the WorldObject hierarchy
/// </summary>
public static class Projectil... |
804aa71d5749a6bb49cd33d23951acf8d78a8136 | Update morph command with some fixes (#2982) | Update morph command with some fixes (#2982)
| LtRipley36706/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE | Source/ACE.Server/Command/Handlers/AdminCommands.cs | agpl-3.0 | 1,589,092,050 | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Net;
using System.Threading;
using log4net;
using ACE.Common.Extensions;
using ACE.Database;
using ACE.Database.Models.Auth;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
... | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Net;
using System.Threading;
using log4net;
using ACE.Common.Extensions;
using ACE.Database;
using ACE.Database.Models.Auth;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
... |
1a59ddc337c17161ef3d369db49159f364115b6a | Fellows cannot shareloot of PK kills (#2981) | Fellows cannot shareloot of PK kills (#2981)
| LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE | Source/ACE.Server/WorldObjects/Corpse.cs | agpl-3.0 | 1,589,092,037 | using System;
using System.Collections.Generic;
using log4net;
using ACE.Common;
using ACE.Entity;
using ACE.Server.Entity.Actions;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Server.Factories;
using ACE.Server.Managers;
using ACE.Server.Network... | using System;
using System.Collections.Generic;
using log4net;
using ACE.Common;
using ACE.Entity;
using ACE.Server.Entity.Actions;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Server.Factories;
using ACE.Server.Managers;
using ACE.Server.Network... |
738c6da594f8a0838e33c7c0d8a73d3f79ef510a | Implement midi keybindings | Implement midi keybindings
| smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,UselessToucan/osu,peppy/osu-new,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu | osu.Game/Overlays/KeyBinding/KeyBindingRow.cs | mit | 1,589,085,560 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Extensions;
using osu.Framework.Extensions.Color4Extensions;
usin... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Extensions;
using osu.Framework.Extensions.Color4Extensions;
usin... |
a10bab5274057c88a79e4fd1e77a5543f4942757 | Correct parse visibility | Correct parse visibility
| splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net | IPTables.Net/Iptables/IpTablesRule.cs | apache-2.0 | 1,589,085,204 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using IPTables.Net.Exceptions;
using IPTables.Net.Iptables.Modules;
using IPTables.Net.Netfilter;
using IPTables.Net.Supporting;
namespace IPTables.Net.Iptables
{
/// <summary>
/// An IPTables Rule, which is tied to a... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using IPTables.Net.Exceptions;
using IPTables.Net.Iptables.Modules;
using IPTables.Net.Netfilter;
using IPTables.Net.Supporting;
namespace IPTables.Net.Iptables
{
/// <summary>
/// An IPTables Rule, which is tied to a... |
ce0cb6fb70ef2473ea9c7f37dcabe6c649cd8b1d | Pad midi keys | Pad midi keys
| peppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-fram... | osu.Framework/Input/Bindings/InputKey.cs | mit | 1,589,084,634 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Framework.Input.Bindings
{
/// <summary>
/// A collection of keys, mouse and other controllers' buttons.
/// </summary>
public enum InputKey... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Framework.Input.Bindings
{
/// <summary>
/// A collection of keys, mouse and other controllers' buttons.
/// </summary>
public enum InputKey... |
2b011871409fbfd7b44438817934cf4c461d967d | Update VotingRequest.cs | Update VotingRequest.cs
Razdvojio sam BirthDatePlace and BirthDate i BirthPlace u skladu sa predloženim promenama | bdjukic/glasajDijasporo,bdjukic/glasajDijasporo,bdjukic/glasajDijasporo | GlasajDijasporo/GlasajDijasporoService/Models/VotingRequest.cs | apache-2.0 | 1,589,081,872 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace GlasajDijasporoService.Model
{
public class VotingRequest
{
public string FirstLastName { get; set; }
public string BirthPlace { get; set; }
public string BirthDate { get; set; }
publ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace GlasajDijasporoService.Model
{
public class VotingRequest
{
public string FirstLastName { get; set; }
public string BirthPlaceDate { get; set; }
public string Gender { get; set; }
pub... |
89526ae558e3db8a25a039df467a5b92128474de | Update ServiceController.cs | Update ServiceController.cs
Dodao sam novo pisanje datuma i mesta rođenja pošto sam razbio to na dva polja na formularu. | bdjukic/glasajDijasporo,bdjukic/glasajDijasporo,bdjukic/glasajDijasporo | GlasajDijasporo/GlasajDijasporoService/Controllers/ServiceController.cs | apache-2.0 | 1,589,081,703 | using GlasajDijasporoService.Helpers;
using GlasajDijasporoService.Model;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System;
using System.Collections.Generic;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using Sys... | using GlasajDijasporoService.Helpers;
using GlasajDijasporoService.Model;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System;
using System.Collections.Generic;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using Sys... |
76fbcd5780513c5c5f38ffddc61ff506af1e86ef | Fix "open in explorer" occurring twice for windows directories | Fix "open in explorer" occurring twice for windows directories
| peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVA... | osu.Framework/Platform/Windows/WindowsGameHost.cs | mit | 1,589,080,061 | // 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.Diagnostics;
using System.IO;
using osu.Framework.Platform.Windows.Native;
using osuTK;
namespace osu.Framework.Platform.Windows
{
public... | // 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.Diagnostics;
using System.IO;
using osu.Framework.Platform.Windows.Native;
using osuTK;
namespace osu.Framework.Platform.Windows
{
public... |
1729e55f7913bf71dd4967466b6cf1850bc36500 | Add test for NoClasses fix | Add test for NoClasses fix
| akatakritos/PygmentSharp | src/PygmentSharp/PygmentSharp.UnitTests/Formatting/HtmlFormatterTests.cs | mit | 1,589,079,270 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using NFluent;
using PygmentSharp.Core.Formatting;
using PygmentSharp.Core.Lexing;
using Xunit;
using Xunit.Abstractions;
namespace PygmentSharp.UnitTests.Formatting
{
publi... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using NFluent;
using PygmentSharp.Core.Formatting;
using PygmentSharp.Core.Lexing;
using Xunit;
using Xunit.Abstractions;
namespace PygmentSharp.UnitTests.Formatting
{
publi... |
ad655295017323ed0997148c5f34a8d438cde522 | allowed other service to be registered into the host | allowed other service to be registered into the host
| kerryjiang/SuperSocket,kerryjiang/SuperSocket | src/SuperSocket.Server/SuperSocketHostBuilder.cs | apache-2.0 | 1,589,078,130 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Hosting;
using SuperSocket;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Hosting;
using SuperSocket;
... |
cb7ff40d2cad720fe6d5010c80d812886fd1c743 | Fix up unfold so that it works for Java9/packageModifier, which has a suffix operator. | Fix up unfold so that it works for Java9/packageModifier, which has a suffix operator.
| kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX | LanguageServer/Transform.cs | mit | 1,589,074,370 | namespace LanguageServer
{
using Algorithms;
using Antlr4.Runtime;
using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Tree;
using GrammarGrammar;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using System;
using Syste... | namespace LanguageServer
{
using Algorithms;
using Antlr4.Runtime;
using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Tree;
using GrammarGrammar;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using System;
using Syste... |
344d2ee741b9f1198a4b930106dc86f68f75e2a1 | fixed error | fixed error | HiddenMonk/Unity3DCustomCharacterControllerCapsuleCollisionDetection | Assets/CapsuleCharacterCollision/CCCollision/Collision/ConvexHullGenerator.cs | mit | 1,589,073,768 | using System.Collections.Generic;
using UnityEngine;
using MIConvexHull;
using System.Linq;
namespace CapsuleCharacterCollisionDetection
{
//Doesnt work with flat plane, but neither does unity. For flat planes unity seems to just set it to the meshes bounds.
//For now we will just make sure to not use it for flat me... | using System.Collections.Generic;
using UnityEngine;
using MIConvexHull;
using System.Linq;
namespace CapsuleCharacterCollisionDetection
{
//Doesnt work with flat plane, but neither does unity. For flat planes unity seems to just set it to the meshes bounds.
//For now we will just make sure to not use it for flat me... |
6b39c9c7aa56509d60cd20f3479a053c7c8122fe | New clientlib ver | New clientlib ver
| kaltura/KalturaGeneratedAPIClientsCsharp | KalturaClient/Client.cs | agpl-3.0 | 1,589,069,100 | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... |
7a44ef36f56f34d7d1416bb84ccebc8b1c30d1f2 | Portraits toggle active based on showing | Portraits toggle active based on showing
Portraits now are on stage at all times once asked for to prevent running into issues with unity ui. This caused massive overdraw of MANY portraits that are all invisible. Now we toggle active inactive based before and after tweens.
| snozbot/fungus | Assets/Fungus/Scripts/Components/PortraitController.cs | mit | 1,589,068,050 | // This code is part of the Fungus library (https://github.com/snozbot/fungus)
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
using UnityEngine;
using UnityEngine.UI;
using System;
using System.Collections;
using MoonSharp.Interpreter;
namespace F... | // This code is part of the Fungus library (https://github.com/snozbot/fungus)
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
using UnityEngine;
using UnityEngine.UI;
using System;
using System.Collections;
using MoonSharp.Interpreter;
namespace F... |
4274645414a6fd2666df95c975147402575de481 | Declare nullability within MessagingTests. | Declare nullability within MessagingTests.
| fixie/fixie,fixie/fixie | src/Fixie.Tests/MessagingTests.cs | mit | 1,589,066,566 | namespace Fixie.Tests
{
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using Assertions;
using Fixie.Internal;
using static Utility;
public abstract class MessagingTests
{
protected MessagingTests()
{
TestClass = FullName<Sampl... | namespace Fixie.Tests
{
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using Assertions;
using Fixie.Internal;
using static Utility;
public abstract class MessagingTests
{
protected MessagingTests()
{
TestClass = FullName<Sampl... |
e194ced55c145dd43a48c4c5a5dc1722fc541d51 | #115 - Made ready function not async | #115 - Made ready function not async
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/SoraBot.cs | agpl-3.0 | 1,589,066,315 | using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Discord.Rest;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.O... | using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Discord.Rest;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.O... |
c04818d3e0544a9a6b2725642ab3f85fcb93ec19 | #115 - Added volume function | #115 - Added volume function
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModule.cs | agpl-3.0 | 1,589,066,185 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... |
5429b54ddb427a322475ce119d7a52b0de87da76 | Declare nullability within CaseTests. | Declare nullability within CaseTests.
| fixie/fixie,fixie/fixie | src/Fixie.Tests/CaseTests.cs | mit | 1,589,066,134 | namespace Fixie.Tests
{
using System;
using System.Linq;
using Assertions;
public class CaseTests
{
public void ShouldBeNamedAfterTheUnderlyingMethod()
{
var @case = Case("Returns");
@case.Name.ShouldBe("Fixie.Tests.CaseTests.Returns");
}
p... | namespace Fixie.Tests
{
using System;
using System.Linq;
using Assertions;
public class CaseTests
{
public void ShouldBeNamedAfterTheUnderlyingMethod()
{
var @case = Case("Returns");
@case.Name.ShouldBe("Fixie.Tests.CaseTests.Returns");
}
p... |
c3ba5011960f5d200f8d96bb7d8573ec48c895ec | Add more quakes to map effect | Add more quakes to map effect
| ethanmoffat/EndlessClient | EOLib.IO/Map/MapEffect.cs | mit | 1,589,066,101 | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
namespace EOLib.IO.Map
{
public enum MapEffect : byte
{
None = 0,
HPDrain = 1,
TPDrain = 2,
Quake1 = 3,
Quake2 = 4,
... | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
namespace EOLib.IO.Map
{
public enum MapEffect : byte
{
None = 0,
HPDrain = 1,
TPDrain = 2,
Quake = 3
}
} |
350dc47a52ee45b37f44d39bea5210060e8515c8 | #115 - Implemented skip | #115 - Implemented skip
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModule.cs | agpl-3.0 | 1,589,065,914 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... |
1dce4ccca4aca48df8773998f4eafadf72dd85e9 | #115 - Added pause and resume | #115 - Added pause and resume
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModule.cs | agpl-3.0 | 1,589,065,613 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public partial class AudioMod... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
using Victoria.Enums;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public par... |
29a726328a5ac09acd93afa6a5a3e3d92ad133d3 | Fix issue with ARC4 decryption. | Fix issue with ARC4 decryption.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtApiDotNet/Utilities/Security/ARC4.cs | apache-2.0 | 1,589,065,585 | // Copyright 2020 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applica... | // Copyright 2020 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applica... |
4a476e2679d20898eb03d78cdaa7dee203c9b58f | Doc comment tweak | Doc comment tweak
| autofac/Autofac,autofac/Autofac | src/Autofac/Core/ISharingLifetimeScope.cs | mit | 1,589,065,090 | // This software is part of the Autofac IoC container
// Copyright © 2011 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
// restric... | // This software is part of the Autofac IoC container
// Copyright © 2011 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
// restric... |
5902cd81a40ed2fbf21a92f6bb041cc1d8b3bcd4 | Move passing transforms to post-load for safety | Move passing transforms to post-load for safety
| UselessToucan/osu,peppy/osu,peppy/osu,peppy/osu-new,smoogipooo/osu,peppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu | osu.Game.Rulesets.Taiko/Skinning/LegacyTaikoScroller.cs | mit | 1,589,064,774 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... |
3565fe1cb27602557d3b6e8522feb2e792f08a67 | Fix incorrect passing logic | Fix incorrect passing logic
| NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,smoogipooo/osu,ppy/osu,UselessToucan/osu,peppy/osu,ppy/osu,ppy/osu | osu.Game.Rulesets.Taiko/Skinning/LegacyTaikoScroller.cs | mit | 1,589,064,699 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewo... |
6b4d2ea66d5312a2494d49beb6d868da68f11e9d | parse enum in binding conversion if destType is Enum and sourceType is string | parse enum in binding conversion if destType is Enum and sourceType is string
| jpbruyere/Crow,jpbruyere/Crow | Crow/src/IML/CompilerServices.cs | mit | 1,589,064,602 | // Copyright (c) 2013-2020 Jean-Philippe Bruyère <jp_bruyere@hotmail.com>
//
// This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
using System;
using System.Reflection.Emit;
using System.Reflection;
using System.Diagnostics;
using System.Linq;
using System.Collections.Generic;
us... | // Copyright (c) 2013-2020 Jean-Philippe Bruyère <jp_bruyere@hotmail.com>
//
// This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
using System;
using System.Reflection.Emit;
using System.Reflection;
using System.Diagnostics;
using System.Linq;
using System.Collections.Generic;
us... |
50934cb3675c104e8c8732322b79c4bdf95ddf5e | Fix breaking SDK change | Fix breaking SDK change
| JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | resharper/resharper-unity/test/src/CSharp/Feature/Services/CodeCompletion/VersionSpecificCompletionListTest.cs | apache-2.0 | 1,589,063,889 | using System;
using System.Collections.Generic;
using System.Linq;
using JetBrains.ProjectModel.Propoerties;
using JetBrains.ProjectModel.Update;
using JetBrains.ReSharper.FeaturesTestFramework.Completion;
using JetBrains.Util;
using JetBrains.Util.Dotnet.TargetFrameworkIds;
using NUnit.Framework;
namespace JetBrains... | using System;
using System.Collections.Generic;
using System.Linq;
using JetBrains.ProjectModel.Propoerties;
using JetBrains.ProjectModel.Update;
using JetBrains.ReSharper.FeaturesTestFramework.Completion;
using JetBrains.Util;
using JetBrains.Util.Dotnet.TargetFrameworkIds;
using NUnit.Framework;
namespace JetBrains... |
a5431cdee42137554e848cb6b38845a38dee9550 | More entity keys (#246) | More entity keys (#246)
| SteamDatabase/ValveResourceFormat | ValveResourceFormat/Utils/EntityLumpKnownKeys.cs | mit | 1,589,063,773 | using System.Collections.Generic;
namespace ValveResourceFormat.Utils
{
public class EntityLumpKnownKeys
{
public Dictionary<uint, string> Fields { get; } = new Dictionary<uint, string>();
public EntityLumpKnownKeys()
{
// grep -Eohr "^\s*([a-zA-Z0-9\w_-]+)\s*\(" **/*.fgd |... | using System.Collections.Generic;
namespace ValveResourceFormat.Utils
{
public class EntityLumpKnownKeys
{
public Dictionary<uint, string> Fields { get; } = new Dictionary<uint, string>();
public EntityLumpKnownKeys()
{
// grep -Eohr "^\s*([a-zA-Z0-9\w_-]+)\s*\(" **/*.fgd |... |
7d4fcce3a2b5367344b3311353165989818601fb | SampleHistoryTestingParallel. Fix time frame. | SampleHistoryTestingParallel. Fix time frame.
| StockSharp/StockSharp | Samples/Testing/SampleHistoryTestingParallel/MainWindow.xaml.cs | apache-2.0 | 1,589,062,853 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
7d48a8dafd4dfbd11cfa3a3757f974bc404ef5ef | CandleBuilderMessageAdapter. Fix set subscription id for big candles. | CandleBuilderMessageAdapter. Fix set subscription id for big candles.
| StockSharp/StockSharp | Algo/Candles/Compression/CandleBuilderMessageAdapter.cs | apache-2.0 | 1,589,062,787 | namespace StockSharp.Algo.Candles.Compression
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Localization;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Candle builder adapter.
/// </summary>
public... | namespace StockSharp.Algo.Candles.Compression
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Localization;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Candle builder adapter.
/// </summary>
public... |
af5cba7a34e8b0b9e34b1fa4252676fa988a05c8 | Update MachineFrame.cs | Update MachineFrame.cs
| krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Construction/MachineFrame.cs | agpl-3.0 | 1,589,062,603 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
namespace Machines
{
[System.Serializable]
public class AllowedTraitList
{
public AllowedTraitList()
{
}
public AllowedTraitList(ItemTrait allowedTrait)
{
AllowedTrait = allowedTrait;
}
public ItemTrait ... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
namespace Machines
{
[System.Serializable]
public class AllowedTraitList
{
public AllowedTraitList()
{
}
public AllowedTraitList(ItemTrait allowedTrait)
{
AllowedTrait = allowedTrait;
}
public ItemTrait ... |
aa42e4b4ddff5c0b2ec1ec4fee2858f5018df17a | #115 - Added leave command | #115 - Added leave command
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/AudioModule/AudioModule.cs | agpl-3.0 | 1,589,062,537 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public class AudioModule : SoraSocketCommandModule
... | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
using Victoria;
namespace SoraBot.Bot.Modules.AudioModule
{
[Name("Music")]
[Summary("All commands around music playing :>")]
public class AudioModule : SoraSocketCommandModule
... |
2b6e15c7441a0831ffeebe44e3222b5ef5a0f96c | Update MachineParts.cs | Update MachineParts.cs
| fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Construction/MachineParts.cs | agpl-3.0 | 1,589,061,605 | using System.Collections;
using System.Collections.Generic;
using System;
using UnityEngine;
namespace Machines
{
[CreateAssetMenu(fileName = "MachineParts", menuName = "ScriptableObjects/MachineParts", order = 1)]
public class MachineParts : ScriptableObject
{
[Serializable]
public class MachinePartList
{
... | using System.Collections;
using System.Collections.Generic;
using System;
using UnityEngine;
namespace Machines
{
[CreateAssetMenu(fileName = "MachineParts", menuName = "ScriptableObjects/MachineParts", order = 1)]
public class MachineParts : ScriptableObject
{
[Serializable]
public class MachinePartList
{
... |
6855421f974d49439bceeebf62ae7c698e404aaa | #115 - Make sure its non blocking bcs the bot shouldn't care about lavalink connecting | #115 - Make sure its non blocking bcs the bot shouldn't care about lavalink connecting
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/SoraBot.cs | agpl-3.0 | 1,589,061,332 | using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Discord.Rest;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.O... | using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Discord.Rest;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.O... |
71716d68856a8ade92b0db641cc075b81e4356df | DataType. IsSecurityRequired fix. | DataType. IsSecurityRequired fix.
| StockSharp/StockSharp | Messages/DataType.cs | apache-2.0 | 1,589,061,072 | namespace StockSharp.Messages
{
using System;
using Ecng.Common;
using Ecng.ComponentModel;
using Ecng.Serialization;
using StockSharp.Localization;
/// <summary>
/// Data type info.
/// </summary>
public class DataType : Equatable<DataType>, IPersistable
{
/// <summary>
/// Initializes a new instance ... | namespace StockSharp.Messages
{
using System;
using Ecng.Common;
using Ecng.ComponentModel;
using Ecng.Serialization;
using StockSharp.Localization;
/// <summary>
/// Data type info.
/// </summary>
public class DataType : Equatable<DataType>, IPersistable
{
/// <summary>
/// Initializes a new instance ... |
381a196cd7e2a6b9cce7547327ec0b1425d06ae2 | Simplify ProjectBuilder. | Simplify ProjectBuilder.
| ExRam/ExRam.Gremlinq | ExRam.Gremlinq.Core/Queries/GremlinQuery.cs | mit | 1,589,061,036 | // ReSharper disable ArrangeThisQualifier
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Linq.Expressions;
using ExRam.Gremlinq.Core.GraphElements;
using Gremlin.Net.Process.Traversal;
using Microsoft.Extensions.Logging;
na... | // ReSharper disable ArrangeThisQualifier
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Linq.Expressions;
using ExRam.Gremlinq.Core.GraphElements;
using Gremlin.Net.Process.Traversal;
using Microsoft.Extensions.Logging;
na... |
58e0efddf72184c244d717d65f185bf0eff30d3c | Declare nullability within MethodInfoExtensions. | Declare nullability within MethodInfoExtensions.
| fixie/fixie,fixie/fixie | src/Fixie/MethodInfoExtensions.cs | mit | 1,589,060,726 | namespace Fixie
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
public static class MethodInfoExtensions
{
static ... | namespace Fixie
{
using System;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
public static class MethodInfoExtensions
{
static MethodInfo startAsTask;
/// <summa... |
9dbc07228d2f8d0bd4adb3c6ca9e5890952f565f | Declare nullability within Runner. | Declare nullability within Runner.
| fixie/fixie,fixie/fixie | src/Fixie/Internal/Runner.cs | mit | 1,589,059,904 | namespace Fixie.Internal
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
class Runner
{
readonly Assembly assembly;
readonly Bus bus;
readonly string[] customArguments;
public Runner(Assembly assembly, Bus bu... | namespace Fixie.Internal
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
class Runner
{
readonly Assembly assembly;
readonly Bus bus;
readonly string[] customArguments;
public Runner(Assembly assembly, Bus bu... |
e66a15e653b7cfa8214ec77d222cb2d82de89e94 | Change guild permissions to have ReadGuildConfig when ViewAuditLog is true. | Change guild permissions to have ReadGuildConfig when ViewAuditLog is true.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | MitternachtWeb/Models/PagePermission.cs | mit | 1,589,059,556 | using Discord;
using System;
namespace MitternachtWeb.Models {
[Flags]
public enum BotLevelPermission {
None = 0b_0000,
ReadBotConfig = 0b_0001,
WriteBotConfig = 0b_0011,
ReadAllGuildConfigs = 0b_0100,
WriteAllGuildConfigs = 0b_1100,
All = 0b_1111,
}
[Fl... | using Discord;
using System;
namespace MitternachtWeb.Models {
[Flags]
public enum BotLevelPermission {
None = 0b_0000,
ReadBotConfig = 0b_0001,
WriteBotConfig = 0b_0011,
ReadAllGuildConfigs = 0b_0100,
WriteAllGuildConfigs = 0b_1100,
All = 0b_1111,
}
[Fl... |
fc6c07b82e5759035261231eceadb3e6f57c36a8 | Declare nullability in TestClass. | Declare nullability in TestClass.
| fixie/fixie,fixie/fixie | src/Fixie/TestClass.cs | mit | 1,589,059,159 | namespace Fixie
{
using System;
using System.Reflection;
using System.Runtime.ExceptionServices;
/// <summary>
/// The context in which a test class is running.
/// </summary>
public class TestClass
{
readonly Action<Action<Case>> runCases;
readonly bool isStatic;
... | namespace Fixie
{
using System;
using System.Reflection;
using System.Runtime.ExceptionServices;
/// <summary>
/// The context in which a test class is running.
/// </summary>
public class TestClass
{
readonly Action<Action<Case>> runCases;
readonly bool isStatic;
... |
6de1b05e538bcd677f73973585b38ca821f7a8dc | Removed outdated confusing comment | Removed outdated confusing comment
| nunit/nunit3-vs-adapter,nunit/nunit3-vs-adapter | src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs | mit | 1,589,059,091 | // ***********************************************************************
// 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... |
3a74775288cde92704ef0581d2e2776d6913c03b | #189 `>>link`Неправильная ссылка | #189 `>>link`Неправильная ссылка
| yar229/WebDavMailRuCloud | MailRuCloud/MailRuCloudApi/SpecialCommands/SharedFolderLinkCommand.cs | mit | 1,589,058,477 | using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using YaR.Clouds.Base.Repos;
using YaR.Clouds.Base.Repos.MailRuCloud;
using YaR.Clouds.Links;
namespace YaR.Clouds.SpecialCommands
{
public class SharedFolderLinkCommand : SpecialCommand
{
... | using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using YaR.Clouds.Base.Repos;
using YaR.Clouds.Base.Repos.MailRuCloud;
using YaR.Clouds.Links;
namespace YaR.Clouds.SpecialCommands
{
public class SharedFolderLinkCommand : SpecialCommand
{
... |
aeb7a51c153879c9d3572b8d1258378ab41f090b | EmulationMessageAdapter. Fix subscription responses. | EmulationMessageAdapter. Fix subscription responses.
| StockSharp/StockSharp | Algo/Testing/EmulationMessageAdapter.cs | apache-2.0 | 1,589,058,352 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
b54e5b41b5a06f567fd5ec2ea0343bfd15e1a900 | FilteredMarketDepthAdapter fix. | FilteredMarketDepthAdapter fix.
| StockSharp/StockSharp | Algo/FilteredMarketDepthAdapter.cs | apache-2.0 | 1,589,058,246 | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Messages;
/// <summary>
/// Filtered market depth data type.
/// </summary>
public class FilteredMarketDepthMessage : MarketDataMessage
{
/// <summar... | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Messages;
/// <summary>
/// Filtered market depth data type.
/// </summary>
public class FilteredMarketDepthMessage : MarketDataMessage
{
/// <summar... |
cca6825180ce991df47e874ef133fba02c62602f | exception handling for cheatsheet.md not found | exception handling for cheatsheet.md not found
| tewarid/net-tools | GitTool/MainForm.cs | mit | 1,589,057,857 | using Common;
using LibGit2Sharp;
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GitTool
{
[MainForm(Name = "Git Tool"... | using Common;
using LibGit2Sharp;
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GitTool
{
[MainForm(Name = "Git Tool"... |
8d1d0a4c6a14f53f84167e55f95db498d868dde0 | query PNPDeviceID async | query PNPDeviceID async
| tewarid/net-tools | SerialTool/MainForm.cs | mit | 1,589,057,783 | using Common;
using System;
using System.IO;
using System.IO.Ports;
using System.Management;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SerialTool
{
[MainForm(Name = "Serial Port Tool")]
public partial class MainForm : Form
{
private SerialPort port;... | using Common;
using System;
using System.IO;
using System.IO.Ports;
using System.Management;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SerialTool
{
[MainForm(Name = "Serial Port Tool")]
public partial class MainForm : Form
{
private SerialPort port;
... |
5ab2fe68d6c5194823847c3631e5373b8f47f1dd | Small change. | Small change.
| StockSharp/StockSharp | Messages/SecurityMessage.cs | apache-2.0 | 1,589,057,219 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
1fed0db7d0b7f9f7a9ba31db3dd5bd1d600a58cd | Use "using var" instead of old syntax, format file. | Use "using var" instead of old syntax, format file.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | src/NadekoBot/Modules/Verification/Common/VerificationProcess.cs | mit | 1,589,057,068 | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
using GommeHDnetForumAPI.Models.Entities;
using GommeHDnetForumAPI.Exceptions;
using Mitternacht.Extensions;
using Mitternacht.Modules.Forum.Services;
using Mitternacht.Modules.Verification.Exceptions;
usin... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
using GommeHDnetForumAPI.Models.Entities;
using GommeHDnetForumAPI.Exceptions;
using Mitternacht.Extensions;
using Mitternacht.Modules.Forum.Services;
using Mitternacht.Modules.Verification.Exceptions;
usin... |
b2f33dd4ff74707e7c86f78105f6e140d662b557 | Configure some awaits. | Configure some awaits.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | src/NadekoBot/Modules/Verification/Common/VerificationProcess.cs | mit | 1,589,056,811 | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
using GommeHDnetForumAPI.Models.Entities;
using GommeHDnetForumAPI.Exceptions;
using Mitternacht.Extensions;
using Mitternacht.Modules.Forum.Services;
using Mitternacht.Modules.Verification.Exceptions;
usin... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
using GommeHDnetForumAPI.Models.Entities;
using GommeHDnetForumAPI.Exceptions;
using Mitternacht.Extensions;
using Mitternacht.Modules.Forum.Services;
using Mitternacht.Modules.Verification.Exceptions;
usin... |
922eb9abc54e9f15e6e6597b68eaab4a75b64a8d | Declare nullability in ClassRunner. | Declare nullability in ClassRunner.
| fixie/fixie,fixie/fixie | src/Fixie/Internal/ClassRunner.cs | mit | 1,589,056,634 | namespace Fixie.Internal
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
class ClassRunner
{
readonly Bus bus;
readonly Execution execution;
readonly MethodDiscoverer methodDiscoverer;
r... | namespace Fixie.Internal
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
class ClassRunner
{
readonly Bus bus;
readonly Execution execution;
readonly MethodDiscoverer methodDiscoverer;
r... |
dbba293ca5acbeb4fb95fca88a0b5059c87c05a4 | Declare nullability within ExceptionExtensions. | Declare nullability within ExceptionExtensions.
| fixie/fixie,fixie/fixie | src/Fixie/Internal/Listeners/ExceptionExtensions.cs | mit | 1,589,055,271 | namespace Fixie.Internal.Listeners
{
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.ExceptionServices;
static class ExceptionExtensions
{
static readonly MethodInfo CaseExecuteMethod = typeof(Case).GetMe... | namespace Fixie.Internal.Listeners
{
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.ExceptionServices;
static class ExceptionExtensions
{
static readonly MethodInfo CaseExecuteMethod = typeof(Case).GetMe... |
15775d08cba2b79182ba470e4dafacbfe3bc57ca | Generate lower case URLs and query strings. | Generate lower case URLs and query strings.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | MitternachtWeb/Startup.cs | mit | 1,589,054,922 | using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.Authentication.OAuth;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Htt... | using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.Authentication.OAuth;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Htt... |
7169b6eadafb28009340860534d6595215cbcab2 | Fix alpha | Fix alpha
Meaning of alpha values is opposite in PHP
| iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie | src/Peachpie.Library.Graphics/PhpGd2.cs | apache-2.0 | 1,589,054,656 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... |
d672fb76af3e5d2b364be647c02866ea2fe732d6 | FilteredMarketDepthAdapter fix. | FilteredMarketDepthAdapter fix.
| StockSharp/StockSharp | Algo/FilteredMarketDepthAdapter.cs | apache-2.0 | 1,589,054,551 | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Localization;
using StockSharp.Messages;
/// <summary>
/// Filtered market depth data type.
/// </summary>
public class FilteredMarketDepthMessage : Ma... | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using MoreLinq;
using StockSharp.Localization;
using StockSharp.Messages;
/// <summary>
/// Filtered market depth data type.
/// </summary>
public class FilteredMarke... |
52837083df21eac5b65157d63f60999bec775ae1 | Only one return statement in As. | Only one return statement in As.
| ExRam/ExRam.Gremlinq | ExRam.Gremlinq.Core/Queries/GremlinQuery.cs | mit | 1,589,054,016 | // ReSharper disable ArrangeThisQualifier
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Linq.Expressions;
using ExRam.Gremlinq.Core.GraphElements;
using Gremlin.Net.Process.Traversal;
using Microsoft.Extensions.Logging;
na... | // ReSharper disable ArrangeThisQualifier
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Linq.Expressions;
using ExRam.Gremlinq.Core.GraphElements;
using Gremlin.Net.Process.Traversal;
using Microsoft.Extensions.Logging;
na... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.