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
a7d2587dc5e053eb4e26525ce8ba3c96de38a30d
Added Utils.Log and its variants without params
Added Utils.Log and its variants without params To avoid unnecessary array allocation
allista/AT_Utils
MiscUtils.cs
mit
1,588,420,011
// Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2015 Allis Tauri using System; using System.IO; using System.Linq; using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Diagnostics; using UnityEngine; namespace AT_Utils { public st...
// Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2015 Allis Tauri using System; using System.IO; using System.Linq; using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Diagnostics; using UnityEngine; namespace AT_Utils { public st...
a7588cba6b7b76bb89b6957ad879910eba11c58d
Fix 758; race condition causing NullReferenceException for BrokenCircuitException
Fix 758; race condition causing NullReferenceException for BrokenCircuitException
michael-wolfenden/Polly,michael-wolfenden/Polly
src/Polly/CircuitBreaker/CircuitStateController.cs
bsd-3-clause
1,588,419,774
using System; using System.Threading; using Polly.Utilities; namespace Polly.CircuitBreaker { internal abstract class CircuitStateController<TResult> : ICircuitController<TResult> { protected readonly TimeSpan _durationOfBreak; protected long _blockedTill; protected CircuitState _circu...
using System; using System.Threading; using Polly.Utilities; namespace Polly.CircuitBreaker { internal abstract class CircuitStateController<TResult> : ICircuitController<TResult> { protected readonly TimeSpan _durationOfBreak; protected long _blockedTill; protected CircuitState _circu...
2b1fefc8da7bba915abb33e6359fb0a4bf7fc1cd
Changed wsdl page's content type to text/xml for browser compability.
Changed wsdl page's content type to text/xml for browser compability.
DigDes/SoapCore
src/SoapCore/SoapEndpointMiddleware.cs
mit
1,588,419,565
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Reflection; using System.Runtime.CompilerServices; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Reflection; using System.Runtime.CompilerServices; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using...
28db473c05a734aaeae92fd5c9a6cd56626030a1
Forgot to commit one file
Forgot to commit one file
punker76/Controlz,ControlzEx/ControlzEx,punker76/Controlz,ControlzEx/ControlzEx
src/ControlzEx/Theming/LibraryTheme.cs
mit
1,588,418,672
#nullable enable namespace ControlzEx.Theming { using System; using System.Windows; using System.Windows.Media; using ControlzEx.Internal; using JetBrains.Annotations; /// <summary> /// Represents a theme. /// </summary> public class LibraryTheme { /// <summary> ...
#nullable enable namespace ControlzEx.Theming { using System; using System.Windows; using System.Windows.Media; using JetBrains.Annotations; /// <summary> /// Represents a theme. /// </summary> public class LibraryTheme { /// <summary> /// Gets the key for the libra...
16d5eb93ff2745a1fd68e04d9a95564c46c6e798
Fixed fault ns attribute
Fixed fault ns attribute
DigDes/SoapCore
src/SoapCore/Meta/MetaWCFBodyWriter.cs
mit
1,588,418,515
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Se...
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Se...
c16f344ccb14edc319f72beda2fe7e79b34eedf7
Adding error handling
Adding error handling
ControlzEx/ControlzEx,punker76/Controlz,punker76/Controlz,ControlzEx/ControlzEx
src/ControlzEx/Theming/Theme.cs
mit
1,588,417,001
#nullable enable namespace ControlzEx.Theming { using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Windows; using System.Windows.Media; using JetBrains.Annotations; /// <summary> /// Re...
#nullable enable namespace ControlzEx.Theming { using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Windows; using System.Windows.Media; using JetBrains.Annotations; /// <summary> /// Re...
c9d1685f04a777e864480693626069fca2ec9b4f
Add comments copied from VisualExtensions.
Add comments copied from VisualExtensions.
wieslawsoltes/Perspex,SuperJMN/Avalonia,Perspex/Perspex,jkoritzinsky/Avalonia,akrisiun/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,grokys/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,grokys/Perspex,jkoritzinsky/Avalonia,AvaloniaU...
src/Avalonia.Styling/LogicalTree/LogicalExtensions.cs
mit
1,588,416,949
using System; using System.Collections.Generic; namespace Avalonia.LogicalTree { /// <summary> /// Provides extension methods for working with the logical tree. /// </summary> public static class LogicalExtensions { /// <summary> /// Enumerates the ancestors of an <see cref="ILogica...
using System; using System.Collections.Generic; namespace Avalonia.LogicalTree { public static class LogicalExtensions { public static IEnumerable<ILogical> GetLogicalAncestors(this ILogical logical) { Contract.Requires<ArgumentNullException>(logical != null); logical =...
b5defbe08c8ff52c3b99adf43cecbd008b6db0f2
Handle list updates in post processing pass even more gracefully
Handle list updates in post processing pass even more gracefully
0x0ade/MonoMod,AngelDE98/MonoMod
MonoMod/MonoModder.cs
mit
1,588,416,506
using Mono.Cecil; using Mono.Cecil.Cil; using Mono.Cecil.Mdb; using Mono.Cecil.Pdb; using Mono.Collections.Generic; using MonoMod.InlineRT; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using MonoMod...
using Mono.Cecil; using Mono.Cecil.Cil; using Mono.Cecil.Mdb; using Mono.Cecil.Pdb; using Mono.Collections.Generic; using MonoMod.InlineRT; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using MonoMod...
f3dfb5d18cfa9ff375c0bd378fc9a5d990ca8c55
Fix broken visual ancestor.
Fix broken visual ancestor.
AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,Perspex/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,grokys/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,Supe...
src/Avalonia.Visuals/VisualTree/VisualExtensions.cs
mit
1,588,415,532
using System; using System.Collections.Generic; using System.Linq; using Avalonia.Rendering; namespace Avalonia.VisualTree { /// <summary> /// Provides extension methods for working with the visual tree. /// </summary> public static class VisualExtensions { /// <summary> /// Calcula...
using System; using System.Collections.Generic; using System.Linq; using Avalonia.Rendering; namespace Avalonia.VisualTree { /// <summary> /// Provides extension methods for working with the visual tree. /// </summary> public static class VisualExtensions { /// <summary> /// Calcula...
83ffcb25abd38ed946ec382015418590519fef3f
sdk: remove duplicities from classmap
sdk: remove duplicities from classmap
peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie
src/Peachpie.NET.Sdk/BuildTask.cs
apache-2.0
1,588,414,705
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Pchp.CodeAnalysis.CommandLine; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// C...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using System.Threading; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Pchp.CodeAnalysis.CommandLine; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// Compilation task. ...
5d84ee13296d014e5378464008548ed1c3851814
sdk: json cleanup
sdk: json cleanup
peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie
src/Peachpie.NET.Sdk/SimpleJSON/SimpleJSON.cs
apache-2.0
1,588,414,705
/* * * * * * A simple JSON Parser / builder * ------------------------------ * * It mainly has been written as a simple JSON parser. It can build a JSON string * from the node-tree, or generate a node tree from any valid JSON string. * * Written by Bunny83 * 2012-06-09 * * [2012-06-09 First Version] * - ...
/* * * * * * A simple JSON Parser / builder * ------------------------------ * * It mainly has been written as a simple JSON parser. It can build a JSON string * from the node-tree, or generate a node tree from any valid JSON string. * * Written by Bunny83 * 2012-06-09 * * [2012-06-09 First Version] * - ...
8f72cf3e9af2594b3db41f614b765005b9264f53
sdk: json parser cleanup
sdk: json parser cleanup
iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie
src/Peachpie.NET.Sdk/SimpleJSON/SimpleJSON.cs
apache-2.0
1,588,414,705
/* * * * * * A simple JSON Parser / builder * ------------------------------ * * It mainly has been written as a simple JSON parser. It can build a JSON string * from the node-tree, or generate a node tree from any valid JSON string. * * Written by Bunny83 * 2012-06-09 * * [2012-06-09 First Version] * - ...
/* * * * * * A simple JSON Parser / builder * ------------------------------ * * It mainly has been written as a simple JSON parser. It can build a JSON string * from the node-tree, or generate a node tree from any valid JSON string. * * Written by Bunny83 * 2012-06-09 * * [2012-06-09 First Version] * - ...
73d6e90dbeadc301ceccead12ed2ce8b6cdb6abf
sdk: compiler arg "/autoload:classmap,<file path>"
sdk: compiler arg "/autoload:classmap,<file path>"
peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept
src/Peachpie.NET.Sdk/BuildTask.cs
apache-2.0
1,588,414,705
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using System.Threading; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Pchp.CodeAnalysis.CommandLine; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// Compilation task. ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using System.Threading; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Pchp.CodeAnalysis.CommandLine; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// Compilation task. ...
f3040288bc0a5c75313c94844996042ad2c047fa
sdk: composer autoload classmap
sdk: composer autoload classmap
iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie
src/Peachpie.NET.Sdk/ComposerTask.cs
apache-2.0
1,588,414,705
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using Devsense.PHP.Syntax; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using SimpleJSON; namespace Peach...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using Devsense.PHP.Syntax; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using SimpleJSON; namespace Peach...
c857c69ad41d06d835ac616300ca4989aad25ccd
type declared run time check omitted
type declared run time check omitted
iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie
src/Peachpie.CodeAnalysis/CodeGen/CodeGenerator.Emit.cs
apache-2.0
1,588,414,705
using Devsense.PHP.Syntax; using Devsense.PHP.Syntax.Ast; using Devsense.PHP.Text; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeGen; using Microsoft.CodeAnalysis.Emit; using Pchp.CodeAnalysis.Emit; using Pchp.CodeAnalysis.Errors; using Pchp.CodeAnalysis.FlowAnalysis; using Pchp.CodeAnalysis.Semantics...
using Devsense.PHP.Syntax; using Devsense.PHP.Syntax.Ast; using Devsense.PHP.Text; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeGen; using Microsoft.CodeAnalysis.Emit; using Pchp.CodeAnalysis.Emit; using Pchp.CodeAnalysis.Errors; using Pchp.CodeAnalysis.FlowAnalysis; using Pchp.CodeAnalysis.Semantics...
a0b251fee84dc58d4f48818eaa89a49bd92b1914
implicit autoload in runtime
implicit autoload in runtime autoload classes even no spl autoloader is registered - in empty context and empty web context, any class gets autoloaded, - otherwise; only classes in classmap or psr map
iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie
src/Peachpie.Runtime/Context.Autoload.cs
apache-2.0
1,588,414,705
#nullable enable using Pchp.Core.Reflection; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; namespace Pchp.Core { /// <summary> /// An interface providing methods for the autoload mechanism in PHP. /// </summary> public inter...
#nullable enable using Pchp.Core.Reflection; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; namespace Pchp.Core { /// <summary> /// An interface providing methods for the autoload mechanism in PHP. /// </summary> public inter...
699ef72588a132293061bdb8df57d242a5ea6a4d
context: reflecting types cleanup
context: reflecting types cleanup
peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie
src/Peachpie.Runtime/Context.cs
apache-2.0
1,588,414,705
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using Pchp.Core.Utilities; using System.Reflection; using Pchp.Core.Reflection; namespace Pchp.Core { ///...
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using Pchp.Core.Utilities; using System.Reflection; using Pchp.Core.Reflection; namespace Pchp.Core { ///...
06b41fbdcad6cf83d05f7cb87aed5fddf2832bb8
sdk: psr4 map generated for empty prefixes
sdk: psr4 map generated for empty prefixes
peachpiecompiler/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie
src/Peachpie.NET.Sdk/BuildTask.cs
apache-2.0
1,588,414,705
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Pchp.CodeAnalysis.CommandLine; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// C...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Pchp.CodeAnalysis.CommandLine; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// C...
e11475eaf045f0373ef3f04edb9a6e2f6b0273ce
sdk: parses autoload psr-4, psr-0, classmap, exclude-from-classmap
sdk: parses autoload psr-4, psr-0, classmap, exclude-from-classmap
peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept
src/Peachpie.NET.Sdk/ComposerTask.cs
apache-2.0
1,588,414,705
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using SimpleJSON; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// Task th...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using SimpleJSON; namespace Peachpie.NET.Sdk.Tools { /// <summary> /// Task that processes <c>composer.json</c> file...
af28e399c55424f44b39b678e2ac4aa3459772b7
sdk: simplejson cleanup
sdk: simplejson cleanup
iolevel/peachpie,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie
src/Peachpie.NET.Sdk/SimpleJSON/SimpleJSON.cs
apache-2.0
1,588,414,705
/* * * * * * A simple JSON Parser / builder * ------------------------------ * * It mainly has been written as a simple JSON parser. It can build a JSON string * from the node-tree, or generate a node tree from any valid JSON string. * * Written by Bunny83 * 2012-06-09 * * [2012-06-09 First Version] * - ...
/* * * * * * A simple JSON Parser / builder * ------------------------------ * * It mainly has been written as a simple JSON parser. It can build a JSON string * from the node-tree, or generate a node tree from any valid JSON string. * * Written by Bunny83 * 2012-06-09 * * [2012-06-09 First Version] * - ...
3fd01900c3343b12f1306a14f48f1cc1c49bd14e
autoload in runtime with spl autoload fix
autoload in runtime with spl autoload fix
iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept
src/Peachpie.Library/SPL/Autoload.cs
apache-2.0
1,588,414,705
using Pchp.Core; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Pchp.Core.Reflection; using System.Diagnostics; namespace Pchp.Library.Spl { [PhpExtension(SplExtension.Name)] public static class Autoload { #region SplAutoloadService ...
using Pchp.Core; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Pchp.Core.Reflection; using System.Diagnostics; namespace Pchp.Library.Spl { [PhpExtension(SplExtension.Name)] public static class Autoload { #region SplAutoloadService ...
a3cebb3d3ea586125ddba180045025000db8e16b
Fixed for nullable enums
Fixed for nullable enums
DigDes/SoapCore
src/SoapCore/Meta/MetaBodyWriter.cs
mit
1,588,412,766
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Schema; using System....
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Schema; using System....
390110fa2e11a02c9100f7c107b3d736d93a2704
Fixed wsdl for nullable structs
Fixed wsdl for nullable structs
DigDes/SoapCore
src/SoapCore/Meta/MetaBodyWriter.cs
mit
1,588,412,218
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Schema; using System....
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Schema; using System....
44c0e3430128eb3aaa837041583c18dc44ed4380
Better comments
Better comments
mdesalvo/RDFSharp
RDFSharp/Model/Validation/Abstractions/Constraints/RDFBooleanAndConstraint.cs
apache-2.0
1,588,411,596
/* 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...
031f36576577712755733ca8bd7090f39010e008
Add unit test
Add unit test
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs
mit
1,588,411,374
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 ...
24b51e085ebef3addc6c09e2ee825cca0987b0ed
Ensure to also report value node
Ensure to also report value node
mdesalvo/RDFSharp
RDFSharp/Model/Validation/Abstractions/Constraints/RDFBooleanAndConstraint.cs
apache-2.0
1,588,411,295
/* 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...
38d130fc462eaeed8ff392460f639e0b5fea547d
Add a FIXME to remember to check whether we still need to skip start/end-of-year checks
Add a FIXME to remember to check whether we still need to skip start/end-of-year checks
nodatime/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,nodatime/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,malcolmr/nodatime
src/NodaTime.Test/TimeZones/BclDateTimeZoneTest.cs
apache-2.0
1,588,410,883
// Copyright 2012 The Noda Time Authors. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using System; using System.Collections.ObjectModel; using System.Linq; using NUnit.Framework; using NodaTime.TimeZones; namespace NodaTime.Test.TimeZones...
// Copyright 2012 The Noda Time Authors. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using System; using System.Collections.ObjectModel; using System.Linq; using NUnit.Framework; using NodaTime.TimeZones; namespace NodaTime.Test.TimeZones...
34085040432b24cae9fa1e42cdc3d0b3b46abcd0
Add the facility to ignore a test in an expression-friendly way
Add the facility to ignore a test in an expression-friendly way
malcolmr/nodatime,nodatime/nodatime,BenJenkinson/nodatime,nodatime/nodatime,malcolmr/nodatime,BenJenkinson/nodatime,malcolmr/nodatime
src/NodaTime.Test/Ignore.cs
apache-2.0
1,588,410,883
// Copyright 2018 The Noda Time Authors. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using NUnit.Framework; using System; namespace NodaTime.Test { /// <summary> /// Convenience class for ignoring tests based on conditions at exe...
// Copyright 2018 The Noda Time Authors. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using NUnit.Framework; using System; using System.Collections.Generic; using System.Text; namespace NodaTime.Test { /// <summary> /// Convenienc...
84ac8730570d2a4d6e5b88d38cccdf5309b874d5
Remove test that's already coverted by the "all zones" test
Remove test that's already coverted by the "all zones" test
malcolmr/nodatime,BenJenkinson/nodatime,nodatime/nodatime,nodatime/nodatime,malcolmr/nodatime,malcolmr/nodatime,BenJenkinson/nodatime
src/NodaTime.Test/TimeZones/BclDateTimeZoneTest.cs
apache-2.0
1,588,410,883
// Copyright 2012 The Noda Time Authors. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using System; using System.Collections.ObjectModel; using System.Linq; using NUnit.Framework; using NodaTime.TimeZones; namespace NodaTime.Test.TimeZones...
// Copyright 2012 The Noda Time Authors. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using System; using System.Collections.ObjectModel; using System.Linq; using NUnit.Framework; using NodaTime.TimeZones; namespace NodaTime.Test.TimeZones...
2ba69195195f1cb1d50bf1d5f45a841158248650
Update GUI_Hacking.cs
Update GUI_Hacking.cs
krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/UI/Hacking/GUI_Hacking.cs
agpl-3.0
1,588,410,617
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using UnityEngine.UI; public class GUI_Hacking : NetTab { private HackingProcessBase hackProcess; public HackingProcessBase HackProcess => hackProcess; /// <summary> /// This is a list of all the hacki...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using UnityEngine.UI; public class GUI_Hacking : NetTab { private HackingProcessBase hackProcess; public HackingProcessBase HackProcess => hackProcess; /// <summary> /// This is a list of all the hacki...
6d52cd08f1b3384013509e9625413a5a4996c3a3
Fixed wrong usage of WriteAttributeString
Fixed wrong usage of WriteAttributeString
DigDes/SoapCore
src/SoapCore/Meta/MetaWCFBodyWriter.cs
mit
1,588,408,581
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Se...
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using System.Xml.Se...
e4222acd33f8d32126c06868db8537ab2ab068fd
fix occasional issue
fix occasional issue
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/UnityInstallationFinder.cs
apache-2.0
1,588,406,905
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Xml; using JetBrains.Annotations; using JetBrains.Diagnostics; using JetBrains.Util; using JetBrains.Util.Interop; using JetBrains.Util.Logging; namespace JetBrains.ReSharper.Plugins.Unity { p...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Xml; using JetBrains.Annotations; using JetBrains.Diagnostics; using JetBrains.Util; using JetBrains.Util.Interop; using JetBrains.Util.Logging; namespace JetBrains.ReSharper.Plugins.Unity { p...
f938ad8f0a878f7adc4ca8c088de089d8fcbc115
Use host.docker.internal fqdn for "emulated native" host
Use host.docker.internal fqdn for "emulated native" host
mariotoffia/FluentDocker,mariotoffia/FluentDocker,mariotoffia/FluentDocker,mariotoffia/FluentDocker
Ductus.FluentDocker/Extensions/CommandExtensions.cs
apache-2.0
1,588,400,851
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using Ductus.FluentDocker.Common; using Ductus.FluentDocker.Executors; using Ductus.FluentDocker.Extensions.Utils; using Ductus.FluentDocker.Model.Common; using Ductus.FluentDocker.Model.Containers; namespace...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using Ductus.FluentDocker.Common; using Ductus.FluentDocker.Executors; using Ductus.FluentDocker.Extensions.Utils; using Ductus.FluentDocker.Model.Common; using Ductus.FluentDocker.Model.Containers; namespace...
68231f15e4eb4ce5d6bec8fdcedd03eb20bef8b9
removed duplicate
removed duplicate
killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/SDK/Features/UX/Scripts/Utilities/PrefabSpawner.cs
mit
1,588,398,958
using Microsoft.MixedReality.Toolkit.Input; using System.Threading.Tasks; using UnityEngine; using UnityEngine.Serialization; using Microsoft.MixedReality.Toolkit.Utilities; public class PrefabSpawner : BaseFocusHandler, IMixedRealityInputHandler, IMixedRealityInputHandler<float> { private enum Vanish...
using Microsoft.MixedReality.Toolkit.Input; using System.Threading.Tasks; using UnityEngine; using UnityEngine.Serialization; using Microsoft.MixedReality.Toolkit.Utilities; public class PrefabSpawner : BaseFocusHandler, IMixedRealityInputHandler, IMixedRealityInputHandler<float> { private enum Vanish...
0101b5a101ea1093b04387d329a7b5f808b08db7
Improve formatting of function/call declarations
Improve formatting of function/call declarations
lunet-io/scriban,textamina/scriban
src/Scriban/Syntax/ScriptFormatter.cs
bsd-2-clause
1,588,397,968
// Copyright (c) Alexandre Mutel. All rights reserved. // Licensed under the BSD-Clause 2 license. // See license.txt file in the project root for full license information. using System; using System.Collections.Generic; using Scriban.Helpers; using Scriban.Parsing; using Scriban.Runtime; namespace Scriban.Syntax { ...
// Copyright (c) Alexandre Mutel. All rights reserved. // Licensed under the BSD-Clause 2 license. // See license.txt file in the project root for full license information. using System; using System.Collections.Generic; using Scriban.Helpers; using Scriban.Parsing; using Scriban.Runtime; namespace Scriban.Syntax { ...
70f0ac37e65dfd3dc678cad7757ad828ece997fe
Add a code to replace separators for multiplatform
Add a code to replace separators for multiplatform
effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer
Dev/Editor/EffekseerCore/Data/Value/Path.cs
mit
1,588,396,902
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Effekseer.Data.Value { public class Path : IResettableValue { string _abspath = string.Empty; /// <summary> /// 相対パスで保存されるか? /// </summary> public bool IsRelativeSaved { get; private set; } public...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Effekseer.Data.Value { public class Path : IResettableValue { string _abspath = string.Empty; /// <summary> /// 相対パスで保存されるか? /// </summary> public bool IsRelativeSaved { get; private set; } public...
f27ea000bfae5d435f3e6896c55d82afeb71845b
added old methods back in and marked the obsolete
added old methods back in and marked the obsolete
DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/Core/Utilities/PlatformUtility.cs
mit
1,588,396,032
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Utilities { public static class PlatformUtility { public static bool IsPla...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Utilities { public static class PlatformUtility { public static bool IsPlatformSupported...
67ce8560f4684e274ee7e0f717d5cdfea8ab39be
Provide helpful exception message when table contains no primary key instead of NullReferenceException
Provide helpful exception message when table contains no primary key instead of NullReferenceException
borisdj/EFCore.BulkExtensions
EFCore.BulkExtensions/TableInfo.cs
mit
1,588,387,512
using FastMember; using Microsoft.Data.SqlClient; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using System; using System.Collections.Generic; using System.ComponentModel.DataA...
using FastMember; using Microsoft.Data.SqlClient; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using System; using System.Collections.Generic; using System.ComponentModel.DataA...
37835ba9f69dadc583d9b09d9d4d76cea6eb7306
Add test for SA1009 with suppression operator
Add test for SA1009 with suppression operator Closes #3143
DotNetAnalyzers/StyleCopAnalyzers,DotNetAnalyzers/StyleCopAnalyzers
StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp8/SpacingRules/SA1009CSharp8UnitTests.cs
mit
1,588,385,197
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.Test.CSharp8.SpacingRules { using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSh...
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.Test.CSharp8.SpacingRules { using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSh...
e8f1deb65b710f2d44be64e48245e1a2ed47e713
Update DiagnosticVerifierTests to match new behavior
Update DiagnosticVerifierTests to match new behavior
DotNetAnalyzers/StyleCopAnalyzers,DotNetAnalyzers/StyleCopAnalyzers
StyleCop.Analyzers/StyleCop.Analyzers.Test/Verifiers/DiagnosticVerifierTests.cs
mit
1,588,383,566
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.Test.Verifiers { using System; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnaly...
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.Test.Verifiers { using System; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnaly...
a9e2f0371fd441a8998d2998f379c64882de8042
Configure parse options
Configure parse options
DotNetAnalyzers/StyleCopAnalyzers,DotNetAnalyzers/StyleCopAnalyzers
StyleCop.Analyzers/StyleCop.Analyzers.Test/AnalyzerConfigurationTests.cs
mit
1,588,383,566
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.Test { using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Sy...
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.Test { using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Sy...
2969dee69f0a4f459a0cf148b6f6d6946a53385b
Fix FileHeaderCodeFixProvider determination of file names
Fix FileHeaderCodeFixProvider determination of file names
DotNetAnalyzers/StyleCopAnalyzers,DotNetAnalyzers/StyleCopAnalyzers
StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/FileHeaderCodeFixProvider.cs
mit
1,588,383,566
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.DocumentationRules { using System; using System.Collections.Generic; using System.Collections.Immutable; using...
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. namespace StyleCop.Analyzers.DocumentationRules { using System; using System.Collections.Generic; using System.Collections.Immutable; using...
3eb812a3f5b4d36331e6d992f77d90f2d1037e4e
Quarantined dotnet user-secrets test (#21412)
Quarantined dotnet user-secrets test (#21412)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Tools/dotnet-user-secrets/test/SecretManagerTests.cs
apache-2.0
1,588,380,588
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.IO; using System.Text; using Microsoft.AspNetCore.Testing; using Microsoft.Extensions.Confi...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.IO; using System.Text; using Microsoft.AspNetCore.Testing; using Microsoft.Extensions.Confi...
05cda64a2b0a81ba986c7e69f4ae43d5ae81e6e2
Add comment when updating pipelines (#562)
Add comment when updating pipelines (#562) Without adding an explicit comment it basically keeps the last comment which is a little misleading when looking at the history.
tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools
tools/pipeline-generator/Azure.Sdk.Tools.PipelineGenerator/Conventions/PipelineConvention.cs
mit
1,588,380,573
using Microsoft.Extensions.Logging; using Microsoft.TeamFoundation.Build.WebApi; using Microsoft.VisualStudio.Services.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace PipelineGenerator.Conventions { publi...
using Microsoft.Extensions.Logging; using Microsoft.TeamFoundation.Build.WebApi; using Microsoft.VisualStudio.Services.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace PipelineGenerator.Conventions { publi...
10b580931f3243ccb09e3c16f81dc3bce775efb7
Fixes dotnet executable path for MacOs
Fixes dotnet executable path for MacOs
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore.Tests/FlubuTestBase.cs
bsd-2-clause
1,588,380,010
using System; using System.IO; using System.Runtime.InteropServices; using DotNet.Cli.Flubu.Infrastructure; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore.Scripting; using FlubuCore.Targeting; using FlubuCore.Tasks; using FlubuCore.Tasks.NetCore; using...
using System; using System.IO; using System.Runtime.InteropServices; using DotNet.Cli.Flubu.Infrastructure; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore.Scripting; using FlubuCore.Targeting; using FlubuCore.Tasks; using Microsoft.Extensions.Dependenc...
b6816937c5762ea34b5c472a80f17eecaede4158
allowed string package decoder to be customized
allowed string package decoder to be customized
kerryjiang/SuperSocket,kerryjiang/SuperSocket
src/SuperSocket.Server/SuperSocketHostBuilder.cs
apache-2.0
1,588,379,898
using System; using System.Collections.Generic; 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 SuperSocket.P...
using System; using System.Collections.Generic; 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 SuperSocket.P...
0187f84dd9810ff88b0290ba4b1d905a631dab7d
Try fix CodeScene
Try fix CodeScene
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/SendControlViewModel.cs
mit
1,588,379,840
using Avalonia.Input; using NBitcoin; using NBitcoin.Payment; using ReactiveUI; using Splat; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Reactive; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Security; using System.Text.RegularExp...
using Avalonia.Input; using NBitcoin; using NBitcoin.Payment; using ReactiveUI; using Splat; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Reactive; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Security; using System.Text.RegularExp...
69f90764d03bc010324ee534afca68ece9c18b5e
New clientlib ver
New clientlib ver
kaltura/KalturaGeneratedAPIClientsCsharp
KalturaClient/Client.cs
agpl-3.0
1,588,377,677
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
113d68ffd5539d4a6b3d303a591e6d8169126da9
Set RemoveCITriggers=true for unified pipelines
Set RemoveCITriggers=true for unified pipelines
tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools
tools/pipeline-generator/Azure.Sdk.Tools.PipelineGenerator/Conventions/UnifiedPipelineConvention.cs
mit
1,588,377,547
using Microsoft.Extensions.Logging; using Microsoft.TeamFoundation.Build.WebApi; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PipelineGenerator.Conventions { public class UnifiedPipelineConvention : PipelineConvention { pu...
using Microsoft.Extensions.Logging; using Microsoft.TeamFoundation.Build.WebApi; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PipelineGenerator.Conventions { public class UnifiedPipelineConvention : PipelineConvention { pu...
0334e3c2899da8d1c3d80814030774c049256160
Use method FreeC4DbObserver
Use method FreeC4DbObserver
couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net
src/Couchbase.Lite.Shared/API/Database/Database.cs
apache-2.0
1,588,376,408
// // Database.cs // // Copyright (c) 2017 Couchbase, 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 ...
// // Database.cs // // Copyright (c) 2017 Couchbase, 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 ...
1bacd76db94bb6212d8eb28e7174fad6d7b2aca8
Handle internet problems during error report upload (BL-8403)
Handle internet problems during error report upload (BL-8403)
StephenMcConnel/BloomDesktop,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,BloomBooks/BloomDesktop,gmartin7/myBloomFork,gmartin7/myBloomFork,gmartin7/myBloomFork,gmartin7/myBloomFork,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,gmartin7/myBloomFork,Blo...
src/BloomExe/web/controllers/ProblemReportApi.cs
mit
1,588,375,395
using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Linq; using System.Net.Mail; using System.Text; using System.Windows.Forms; using Bloom.Api; using Bloom.Book; using Bloom.MiscUI; using Bloom.ToPalaso; using SIL.E...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Linq; using System.Net.Mail; using System.Text; using System.Windows.Forms; using Bloom.Api; using Bloom.Book; using Bloom.MiscUI; using Bloom.ToPalaso; using SIL.I...
5ddabfa9ce905184bc6b04879f26c00b42ff65b7
Added code to Shell out noInetFixUtil with --checkall Flag in CSU
Added code to Shell out noInetFixUtil with --checkall Flag in CSU
GridProtectionAlliance/openHistorian,GridProtectionAlliance/openHistorian,GridProtectionAlliance/openHistorian,GridProtectionAlliance/openHistorian,GridProtectionAlliance/openHistorian,GridProtectionAlliance/openHistorian
Source/Tools/ConfigurationSetupUtility/App.xaml.cs
mit
1,588,375,267
//****************************************************************************************************** // App.xaml.cs - Gbtc // // Copyright © 2011, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See // the NO...
//****************************************************************************************************** // App.xaml.cs - Gbtc // // Copyright © 2011, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See // the NO...
4321589f69e563db443f24e8df0e32b6d1deefcf
Test propagate build arguments
Test propagate build arguments
mariotoffia/FluentDocker,mariotoffia/FluentDocker,mariotoffia/FluentDocker,mariotoffia/FluentDocker
Ductus.FluentDocker.Tests/FluentApiTests/ImageBuilderTests.cs
apache-2.0
1,588,374,992
using Ductus.FluentDocker.Tests.Extensions; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Linq; namespace Ductus.FluentDocker.Tests.FluentApiTests { [TestClass] public class ImageBuilderTests { [ClassInitialize] public static void Initialize(TestContext ctx) { U...
using Ductus.FluentDocker.Tests.Extensions; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; namespace Ductus.FluentDocker.Tests.FluentApiTests { [TestClass] public class ImageBuilderTests { [ClassInitialize] public static void Initialize(TestContext ctx) { Utilities.LinuxMode(...
ae3370f80b4cd02ca2e9b789385fc853f5086c09
added generation in infographic
added generation in infographic
cadon/ARKStatsExtractor
ARKBreedingStats/library/CreatureExtensions.cs
mit
1,588,374,865
using ARKBreedingStats.Library; using ARKBreedingStats.species; using ARKBreedingStats.values; using System; using System.Drawing; using System.Linq; namespace ARKBreedingStats.library { public static class CreatureExtensions { /// <summary> /// Creates an image with infos about the creature. ...
using ARKBreedingStats.Library; using ARKBreedingStats.species; using ARKBreedingStats.values; using System; using System.Drawing; using System.Linq; namespace ARKBreedingStats.library { public static class CreatureExtensions { /// <summary> /// Creates an image with infos about the creature. ...
7246902304f415982285f285255fb7183a7cf50b
Infrastructure for incremental lexer and parser
Infrastructure for incremental lexer and parser
balazssimon/meta-cs
src/Main/MetaDslx.CodeAnalysis.Meta/CodeAnalysis/Syntax/InternalSyntax/IncrementalParser.cs
apache-2.0
1,588,373,508
using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Syntax.InternalSyntax; using Microsoft.CodeAnalysis.Text; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.CompilerServices; using System.Text...
using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Syntax.InternalSyntax; using Microsoft.CodeAnalysis.Text; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.CompilerServices; using System.Text...
027d0497f8414589048ac9a9162a14eaffa24582
Revert "Merge branch 'master' of github.com:balazssimon/meta-cs"
Revert "Merge branch 'master' of github.com:balazssimon/meta-cs" This reverts commit 20e07a082a23873fa00f99cc21408a2cd724280f, reversing changes made to 361ac2469e44843b998b533bfe1d2d73856ae5fa.
balazssimon/meta-cs
src/Experiments/Antlr4Intellisense/Program.cs
apache-2.0
1,588,373,508
using Antlr4.Runtime; using Antlr4.Runtime.Tree; using Antlr4Intellisense.Syntax; using Antlr4Intellisense.Syntax.InternalSyntax; using MetaDslx.CodeAnalysis; using MetaDslx.CodeAnalysis.Syntax; using MetaDslx.CodeAnalysis.Syntax.InternalSyntax; using MetaDslx.Languages.Antlr4Roslyn.Syntax.InternalSyntax; using Micros...
using Antlr4.Runtime; using Antlr4.Runtime.Tree; using Antlr4Intellisense.Syntax; using Antlr4Intellisense.Syntax.InternalSyntax; using MetaDslx.CodeAnalysis; using MetaDslx.CodeAnalysis.Syntax; using MetaDslx.CodeAnalysis.Syntax.InternalSyntax; using MetaDslx.Languages.Antlr4Roslyn.Syntax.InternalSyntax; using Micros...
805f14b084e99640838aa3fc93961f635d02d969
Revert "Merge branch 'master' of github.com:balazssimon/meta-cs"
Revert "Merge branch 'master' of github.com:balazssimon/meta-cs" This reverts commit 20e07a082a23873fa00f99cc21408a2cd724280f, reversing changes made to 361ac2469e44843b998b533bfe1d2d73856ae5fa.
balazssimon/meta-cs
src/Experiments/Antlr4Intellisense/Program.cs
apache-2.0
1,588,373,320
using Antlr4.Runtime; using Antlr4.Runtime.Tree; using Antlr4Intellisense.Syntax; using Antlr4Intellisense.Syntax.InternalSyntax; using MetaDslx.CodeAnalysis; using MetaDslx.CodeAnalysis.Syntax; using MetaDslx.CodeAnalysis.Syntax.InternalSyntax; using MetaDslx.Languages.Antlr4Roslyn.Syntax.InternalSyntax; using Micros...
using Antlr4.Runtime; using Antlr4.Runtime.Tree; using Antlr4Intellisense.Syntax; using Antlr4Intellisense.Syntax.InternalSyntax; using MetaDslx.CodeAnalysis; using MetaDslx.CodeAnalysis.Syntax; using MetaDslx.CodeAnalysis.Syntax.InternalSyntax; using MetaDslx.Languages.Antlr4Roslyn.Syntax.InternalSyntax; using Micros...
96aa328c2756aae1cf4232636992101b8b024fdb
Update comments
Update comments
killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/Providers/LeapMotion/Editor/ConfigurationChecker/LeapMotionConfigurationChecker.cs
mit
1,588,372,110
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using Microsoft.MixedReality.Toolkit.Utilities.Editor; using System.Collections.Generic; using System.IO; using System.Linq; using UnityEditor; using UnityEngine; ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using Microsoft.MixedReality.Toolkit.Utilities.Editor; using System.Collections.Generic; using System.IO; using System.Linq; using UnityEditor; using UnityEngine; ...
bbeb98f302400631c830c9f12439b228c13a4b90
Added binary decoding
Added binary decoding
SteveSyfuhs/Kerberos.NET
KerbDump/Form1.cs
mit
1,588,371,604
using KerbDump.Properties; using Kerberos.NET; using Kerberos.NET.Crypto; using Kerberos.NET.Entities; using Kerberos.NET.Win32; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using System; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Linq; ...
using KerbDump.Properties; using Kerberos.NET; using Kerberos.NET.Crypto; using Kerberos.NET.Entities; using Kerberos.NET.Win32; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using System; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Linq; ...
a65d60dc2c6f8af3268e9835c7ea57771eae52f1
Refactor SoundComponent for stopping sounds.
Refactor SoundComponent for stopping sounds.
space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14
Content.Client/GameObjects/Components/Sound/SoundComponent.cs
mit
1,588,371,425
using System.Collections.Generic; using System.Linq; using Content.Shared.GameObjects.Components.Sound; using Microsoft.DiaSymReader; using Robust.Client.GameObjects.EntitySystems; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Network; using Robust.Shared.In...
using System.Collections.Generic; using Content.Shared.GameObjects.Components.Sound; using Robust.Client.GameObjects.EntitySystems; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Network; using Robust.Shared.Interfaces.Random; using Robust.Shared.IoC; using R...
e6f936b012e444e7a06e84f5c6dd5c3db8fc90fa
Closes #182
Closes #182
valdisiljuconoks/LocalizationProvider,valdisiljuconoks/LocalizationProvider
src/DbLocalizationProvider.Storage.SqlServer/SchemaUpdater.cs
apache-2.0
1,588,369,517
// Copyright (c) Valdis Iljuconoks. All rights reserved. // Licensed under Apache-2.0. See the LICENSE file in the project root for more information using System; using DbLocalizationProvider.Abstractions; using DbLocalizationProvider.Sync; using Microsoft.Data.SqlClient; namespace DbLocalizationProvider.Storage.SqlS...
// Copyright (c) Valdis Iljuconoks. All rights reserved. // Licensed under Apache-2.0. See the LICENSE file in the project root for more information using System; using DbLocalizationProvider.Abstractions; using DbLocalizationProvider.Sync; using Microsoft.Data.SqlClient; namespace DbLocalizationProvider.Storage.SqlS...
d615f137ffadb9b737d8304130fb26e8448a25d6
Document PageNT
Document PageNT
ianmartinez/Language-Pad
src/LangPadData/NotebookNT/PageNT.cs
mit
1,588,368,446
namespace LangPadData.NotebookNT { /// <summary> /// A page in the NT 1.x-2.x file format (*.nt). /// </summary> public class PageNT { /// <summary> /// The page's title. /// </summary> public string Title { get; set; } = ""; /// <summary> /// The Ri...
namespace LangPadData.NotebookNT { public class PageNT { public string Title { get; set; } = ""; public string Rtf { get; set; } = ""; } }
eca7516d8711253f79cf88b906e06741016e157d
Added Win10 cloud and file errors
Added Win10 cloud and file errors
dahall/vanara
PInvoke/Shared/WinError/Win32Error.Values.cs
mit
1,588,368,352
namespace Vanara.PInvoke { public partial struct Win32Error { /// <summary>The operation completed successfully.</summary> public const uint ERROR_SUCCESS = 0x00000000; /// <summary>The operation completed successfully.</summary> public const uint NERR_Success = 0x00000000; /// <summary>Incorrect function...
namespace Vanara.PInvoke { public partial struct Win32Error { /// <summary>The operation completed successfully.</summary> public const uint ERROR_SUCCESS = 0x00000000; /// <summary>The operation completed successfully.</summary> public const uint NERR_Success = 0x00000000; /// <summary>Incorrect function...
e51d824f89fbc1a3243456527d82326a0b62ebc6
GremlinServerIntegrationTests: Use actually GremlinServer...
GremlinServerIntegrationTests: Use actually GremlinServer...
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Providers.GremlinServer.Tests/GremlinServerIntegrationTests.cs
mit
1,588,367,740
#if RELEASE && NETCOREAPP3_1 using ExRam.Gremlinq.Core; using ExRam.Gremlinq.Core.Tests; using ExRam.Gremlinq.Providers.WebSocket; using Xunit.Abstractions; using static ExRam.Gremlinq.Core.GremlinQuerySource; namespace ExRam.Gremlinq.Providers.GremlinServer.Tests { public class GremlinServerIntegrationTests : Qu...
#if RELEASE && NETCOREAPP3_1 using ExRam.Gremlinq.Core; using ExRam.Gremlinq.Core.Tests; using ExRam.Gremlinq.Providers.WebSocket; using Xunit.Abstractions; using static ExRam.Gremlinq.Core.GremlinQuerySource; namespace ExRam.Gremlinq.Providers.GremlinServer.Tests { public class GremlinServerIntegrationTests : Qu...
e6e45ded2e0cb364bbb388680967f34d9757a518
Commenting out and failing contact permissions temporarily.
Commenting out and failing contact permissions temporarily. Need to rework later with contact feature and update API usage.
HTBox/MobileKidsIdApp,HTBox/MobileKidsIdApp,HTBox/MobileKidsIdApp,HTBox/MobileKidsIdApp
src/MobileKidsIdApp/MobileKidsIdApp.Android/Services/ContactPicker.cs
apache-2.0
1,588,367,368
using System.Threading.Tasks; using Android.App; using MobileKidsIdApp.Services; using MobileKidsIdApp.ViewModels; using Android.Provider; using Android.Content; using System; using System.Collections.Generic; using System.Linq; using Android; [assembly: Xamarin.Forms.Dependency(typeof(MobileKidsIdApp.Droid.Services.C...
using System.Threading.Tasks; using Android.App; using MobileKidsIdApp.Services; using MobileKidsIdApp.ViewModels; using Android.Provider; using Android.Content; using System; using System.Collections.Generic; using System.Linq; using Android; [assembly: Xamarin.Forms.Dependency(typeof(MobileKidsIdApp.Droid.Services.C...
feec6204f8c11ac49ae714f359d73517e85e400c
Deserialize Property structures from JValues.
Deserialize Property structures from JValues.
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Core/Deserialization/GremlinQueryExecutionResultDeserializer.cs
mit
1,588,366,532
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Xml; using ExRam.Gremlinq.Core.GraphElements; using Gremlin.Net.Structure.IO.GraphSON; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newto...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Xml; using ExRam.Gremlinq.Core.GraphElements; using Gremlin.Net.Structure.IO.GraphSON; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newto...
da5c72a6d536bf4f3facfc58e8fb9beb4df93c06
GSF.PhasorProtocols.UI: Updated InputWizardDevices with improved phase guess operation (like that found in web device wizard).
GSF.PhasorProtocols.UI: Updated InputWizardDevices with improved phase guess operation (like that found in web device wizard).
GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf
Source/Libraries/GSF.PhasorProtocols/UI/WPF/ViewModels/InputWizardDevices.cs
mit
1,588,365,890
//****************************************************************************************************** // InputWizardDevices.cs - Gbtc // // Copyright © 2010, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See ...
//****************************************************************************************************** // InputWizardDevices.cs - Gbtc // // Copyright © 2010, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See ...
974d1caeb02ccfa9bdfbf0f59a4e41df91921369
Optimize unit test execution time
Optimize unit test execution time Eliminate unnecessary string splits. Before optimization: Total time 50,4024 Seconds After optimization: Total time 32,7809 Seconds
mganss/XmlSchemaClassGenerator
XmlSchemaClassGenerator.Tests/XmlTests.cs
apache-2.0
1,588,363,758
using System; using System.CodeDom; using System.Collections.Generic; using System.Collections.ObjectModel; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; using ...
using System; using System.CodeDom; using System.Collections.Generic; using System.Collections.ObjectModel; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; using ...
38ff5b725276b57433faa5ff36b7844bbd2f3ad0
WAF: ViewModelCore.Initialize calls first OnInitialize and then sets the DataContext
WAF: ViewModelCore.Initialize calls first OnInitialize and then sets the DataContext
jbe2277/waf
src/System.Waf/System.Waf/System.Waf.Core/Applications/ViewModelCore.cs
mit
1,588,363,609
using System.Waf.Foundation; namespace System.Waf.Applications { /// <summary>Abstract base class for a ViewModel implementation with a simple approach to set the DataContext.</summary> /// <typeparam name="TView">The type of the view. Do provide an interface as type and not the concrete type itself.</ty...
using System.Waf.Foundation; namespace System.Waf.Applications { /// <summary>Abstract base class for a ViewModel implementation with a simple approach to set the DataContext.</summary> /// <typeparam name="TView">The type of the view. Do provide an interface as type and not the concrete type itself.</ty...
cf8aee1cb2f82921bd06d1943e0c598d460d2a84
Fix deserialization of nullables.
Fix deserialization of nullables.
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Core/Deserialization/GremlinQueryExecutionResultDeserializer.cs
mit
1,588,363,340
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Xml; using ExRam.Gremlinq.Core.GraphElements; using Gremlin.Net.Structure.IO.GraphSON; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newto...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Xml; using ExRam.Gremlinq.Core.GraphElements; using Gremlin.Net.Structure.IO.GraphSON; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newto...
9b0ce9a0ff92a2de2e9dcdfa5dd9fddf89be640d
Adjusted scroll element selection (#357)
Adjusted scroll element selection (#357)
CoderLine/alphaTab,CoderLine/alphaTab,CoderLine/alphaTab,CoderLine/alphaTab,CoderLine/alphaTab
Source/AlphaTab.JavaScript/UI/BrowserUiFacade.cs
mpl-2.0
1,588,362,680
using System; using AlphaTab.Audio.Synth; using AlphaTab.Collections; using AlphaTab.Haxe; using AlphaTab.Haxe.Js; using AlphaTab.Haxe.Js.Html; using AlphaTab.Importer; using AlphaTab.Model; using AlphaTab.Platform; using AlphaTab.Platform.JavaScript; using AlphaTab.Platform.Model; using AlphaTab.Platform.Svg; using Al...
using System; using AlphaTab.Audio.Synth; using AlphaTab.Collections; using AlphaTab.Haxe; using AlphaTab.Haxe.Js; using AlphaTab.Haxe.Js.Html; using AlphaTab.Importer; using AlphaTab.Model; using AlphaTab.Platform; using AlphaTab.Platform.JavaScript; using AlphaTab.Platform.Model; using AlphaTab.Platform.Svg; using Al...
da2e4871b8561b4955cbbc5e0b2e08630df67ab9
Add construtor
Add construtor
duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati
Duplicati.Library.Backend.Tardigrade/TardigradeBackend.cs
lgpl-2.1
1,588,362,057
using Duplicati.Library.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Duplicati.Library.Backend.Tardigrade { public class Tardigrade : IBackend { private const string TARDIGRADE_SATELLITE...
using Duplicati.Library.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Duplicati.Library.Backend.Tardigrade { public class Tardigrade : IBackend { private const string TARDIGRADE_SATELLITE...
d98a79caca0f27affc4a82863d4d015aa1f2be4f
Implement open on NotebookNT
Implement open on NotebookNT
ianmartinez/Language-Pad
src/LangPadData/NotebookNT/NotebookNT.cs
mit
1,588,361,974
using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; using System.Linq; using System.Text; namespace LangPadData.NotebookNT { public class NotebookNT { public const double NT_VERSION = 2.1; // File data public bool Modfied { get; set; } = false...
using System; using System.Collections.Generic; using System.IO; using System.Text; namespace LangPadData.NotebookNT { public class NotebookNT { public const double NT_VERSION = 2.1; // File data public bool Modfied { get; set; } = false; public string DocumentPath { get; set;...
328690b7119053941f448f25ded228b98c5c1a87
Moved to DK tab on ribbon
Moved to DK tab on ribbon
dougklassen/Revit-Perfect
Perfect/Perfect/Startup.cs
mit
1,588,361,578
using System; using System.IO; using System.Windows.Media.Imaging; using System.Reflection; using System.Collections.Generic; using Autodesk.Revit.UI; namespace DougKlassen.Revit.Perfect { public static class FileLocations { //AddInDirectory is initialized at runtime public static String AddInDirectory; publ...
using System; using System.IO; using System.Windows.Media.Imaging; using System.Reflection; using System.Collections.Generic; using Autodesk.Revit.DB; using Autodesk.Revit.UI; namespace DougKlassen.Revit.Perfect { public static class FileLocations { //AddInDirectory is initialized at runtime public static Stri...
f4bcd4546dbf14046b44906bc25e40abd225774e
Add missing namespace
Add missing namespace
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/Tests/EditModeTests/Core/Definitions/Devices/MixedRealityControllerMappingProfileTests.cs
mit
1,588,361,096
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Input; using Microsoft.MixedReality.Toolkit.OpenVR.Input; using NUnit.Framework; using UnityEditor; namespace Microsoft.MixedReality.Toolkit.Tests.EditMode.InputSystem { public class MixedRealityContro...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Input; using Microsoft.MixedReality.Toolkit.OpenVR.Input; using NUnit.Framework; using UnityEditor; public class MixedRealityControllerMappingProfileTests { /// <summary> /// Verifies that the Test...
eecfc200dbd24e21c07ff861130e6355dab3cf78
Rearrange fragment deserializers.
Rearrange fragment deserializers.
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Core/Deserialization/GremlinQueryExecutionResultDeserializer.cs
mit
1,588,361,093
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Xml; using ExRam.Gremlinq.Core.GraphElements; using Gremlin.Net.Structure.IO.GraphSON; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newto...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Xml; using ExRam.Gremlinq.Core.GraphElements; using Gremlin.Net.Structure.IO.GraphSON; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newto...
de3b6fec756ed1fb07f1d6da35f60b61cbd7a510
Add TimeSpan to native types.
Add TimeSpan to native types.
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Core/Models/GraphModel.cs
mit
1,588,361,071
using System; using System.Collections.Immutable; using System.Reflection; using ExRam.Gremlinq.Core.GraphElements; using Microsoft.Extensions.Logging; namespace ExRam.Gremlinq.Core { public static class GraphModel { private sealed class GraphModelImpl : IGraphModel { private stati...
using System; using System.Collections.Immutable; using System.Reflection; using ExRam.Gremlinq.Core.GraphElements; using Microsoft.Extensions.Logging; namespace ExRam.Gremlinq.Core { public static class GraphModel { private sealed class GraphModelImpl : IGraphModel { private stati...
779a2f66ad87a6fac3c5bd65bc1f745c7e9ba673
Fix UserHelper.GetDiscordUserAsync.
Fix UserHelper.GetDiscordUserAsync.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
MitternachtWeb/Helpers/UserHelper.cs
mit
1,588,360,595
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using MitternachtWeb.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Claims; using System...
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using MitternachtWeb.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Claims; using System...
72b33bf0de8317f413db2ae85b333a170f5dad2c
Get the favicon(s) working again.
Get the favicon(s) working again.
SpilledMilkCOM/ParkerSmart,SpilledMilkCOM/ParkerSmart
ParkerSmart/Models/Constants.cs
mit
1,588,360,489
namespace ParkerSmart.Models { public class Constants { // public const string APPLICATION_NAME = "ZρZ"; public const string APPLICATION_NAME = "pds"; public const string TWITTER_CREATOR_ID = "@SpilledMilkCOM"; public const string TWITTER_ID = "@SpilledMilkCOM"; public const string TWITTER_TITLE = "Parker ...
namespace ParkerSmart.Models { public class Constants { // public const string APPLICATION_NAME = "ZρZ"; public const string APPLICATION_NAME = "pds"; public const string TWITTER_CREATOR_ID = "@SpilledMilkCOM"; public const string TWITTER_ID = "@SpilledMilkCOM"; public const string TWITTER_TITLE = "Parker ...
58a4f125a6885b8a07a9e824f005b780b787f545
FilesServer registerLike FileMessage
FilesServer registerLike FileMessage
MehdyKarimpour/extensions,signumsoftware/framework,AlejandroCano/extensions,signumsoftware/framework,signumsoftware/extensions,signumsoftware/framework,MehdyKarimpour/extensions,AlejandroCano/extensions,signumsoftware/extensions
Signum.React.Extensions/Files/FilesServer.cs
mit
1,588,360,345
using Signum.React.Json; using Signum.Utilities; using System.Linq; using System.Reflection; using Signum.React.Facades; using Signum.Engine.Maps; using Microsoft.AspNetCore.Builder; using Signum.Entities.Files; using Signum.Engine; using Signum.Engine.Files; using Signum.React.Filters; using System; name...
using Signum.React.Json; using Signum.Utilities; using System.Linq; using System.Reflection; using Signum.React.Facades; using Signum.Engine.Maps; using Microsoft.AspNetCore.Builder; using Signum.Entities.Files; using Signum.Engine; using Signum.Engine.Files; using Signum.React.Filters; using System; name...
0c087d995a72caf33fbd7dac5f952add3ea63ce8
Replace nameof(T) (#653)
Replace nameof(T) (#653)
cshung/clrmd,Microsoft/clrmd,cshung/clrmd,Microsoft/clrmd,cshung/clrmd,Microsoft/clrmd
src/Microsoft.Diagnostics.Runtime/src/Common/ClrArray.cs
mit
1,588,360,327
// 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. #pragma warning disable CA1721 // Property names should not match get methods using System; namespace Microsoft.D...
// 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. #pragma warning disable CA1721 // Property names should not match get methods using System; namespace Microsoft.D...
39a258d87b5e6dc4f19ba8aea4b5d0b4f3808574
Improve array intersection.
Improve array intersection.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
MitternachtWeb/Helpers/UserHelper.cs
mit
1,588,360,233
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using MitternachtWeb.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Claims; using System...
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using MitternachtWeb.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Claims; using System...
09990ee6a98534c4340782c202834b284b677810
Use expression lambda.
Use expression lambda.
ryanjfitz/SimpSim.NET,ryanjfitz/SimpSim.NET
SimpSim.NET.Presentation/ViewModels/SystemRegistersViewModel.cs
mit
1,588,359,687
using System.Windows.Input; namespace SimpSim.NET.Presentation.ViewModels { public class SystemRegistersViewModel : ViewModelBase { private readonly SimpleSimulator _simulator; public SystemRegistersViewModel(SimpleSimulator simulator) { _simulator = simulator; ...
using System.Windows.Input; namespace SimpSim.NET.Presentation.ViewModels { public class SystemRegistersViewModel : ViewModelBase { private readonly SimpleSimulator _simulator; public SystemRegistersViewModel(SimpleSimulator simulator) { _simulator = simulator; ...
e3f50c9904bc189f42191468192415c12e70502a
Only return distinct GuildIds.
Only return distinct GuildIds.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
MitternachtWeb/Helpers/UserHelper.cs
mit
1,588,359,590
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using MitternachtWeb.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Claims; using System...
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using MitternachtWeb.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Claims; using System...
2551a249a8e1ecb7e6d8b6b4f033de59b61b97b2
expose FluentAspects.AspectOptions
expose FluentAspects.AspectOptions
WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common
src/WeihanLi.Common/Aspect/FluentAspects.cs
mit
1,588,359,588
using System; namespace WeihanLi.Common.Aspect { public class FluentAspects { public static readonly FluentAspectOptions AspectOptions; static FluentAspects() { AspectOptions = new FluentAspectOptions(); // register built-in necessary interceptors A...
using System; namespace WeihanLi.Common.Aspect { public class FluentAspects { internal static readonly FluentAspectOptions AspectOptions; static FluentAspects() { AspectOptions = new FluentAspectOptions(); // register built-in necessary interceptors ...
9c7142757ea155c7e10f897ce9c4f67133b0b94b
Branch is now optional..Fixes NewBranch, NewBranchWith reset option
Branch is now optional..Fixes NewBranch, NewBranchWith reset option
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Tasks/Git/GitCheckoutTask.cs
bsd-2-clause
1,588,359,275
using FlubuCore.Tasks.Attributes; using FlubuCore.Tasks.Process; namespace FlubuCore.Tasks.Git { public class GitCheckoutTask : ExternalProcessTaskBase<int, GitCheckoutTask> { public GitCheckoutTask(string branch = null) { ExecutablePath = "git"; AddPrefixToAdditionalOp...
using FlubuCore.Tasks.Attributes; using FlubuCore.Tasks.Process; namespace FlubuCore.Tasks.Git { public class GitCheckoutTask : ExternalProcessTaskBase<int, GitCheckoutTask> { public GitCheckoutTask(string branch) { ExecutablePath = "git"; AddPrefixToAdditionalOptionKey...
b6bf9492b561dff73bf963f3f3297bf5ed871f10
codegen ts stackino due: maybe fix shallow arrays
codegen ts stackino due: maybe fix shallow arrays
Kukkimonsuta/Odachi,Kukkimonsuta/Odachi
src/Odachi.CodeGen.TypeScript.StackinoDue/Renderers/ObjectRenderer.cs
apache-2.0
1,588,359,232
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Odachi.CodeGen.TypeScript.Internal; using Odachi.CodeGen.IO; using Odachi.CodeModel; using Odachi.CodeGen.Rendering; namespace Odachi.CodeGen.TypeScript.StackinoDue.Renderers { pu...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Odachi.CodeGen.TypeScript.Internal; using Odachi.CodeGen.IO; using Odachi.CodeModel; using Odachi.CodeGen.Rendering; namespace Odachi.CodeGen.TypeScript.StackinoDue.Renderers { pu...
4cc0eb16670b69358376163fe6d5d29087d9337f
Updated message.
Updated message.
kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX
Client/AntlrLanguageClient.cs
mit
1,588,358,476
namespace LspAntlr { using LanguageServer; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.LanguageServer.Client; using Microsoft.VisualStudio.LanguageServer.Protocol; using Microsoft.VisualStudio.Shell; using Microsoft.Visu...
namespace LspAntlr { using LanguageServer; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.LanguageServer.Client; using Microsoft.VisualStudio.LanguageServer.Protocol; using Microsoft.VisualStudio.Shell; using Microsoft.Visu...
beec0ac70d908a7d0346afe6c70d66d06a01cf3c
Fix dynamic compilation exclusions failing via nuget package
Fix dynamic compilation exclusions failing via nuget package
EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-...
osu.Framework/Testing/RoslynTypeReferenceBuilder.cs
mit
1,588,356,927
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #if NETCOREAPP using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Microsoft....
// 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. #if NETCOREAPP using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Microsoft....
c7b9054d358e2fec8c398586fcb10d3a5926c849
bump version to 1.5.9
bump version to 1.5.9
martin2250/OpenCNCPilot
OpenCNCPilot/Properties/AssemblyInfo.cs
mit
1,588,356,336
using System.Reflection; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("OpenCNCPilot")] [as...
using System.Reflection; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("OpenCNCPilot")] [as...
1b9c3344283e4afe5c7737056e682f3abae50cd6
Exclude scenes that aren't built from automatic tests.
Exclude scenes that aren't built from automatic tests.
fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,krille90/unitystation
UnityProject/Assets/Tests/Asset/MissingAssetReferences.cs
agpl-3.0
1,588,354,053
using System.Collections.Generic; using NUnit.Framework; using UnityEngine; using UnityEditor; using System.Text; using System.Linq; using System.IO; using UnityEditor.SceneManagement; namespace Tests { public class MissingAssetReferences { /// <summary> /// Checks if there is any prefab with missing reference ...
using System.Collections.Generic; using NUnit.Framework; using UnityEngine; using UnityEditor; using System.Text; using System.Linq; using System.IO; using UnityEditor.SceneManagement; namespace Tests { public class MissingAssetReferences { /// <summary> /// Checks if there is any prefab with missing reference...
432867ec182fe9a829be1b42d22936cfa54169f5
fix help
fix help
GitTools/GitVersion,ermshiperete/GitVersion,gep13/GitVersion,GitTools/GitVersion,ParticularLabs/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion,dazinator/GitVersion,ermshiperete/GitVersion,asbjornu/GitVersion,gep13/GitVersion,GitTools/GitVersion,ermshiperete/GitVersion,asbjornu/GitVersion,asbjornu/GitVersi...
src/GitVersionExe/ArgumentParser.cs
mit
1,588,353,240
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Linq; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model; using GitVersion.Model.Configuration; using GitVersion.OutputVariables; namespace GitVersion { public class Argume...
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Linq; using GitVersion.Extensions; using GitVersion.Logging; using GitVersion.Model; using GitVersion.Model.Configuration; using GitVersion.OutputVariables; namespace GitVersion { public class Argume...
ff7f636e303fca0607cbce78e19822198d0d767d
Update message.
Update message.
kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX
Client/AntlrLanguageClient.cs
mit
1,588,352,902
namespace LspAntlr { using LanguageServer; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.LanguageServer.Client; using Microsoft.VisualStudio.LanguageServer.Protocol; using Microsoft.VisualStudio.Shell; using Microsoft.Visu...
namespace LspAntlr { using LanguageServer; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.LanguageServer.Client; using Microsoft.VisualStudio.LanguageServer.Protocol; using Microsoft.VisualStudio.Shell; using Microsoft.Visu...
e5bbd8af36b2d862130b0b1f463ab7d10ab84ff4
Add an exception catch in case the folder/files were already removed by other infra.
Add an exception catch in case the folder/files were already removed by other infra.
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity
Assets/MRTK/Tests/EditModeTests/Tools/ExtensionServiceCreatorTests.cs
mit
1,588,352,657
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using Microsoft.MixedReality.Toolkit.Editor; using NUnit.Framework; using System; using System.Collections.Generic; using System.IO; using UnityEditor; using UnityEn...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using Microsoft.MixedReality.Toolkit.Editor; using NUnit.Framework; using System.Collections.Generic; using System.IO; using UnityEditor; using UnityEngine; namespa...
6c5d8c7d3d6c0bff2e4428314692b65df325fe20
add CreateProxyWithTarget extension
add CreateProxyWithTarget extension
WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common
src/WeihanLi.Common/Aspect/ProxyFactoryExtensions.cs
mit
1,588,351,639
using System; namespace WeihanLi.Common.Aspect { public static class ProxyFactoryExtensions { public static TInterface CreateInterfaceProxy<TInterface>(this IProxyFactory proxyGenerator) where TInterface : class { var type = typeof(TInterface); if (!type.IsI...
using System; namespace WeihanLi.Common.Aspect { public static class ProxyFactoryExtensions { public static TInterface CreateInterfaceProxy<TInterface>(this IProxyFactory proxyGenerator) where TInterface : class { var type = typeof(TInterface); if (!type.IsI...
d30e4061cce9ef69ffeb08b342a9f77109b8935e
Add clarifying comment about pp choice
Add clarifying comment about pp choice
NeoAdonis/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu
osu.Game.Tests/Visual/SongSelect/TestSceneBeatmapRecommendations.cs
mit
1,588,351,609
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Testing; using osu.Game.Beat...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Testing; using osu.Game.Beat...
1c04d58d6e55f2a09a237c53a4a2b700ecf0d74d
Fix recommender's incorrect usage of current ruleset
Fix recommender's incorrect usage of current ruleset
NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu-new,peppy/osu,ppy/osu,peppy/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu
osu.Game/Screens/Select/DifficultyRecommender.cs
mit
1,588,351,475
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.IEnumerab...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.IEnumerab...
3cf60e6e00483b9fd39c001073e29517f2e2ed9e
Add failing test
Add failing test
peppy/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,peppy/osu-new,NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu
osu.Game.Tests/Visual/SongSelect/TestSceneBeatmapRecommendations.cs
mit
1,588,351,398
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Testing; using osu.Game.Beat...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Testing; using osu.Game.Beat...
177ddfb10dd40d4df2a434a053ce4dd897fe6fdd
Update TemplateContext.cs
Update TemplateContext.cs
craigbridges/Nettle
src/Nettle/Compiler/TemplateContext.cs
mit
1,588,351,359
namespace Nettle.Compiler { using Nettle.Compiler.Parsing; using System; using System.Collections; using System.Collections.Generic; using System.Dynamic; using System.Linq; using System.Reflection; /// <summary> /// Represents a Nettle template context /// </summary> publi...
namespace Nettle.Compiler { using Nettle.Compiler.Parsing; using System; using System.Collections; using System.Collections.Generic; using System.Dynamic; using System.Linq; using System.Reflection; /// <summary> /// Represents a Nettle template context /// </summary> publi...
608d42397ae01cdf0782cdf2f3546ff72ca8b34f
Add disable switch.
Add disable switch.
kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX
Client/AntlrLanguageClient.cs
mit
1,588,351,016
namespace LspAntlr { using LanguageServer; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.LanguageServer.Client; using Microsoft.VisualStudio.LanguageServer.Protocol; using Microsoft.VisualStudio.Shell; using Microsoft.Visu...
namespace LspAntlr { using LanguageServer; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.LanguageServer.Client; using Microsoft.VisualStudio.LanguageServer.Protocol; using Microsoft.VisualStudio.Shell; using Microsoft.Visu...