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 |
|---|---|---|---|---|---|---|---|---|
bd75c712cec0e82e2bde216d0624fd27076db2f5 | Bug Fix and output updated to be same as !sos.dumpheap (#721) | Bug Fix and output updated to be same as !sos.dumpheap (#721)
| cshung/clrmd,cshung/clrmd,Microsoft/clrmd,Microsoft/clrmd,Microsoft/clrmd,cshung/clrmd | src/Samples/DumpHeap/DumpHeap.cs | mit | 1,591,293,927 | using Microsoft.Diagnostics.Runtime;
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main(string[] args)
{
if (args.Length != 1)
{
Console.WriteLine($"Usage: dumpheap.exe [crashdump]");
Environment.Exit(1);
}
... | using Microsoft.Diagnostics.Runtime;
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main(string[] args)
{
if (args.Length != 1)
{
Console.WriteLine($"Usage: dumpheap.exe [crashdump]");
Environment.Exit(1);
}
... |
8085291d926c1be28e480c7fdfc5e20e0554ffb2 | Remove outdated comment | Remove outdated comment | cshung/clrmd,Microsoft/clrmd,Microsoft/clrmd,cshung/clrmd,Microsoft/clrmd,cshung/clrmd | src/Microsoft.Diagnostics.Runtime/src/Common/PdbInfo.cs | mit | 1,591,292,643 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace Microsoft.Diagnostics.Runtime
{
/// <summary>
/// Information about a specific PDB... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace Microsoft.Diagnostics.Runtime
{
// TODO: Make struct
/// <summary>
/// Infor... |
a2d25ea577dbe7d54daf60c28ca311bbdc5fdfdc | Re-ordering to group by functionality/feature | Re-ordering to group by functionality/feature
| chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium | src/Core/Ipc/TypedMessages/TypedRequest.cs | bsd-3-clause | 1,591,290,747 | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
using ProtoBuf;
namespace VsChromium.Core.Ipc.TypedMessages {
[ProtoContract]
[ProtoInclude(10, typeof(RegisterFileRequest))]
[ProtoInclud... | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
using ProtoBuf;
namespace VsChromium.Core.Ipc.TypedMessages {
[ProtoContract]
[ProtoInclude(10, typeof(RegisterFileRequest))]
[ProtoInclud... |
4b6d601bb70f95635d02edb785a62c8037b938b6 | Fix ternary op. | Fix ternary op.
| wieslawsoltes/Perspex,akrisiun/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,grokys/Perspex,Perspex/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalon... | src/Avalonia.Base/Data/Core/Plugins/MethodAccessorPlugin.cs | mit | 1,591,290,698 | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Avalonia.Data.Core.Plugins
{
public class MethodAccessorPlugin : IPropertyAccessorPlugin
{
private readonly Dictionary<(Type, string), MethodInfo> _methodLookup =
new Dictionar... | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Avalonia.Data.Core.Plugins
{
public class MethodAccessorPlugin : IPropertyAccessorPlugin
{
private readonly Dictionary<(Type, string), MethodInfo> _methodLookup =
new Dictionar... |
c616e25c1c3e5d61651a9a6f3bfcb715c072fe64 | Check for forum notifications more often. | Check for forum notifications more often.
| Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | src/MitternachtBot/Common/TimeConstants.cs | mit | 1,591,290,584 | namespace Mitternacht.Common {
public class TimeConstants {
public const int WaitForForum = 500;
public const int TeamUpdate = 3 * 60 * 1000;
public const int Birthday = 60 * 1000;
public const int ForumNotification = 30 * 1000;
}
}
| namespace Mitternacht.Common {
public class TimeConstants {
public const int WaitForForum = 500;
public const int TeamUpdate = 3 * 60 * 1000;
public const int Birthday = 60 * 1000;
public const int ForumNotification = 1 * 60 * 1000;
}
}
|
01fa1fd474256744956785cc247635e7a89d232b | Check diagnostics when running Request<T> | Check diagnostics when running Request<T>
| canton7/RestEase | src/RestEase.UnitTests/ImplementationFactoryTests/ImplementationFactoryTestsBase.cs | mit | 1,591,289,627 | #if SOURCE_GENERATOR
extern alias SourceGenerator;
using System;
using System.Threading.Tasks;
using System.Linq;
using Microsoft.CodeAnalysis;
using RestEase;
using SourceGenerator::RestEase.SourceGenerator.Implementation;
using Microsoft.CodeAnalysis.CSharp;
using System.IO;
using System.Reflection;
using Moq;
using... | #if SOURCE_GENERATOR
extern alias SourceGenerator;
using System;
using System.Threading.Tasks;
using System.Linq;
using Microsoft.CodeAnalysis;
using RestEase;
using SourceGenerator::RestEase.SourceGenerator.Implementation;
using Microsoft.CodeAnalysis.CSharp;
using System.IO;
using System.Reflection;
using Moq;
using... |
2dd36389a53dd2c86b8880912aca28a0c21b909f | Fix a NullReferenceException when deploying with no repo | Fix a NullReferenceException when deploying with no repo
| tgstation/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server-tools | src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs | agpl-3.0 | 1,591,288,927 | using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Octokit;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Api.M... | using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Octokit;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Api.M... |
7b47bbba34590969359756c92e248008f7c47a7f | Add unit test | Add unit test
| fredatgithub/UsefulFunctions | UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs | mit | 1,591,288,650 | 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
... |
842e238ab00f7e41505fea47f3bd14dcf5819e7b | Copy the favicon.ico file at the root if one exists | Copy the favicon.ico file at the root if one exists
| bsstahl/PPTail,bsstahl/PPTail | PrehensilePonyTail/PPTail.SiteGenerator/Builder.cs | mit | 1,591,287,187 | using PPTail.Entities;
using PPTail.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using PPTail.Extensions;
using System.Xml.Linq;
namespace PPTail.SiteGenerator
{
public class Builder : ISiteBuilder
... | using PPTail.Entities;
using PPTail.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using PPTail.Extensions;
using System.Xml.Linq;
namespace PPTail.SiteGenerator
{
public class Builder : ISiteBuilder
... |
9f1a51841a39309e22b0af49d3614d2808b34294 | Minor renaming. | Minor renaming.
| jherby2k/AudioWorks,jherby2k/AudioWorks | AudioWorks/src/AudioWorks.Api/ExtensionInstaller.cs | agpl-3.0 | 1,591,286,885 | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
version.
Au... | /* Copyright © 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
version.
Au... |
1823a2692d49256e6d63eefc66d6d9cca667a0d7 | Added tests for checking modules exception and cancellation | Added tests for checking modules exception and cancellation
| takenet/lime-csharp | src/Lime.Protocol.UnitTests/Network/ChannelBaseTests.cs | apache-2.0 | 1,591,286,557 | using Lime.Protocol.Network;
using NUnit.Framework;
using Moq;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Shouldly;
using Lime.Protocol.Util;
namespace Lime.Protocol.UnitTests.Network
{
[TestFi... | using Lime.Protocol.Network;
using NUnit.Framework;
using Moq;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Shouldly;
using Lime.Protocol.Util;
namespace Lime.Protocol.UnitTests.Network
{
[TestFi... |
b543b121e812bb22936ff40b9f8bfc19098ee1d7 | Updated Pixels Per Module parameter | Updated Pixels Per Module parameter | BrandonPotter/GoogleAuthenticator | Google.Authenticator.WebSample/Default.aspx.cs | apache-2.0 | 1,591,284,414 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Google.Authenticator.WebSample
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Google.Authenticator.WebSample
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
... |
579bc7b59d3f740ea5e54a2bfd5a45e5db4638d4 | uklonio sol jer je preslano inace. | uklonio sol jer je preslano inace. | boristomas/grah | grah.cs | unlicense | 1,591,284,302 | using System;
using System.Collections;
using System.Timers;
using System.Threading;
namespace grahSaKobasicamaIŠpekom
{
/// <summary>
/// grah za 6-7 ljudi
/// </summary>
class Program
{
//2 kobasice po osobi, speka isto toliko, 1 konzerva graha po osobi (manja)
public static sastojak g... | using System;
using System.Collections;
using System.Timers;
using System.Threading;
namespace grahSaKobasicamaIŠpekom
{
/// <summary>
/// grah za 6-7 ljudi
/// </summary>
class Program
{
//2 kobasice po osobi, speka isto toliko, 1 konzerva graha po osobi (manja)
public static sastojak g... |
bd43363dd4e7e87f92869a6ee7b26c0fad58ed90 | https://pt.stackoverflow.com/q/227301/101 | https://pt.stackoverflow.com/q/227301/101 | maniero/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,maniero/SOpt,bigown/SOpt,bigown/SOpt,maniero/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,maniero/SOpt,maniero/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,bigown/SOpt,maniero/SOpt,maniero/SOpt | CSharp/Interop/CallFunction.cs | mit | 1,591,283,955 | using System.Runtime.InteropServices;
public class Program {
[DllImport("teste.DLL", EntryPoint="print")]
static extern void print(string message);
public static void Main(string[] args) =>print("Chamando C");
}
//Em C:
#include <stdio.h>
void print(const char *message) {
printf("%s", message);
}
/... | using System.Runtime.InteropServices;
public class Program {
[DllImport("teste.DLL", EntryPoint="print")]
static extern void print(string message);
public static void Main(string[] args) {
print("Chamando C");
}
}
//Em C:
#include <stdio.h>
void print(const char *message) {
printf("%s", ... |
c2ad34a4ce072ead90aa23323b76544a6fd91a9b | Fix moving caret left/right when selection present. | Fix moving caret left/right when selection present.
When a selection is present, pressing the left key should move the caret to the start of the selection and pressing the right key should move the caret to the end of the selection.
| SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,Perspex/Perspex,SuperJMN/Avalonia,Perspex/Perspex,grokys/Perspex,Perspex/Perspex,wieslawsoltes/Perspex,grokys/Perspex,SuperJMN/Avalonia... | src/Avalonia.Controls/TextBox.cs | mit | 1,591,283,683 | using Avalonia.Input.Platform;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Utils;
using Avalonia.Input;
using Avalonia.Interactivity;
using Avalonia.Media;
using Avalonia.Me... | using Avalonia.Input.Platform;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Utils;
using Avalonia.Input;
using Avalonia.Interactivity;
using Avalonia.Media;
using Avalonia.Me... |
e8789927f092bf84819a1ec936833349a02a9626 | ComparerBinderのnull許容性が異なっていたのを修正 nullに対応する必要はないため仕様変更は無し | ComparerBinderのnull許容性が異なっていたのを修正
nullに対応する必要はないため仕様変更は無し
| zenuas/Roku,zenuas/Roku | src/Extensions/ComparerBinder.cs | mit | 1,591,282,868 | using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Extensions
{
public class ComparerBinder<T> : IComparer<T>
{
public Func<T, T, int>? Compare;
int IComparer<T>.Compare([AllowNull] T x, [AllowNull] T y) => Compare!(x!, y!);
}
}
| using System;
using System.Collections.Generic;
namespace Extensions
{
public class ComparerBinder<T> : IComparer<T>
{
public Func<T, T, int>? Compare;
int IComparer<T>.Compare(T x, T y) => Compare!(x, y);
}
}
|
67169902e3fb5d3aa4d1ac0165ab380790ac324a | Fix Publish Later controls disappearing on validation error (#6337) | Fix Publish Later controls disappearing on validation error (#6337)
| stevetayloruk/Orchard2,OrchardCMS/Brochard,OrchardCMS/Brochard,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,petedavis/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,OrchardCMS/Broch... | src/OrchardCore.Modules/OrchardCore.PublishLater/Drivers/PublishLaterPartDisplayDriver.cs | bsd-3-clause | 1,591,282,836 | using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.ContentManagement.Display.Models;
using OrchardCore.Contents;
using OrchardCore.DisplayManagement.ModelBinding;
using Orcha... | using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.ContentManagement.Display.Models;
using OrchardCore.Contents;
using OrchardCore.DisplayManagement.ModelBinding;
using Orcha... |
f39a0e0fd075ed53f1b719a34d165d30fe61e06b | Add RFC822/1123 date as a template variable for use in RSS feeds. | Add RFC822/1123 date as a template variable for use in RSS feeds.
| bsstahl/PPTail,bsstahl/PPTail | PrehensilePonyTail/PPTail.Generator.Template/StringExtensions.cs | mit | 1,591,282,163 | using Microsoft.Extensions.DependencyInjection;
using PPTail.Entities;
using PPTail.Extensions;
using PPTail.Interfaces;
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.NetworkInformation;
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;
namespace PPTail.G... | using Microsoft.Extensions.DependencyInjection;
using PPTail.Entities;
using PPTail.Extensions;
using PPTail.Interfaces;
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.NetworkInformation;
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;
namespace PPTail.G... |
d3dc52fa75d279a4b3a023b1da03dbd298d5eb65 | remove ellipse props | remove ellipse props
| jkoritzinsky/Avalonia,akrisiun/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,grokys/Perspex,Av... | src/Avalonia.Controls/ProgressBar.cs | mit | 1,591,281,933 |
using System;
using Avalonia.Controls.Primitives;
using Avalonia.Data;
using Avalonia.Layout;
namespace Avalonia.Controls
{
/// <summary>
/// A control used to indicate the progress of an operation.
/// </summary>
public class ProgressBar : RangeBase
{
public static readonly StyledProperty... |
using System;
using Avalonia.Controls.Primitives;
using Avalonia.Data;
using Avalonia.Layout;
namespace Avalonia.Controls
{
/// <summary>
/// A control used to indicate the progress of an operation.
/// </summary>
public class ProgressBar : RangeBase
{
public static readonly StyledProperty... |
4c241ed61844cb271544b8e50b7c3f0bc3f1aac8 | Fixed bug resolving .lnk files in ShellLink | Fixed bug resolving .lnk files in ShellLink
| dahall/vanara | Windows.Shell/ShellObjects/ShellLink.cs | mit | 1,591,281,923 | using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using System.Security.AccessControl;
using System.Security.Permissions;
using System.Windows.Forms;
using Vanara.Extensions;
using Vanara.InteropSe... | using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using System.Security.AccessControl;
using System.Security.Permissions;
using System.Windows.Forms;
using Vanara.Extensions;
using Vanara.InteropSe... |
a20c1fa5c7fa50b1aba45e414a5b23434cd0b632 | add container2 props | add container2 props
| wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,akrisiun/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,grokys/Perspex,SuperJMN/Avalonia,groky... | src/Avalonia.Controls/ProgressBar.cs | mit | 1,591,281,721 |
using System;
using Avalonia.Controls.Primitives;
using Avalonia.Data;
using Avalonia.Layout;
namespace Avalonia.Controls
{
/// <summary>
/// A control used to indicate the progress of an operation.
/// </summary>
public class ProgressBar : RangeBase
{
public static readonly StyledProperty... |
using System;
using Avalonia.Controls.Primitives;
using Avalonia.Data;
using Avalonia.Layout;
namespace Avalonia.Controls
{
/// <summary>
/// A control used to indicate the progress of an operation.
/// </summary>
public class ProgressBar : RangeBase
{
public static readonly StyledProperty... |
cc02a0b01a5c6bc595e7d04dd62880143fd6d775 | Simplified some OpenPgpContextBase logic | Simplified some OpenPgpContextBase logic
| jstedfast/MimeKit,jstedfast/MimeKit,jstedfast/MimeKit | MimeKit/Cryptography/OpenPgpContextBase.cs | mit | 1,591,280,512 | //
// OpenPgpContext.cs
//
// Authors: Jeffrey Stedfast <jestedfa@microsoft.com>
// Thomas Hansen <thomas@servergardens.com>
//
// Copyright (c) 2013-2020 Xamarin Inc. (www.xamarin.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documen... | //
// OpenPgpContext.cs
//
// Authors: Jeffrey Stedfast <jestedfa@microsoft.com>
// Thomas Hansen <thomas@servergardens.com>
//
// Copyright (c) 2013-2020 Xamarin Inc. (www.xamarin.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documen... |
36209d6b9894d335d59be49f9ead18e7e3000fb1 | HistoryMessageAdapter small refactoring. | HistoryMessageAdapter small refactoring.
| StockSharp/StockSharp | Algo/Testing/HistoryMessageAdapter.cs | apache-2.0 | 1,591,278,443 | namespace StockSharp.Algo.Testing
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Globalization;
using Ecng.Collections;
using Ecng.Common;
using Ecng.ComponentModel;
using StockSharp.Algo.Storages;
using StockSharp.BusinessEntities;
using StockS... | namespace StockSharp.Algo.Testing
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Globalization;
using Ecng.Collections;
using Ecng.Common;
using Ecng.ComponentModel;
using StockSharp.Algo.Storages;
using StockSharp.BusinessEntities;
using StockS... |
6a0666a476e87a8dba7e5eef43ba6f0a4228097c | test result tweak for before | test result tweak for before
| ShammyLevva/FTAnalyzer,ShammyLevva/FTAnalyzer | FTAnalyser/FactDateTest/FactDateTest.cs | apache-2.0 | 1,591,278,192 | using FTAnalyzer;
using FTAnalyzer.Utilities;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using static FTAnalyzer.FactDate;
namespace Testing
{
/// <summary>
///This is a test class for FactDateTest and is intended
///to contain all FactDateTest Unit Tests
///</sum... | using FTAnalyzer;
using FTAnalyzer.Utilities;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using static FTAnalyzer.FactDate;
namespace Testing
{
/// <summary>
///This is a test class for FactDateTest and is intended
///to contain all FactDateTest Unit Tests
///</sum... |
a723c5644a28377bae8ed9d9b71fd6f7cd0f8023 | Fixing that the PersonPart editor wasn't properly displayed after a validation error | Fixing that the PersonPart editor wasn't properly displayed after a validation error
| Lombiq/Orchard-Training-Demo-Module,Lombiq/Orchard-Training-Demo-Module | Drivers/PersonPartDisplayDriver.cs | bsd-3-clause | 1,591,277,409 | using Lombiq.TrainingDemo.Models;
using Lombiq.TrainingDemo.ViewModels;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.ContentManagement.Display.Models;
using OrchardCore.DisplayManagement.ModelBinding;
using OrchardCore.DisplayManagement.Views;
using System.Threading.Tasks;
name... | using Lombiq.TrainingDemo.Models;
using Lombiq.TrainingDemo.ViewModels;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.ContentManagement.Display.Models;
using OrchardCore.DisplayManagement.ModelBinding;
using OrchardCore.DisplayManagement.Views;
using System.Threading.Tasks;
name... |
7b1a9fbb84e14124a67d54748571344f6db74bc4 | Fix caret not displaying when focused via Tab key. | Fix caret not displaying when focused via Tab key.
Also set caret position to end when selecting all, as textboxes when selected should scroll to display the end of the text.
| SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,Perspex/Perspex,jkoritzinsky/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,akrisiun/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkori... | src/Avalonia.Controls/TextBox.cs | mit | 1,591,277,170 | using Avalonia.Input.Platform;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Utils;
using Avalonia.Input;
using Avalonia.Interactivity;
using Avalonia.Media;
using Avalonia.Me... | using Avalonia.Input.Platform;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Utils;
using Avalonia.Input;
using Avalonia.Interactivity;
using Avalonia.Media;
using Avalonia.Me... |
a96840e11a55b9394f225224d19891685e48777f | Don't drop `Take` query instruction on the floor | Don't drop `Take` query instruction on the floor
This looked like a bug to me, assuming that the query works similarly to a regular `IQueryable`/`IEnumerable`. | MiniProfiler/dotnet,MiniProfiler/dotnet,MiniProfiler/dotnet | src/MiniProfiler.Providers.RavenDB/RavenDbStorage.cs | mit | 1,591,276,848 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Threading.Tasks;
using Raven.Client.Documents;
using Raven.Client.Documents.Conventions;
using Raven.Client.Documents.Linq;
using Raven.Client.Documents.Session;
using StackExchange.Prof... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Threading.Tasks;
using Raven.Client.Documents;
using Raven.Client.Documents.Conventions;
using Raven.Client.Documents.Linq;
using Raven.Client.Documents.Session;
using StackExchange.Prof... |
582903b5979485eb02967b9479dc956bf348a341 | Null check | Null check
| abryukhov/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,marcemarc/Umbraco-CMS,arknu/Umbraco-CMS,abryukhov/Umbraco-CMS,KevinJump/Umbraco-CMS,dawoe/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,abjerner/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,KevinJump/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,marcemarc/Umbraco-CMS... | src/Umbraco.Web.BackOffice/Filters/AppendUserModifiedHeaderAttribute.cs | mit | 1,591,276,594 | using System;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.Extensions.DependencyInjection;
using Umbraco.Core;
using Umbraco.Web.Security;
namespace Umbraco.Web.BackOffice.Filters
{
/// <summary>
/// Appends a custom response header to notify the UI that the current user data has been modified
... | using System;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.Extensions.DependencyInjection;
using Umbraco.Core;
using Umbraco.Web.Security;
namespace Umbraco.Web.BackOffice.Filters
{
/// <summary>
/// Appends a custom response header to notify the UI that the current user data has been modified
... |
85532e6b865f648fc57e4ad579a6a0a944c9fef9 | Chg - Gli utenti segnalati in "PresaInCarico" vengono presi direttamente dagli eventi. | Chg - Gli utenti segnalati in "PresaInCarico" vengono presi direttamente dagli eventi.
| vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Models/Servizi/CustomMapper/MapperRichiestaAssistenzaSuSintesi.cs | agpl-3.0 | 1,591,276,586 | using AutoMapper;
using SO115App.API.Models.Classi.Condivise;
using SO115App.API.Models.Classi.Soccorso;
using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza;
using SO115App.Models.Classi.Soccorso;
using SO115App.Models.Servizi.Infrastruttura.GestioneSoccorso.GestioneTipolo... | using AutoMapper;
using SO115App.API.Models.Classi.Condivise;
using SO115App.API.Models.Classi.Soccorso;
using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza;
using SO115App.Models.Classi.Soccorso;
using SO115App.Models.Servizi.Infrastruttura.GestioneSoccorso.GestioneTipolo... |
958a6a5512cfe1e91ea9b0bb5d89ec89f471481a | Fixed the path for the reports | Fixed the path for the reports
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister/Modules/Reports/ReportLogic.cs | mit | 1,591,276,418 | namespace DatenMeister.Modules.Reports
{
public class ReportLogic
{
public const string PackagePathTypesReport = "DatenMeister::Reports";
}
} | namespace DatenMeister.Modules.Reports
{
public class ReportLogic
{
public const string PackagePathTypesReport = "DatenMeister::DataViews";
}
} |
91da849f8253cb73faeb6fb5a232f7af020619c7 | Discard script submission result | Discard script submission result
| filipw/dotnet-script,filipw/dotnet-script,filipw/dotnet-script | src/Dotnet.Script.Core/ScriptRunner.cs | mit | 1,591,276,314 | using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Dotnet.Script.DependencyModel.Environment;
using Dotnet.Script.DependencyModel.Logging;
using Dotnet.Script.DependencyModel.Runtime;
using Microsoft.CodeAna... | using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Dotnet.Script.DependencyModel.Environment;
using Dotnet.Script.DependencyModel.Logging;
using Dotnet.Script.DependencyModel.Runtime;
using Microsoft.CodeAna... |
908e5f6bad130b841e154283deebf7f3456c99da | MarketEmulator removed generators. | MarketEmulator removed generators.
| StockSharp/StockSharp | Algo/Testing/MarketEmulator.cs | apache-2.0 | 1,591,276,307 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
f78c907c86d695fe491e6f820ded83c6627d2d52 | More logs. | More logs.
| StockSharp/StockSharp | Algo/Connector_Subscription.cs | apache-2.0 | 1,591,276,121 | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Common;
using StockSharp.Algo.Candles;
using StockSharp.BusinessEntities;
using StockSharp.Logging;
using StockSharp.Messages;
using StockSharp.Localization;
partial class Connector
{
/// <inheritdo... | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Common;
using StockSharp.Algo.Candles;
using StockSharp.BusinessEntities;
using StockSharp.Logging;
using StockSharp.Messages;
partial class Connector
{
/// <inheritdoc />
public IEnumerable<Securi... |
777c63eefc0506b4a0f48cbf06e3cae0652bafd1 | CHG - Tolto controllo autorizzazione inserimento Intervento non di propria competenza | CHG - Tolto controllo autorizzazione inserimento Intervento non di propria competenza
| vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/InserimentoIntervento/AddInterventoAuthorization.cs | agpl-3.0 | 1,591,276,115 | //-----------------------------------------------------------------------
// <copyright file="AddInterventoAuthorization.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General ... | //-----------------------------------------------------------------------
// <copyright file="AddInterventoAuthorization.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General ... |
1a1122f182c72f53754bb05adcbf0b88ea5a988a | Tolto controllo autorizzazione per l'inserimento di Interventi non di propria competenza | Tolto controllo autorizzazione per l'inserimento di Interventi non di propria competenza
| vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/InserimentoChiamataInCorsoMarker/ChiamataInCorsoMarkerAuthorization.cs | agpl-3.0 | 1,591,275,891 | //-----------------------------------------------------------------------
// <copyright file="ChiamataInCorsoMarkerAuthorization.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero ... | //-----------------------------------------------------------------------
// <copyright file="ChiamataInCorsoMarkerAuthorization.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero ... |
81fb2e572a8a19c32d15e330cfa661300ac4f490 | Implicit query to string | Implicit query to string
| ITCompaniet/ITCO-SBO-Addon-Framework | src/ITCO.SboAddon.Framework/Helpers/SimpleHanaTranslator.cs | mit | 1,591,275,101 | namespace ITCO.SboAddon.Framework.Helpers
{
using System.Collections.Generic;
using System.Text.RegularExpressions;
/// <summary>
/// Simple HANA SQL-SCript translator
/// </summary>
public class SimpleHanaTranslator
{
/// <summary>
/// Return query for currect database typ... | namespace ITCO.SboAddon.Framework.Helpers
{
using System.Collections.Generic;
using System.Text.RegularExpressions;
/// <summary>
/// Simple HANA SQL-SCript translator
/// </summary>
public class SimpleHanaTranslator
{
/// <summary>
/// Return query for currect database typ... |
afcefe01bf74177240c59e70b3ea2b87745a4223 | Fix score panel not receiving input in some places | Fix score panel not receiving input in some places
| peppy/osu-new,ppy/osu,smoogipoo/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu | osu.Game/Screens/Ranking/ScorePanel.cs | mit | 1,591,274,935 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Grap... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Grap... |
4e8e325fe54c3e24569f59c091d05573de31d56e | add: isMainBranch to Branch | add: isMainBranch to Branch
| ON-IT/Visma.Net,ON-IT/Visma.Net | Visma.net/Models/Branch.cs | mit | 1,591,274,690 | using Newtonsoft.Json;
using ONIT.VismaNetApi.Lib;
using ONIT.VismaNetApi.Models.CustomDto;
using System;
namespace ONIT.VismaNetApi.Models
{
public class Branch : DtoProviderBase, IProvideIdentificator
{
public string number { get { return Get<string>(); } set { Set(value); } }
public string ... | using System;
using ONIT.VismaNetApi.Lib;
using ONIT.VismaNetApi.Models.CustomDto;
namespace ONIT.VismaNetApi.Models
{
public class Branch : DtoProviderBase, IProvideIdentificator
{
public string number { get { return Get<string>();} set { Set(value); } }
public string name { get { return Get<... |
ba7deb8933666fde102fdb35a14a73f3a5870074 | [CON-1948] Fix return url when browsing to change password or email. | [CON-1948] Fix return url when browsing to change password or email.
| SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice | src/SFA.DAS.EmployerFinance.Web/Extensions/HtmlHelperExtensions.cs | mit | 1,591,274,412 | using SFA.DAS.EmployerFinance.Configuration;
using SFA.DAS.MA.Shared.UI.Configuration;
using SFA.DAS.MA.Shared.UI.Models;
using SFA.DAS.MA.Shared.UI.Models.Links;
using System;
using System.Linq;
using System.Web.Mvc;
namespace SFA.DAS.EmployerFinance.Web.Extensions
{
public static class HtmlHelperExtensions
... | using SFA.DAS.EmployerFinance.Configuration;
using SFA.DAS.MA.Shared.UI.Configuration;
using SFA.DAS.MA.Shared.UI.Models;
using SFA.DAS.MA.Shared.UI.Models.Links;
using System;
using System.Linq;
using System.Web.Mvc;
namespace SFA.DAS.EmployerFinance.Web.Extensions
{
public static class HtmlHelperExtensions
... |
e63546f27f789289e62fefa1abf3f05ee83201b2 | Add braces | Add braces
| ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framew... | osu.Framework/Graphics/Drawable.cs | mit | 1,591,274,257 | // 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 osuTK;
using osuTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions.TypeExtensions;
using osu.Framework.Graphics.Colour;
using osu.Framework... | // 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 osuTK;
using osuTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions.TypeExtensions;
using osu.Framework.Graphics.Colour;
using osu.Framework... |
e12b4cba347d02469a68d730c12b11e8856999c4 | HistoryMessageAdapter. Fix response on unsubscribe. | HistoryMessageAdapter. Fix response on unsubscribe.
| StockSharp/StockSharp | Algo/Testing/HistoryMessageAdapter.cs | apache-2.0 | 1,591,274,077 | namespace StockSharp.Algo.Testing
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Globalization;
using Ecng.Collections;
using Ecng.Common;
using Ecng.ComponentModel;
using StockSharp.Algo.Storages;
using StockSharp.BusinessEntities;
using StockS... | namespace StockSharp.Algo.Testing
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Globalization;
using Ecng.Collections;
using Ecng.Common;
using Ecng.ComponentModel;
using StockSharp.Algo.Storages;
using StockSharp.BusinessEntities;
using StockS... |
5d7bb8cb4e9e44eeb8a504f7d8e43f9046003aca | Change format of date on score panel | Change format of date on score panel
| smoogipoo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,peppy/osu,ppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,ppy/osu,smoogipoo/osu | osu.Game/Screens/Ranking/Expanded/ExpandedPanelMiddleContent.cs | mit | 1,591,274,018 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Grap... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Grap... |
02795b7baf1bed06959067e5d326ad289b9ee1ec | Put back the 'unused' method that is actually used. | Put back the 'unused' method that is actually used.
| autofac/Autofac,autofac/Autofac | src/Autofac/Features/Metadata/MetadataViewProvider.cs | mit | 1,591,273,682 | // This software is part of the Autofac IoC container
// Copyright © 2007 - 2012 Autofac Contributors
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// ... | // This software is part of the Autofac IoC container
// Copyright © 2007 - 2012 Autofac Contributors
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// ... |
82df25c99f930ba6e27601fe4326170377854e54 | アセンブリ名の付け漏れ修正 | アセンブリ名の付け漏れ修正
| zenuas/Roku,zenuas/Roku | src/Compiler/CodeGenerator.cs | mit | 1,591,273,244 | using Extensions;
using Roku.IntermediateCode;
using Roku.Manager;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
namespace Roku.Compiler
{
public static class CodeGenerator
{
public static void Emit(SourceCodeBody body, string path)
{
var... | using Extensions;
using Roku.IntermediateCode;
using Roku.Manager;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
namespace Roku.Compiler
{
public static class CodeGenerator
{
public static void Emit(SourceCodeBody body, string path)
{
var... |
a1d3747e8fd103fa78ffc91ce2c42e89855532ed | Fix edge case in testing whether a type is public | Fix edge case in testing whether a type is public
| canton7/RestEase | src/RestEase/Implementation/ReflectionTypeAnalyzer.cs | mit | 1,591,272,526 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Xml.Linq;
using RestEase.Implementation.Analysis;
using RestEase.Platform;
namespace RestEase.Implementation
{
internal ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Xml.Linq;
using RestEase.Implementation.Analysis;
using RestEase.Platform;
namespace RestEase.Implementation
{
internal class ReflectionTypeAnalyz... |
86bf4877bd8e769d68bcdf66b9addf1b443c612c | Fix 323: MoveToResource handles single quotes as well. | Fix 323: MoveToResource handles single quotes as well.
| tom-englert/ResXResourceManager,tom-englert/ResXResourceManager | src/ResXManager.VSIX/Refactorings.cs | mit | 1,591,272,414 | namespace ResXManager.VSIX
{
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
using EnvDTE;
using JetBrains.Annotations;
using ResXManager.Model;
using ResXManager.View.Behaviors;
using ... | namespace ResXManager.VSIX
{
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
using JetBrains.Annotations;
using ResXManager.Model;
using ResXManager.View.Behaviors;
using ResXManager.View.Prop... |
2e0011d252168feb89c7cab50569192b5ca19c8a | Update ListWorkshop.cs | Update ListWorkshop.cs
| overtools/OWLib | DataTool/ToolLogic/List/Misc/ListWorkshop.cs | mit | 1,591,271,707 | using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using DataTool.Flag;
using DataTool.Helper;
using DataTool.JSON;
using TankLib;
using TankLib.STU.Types;
using TankLib.STU.Types.Enums;
using static DataTool.Program;
using static DataTool.Helper.IO;
namespace DataTool.ToolLogic.List.Misc ... | using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using DataTool.Flag;
using DataTool.Helper;
using DataTool.JSON;
using TankLib;
using TankLib.STU.Types;
using TankLib.STU.Types.Enums;
using static DataTool.Program;
using static DataTool.Helper.IO;
namespace DataTool.ToolLogic.List.Misc ... |
8461527af5b2525038d8894f230b3b600d2567fa | 特殊な関数名のマッチングに対応 | 特殊な関数名のマッチングに対応
| zenuas/Roku,zenuas/Roku | src/Compiler/Lookup.cs | mit | 1,591,271,117 | using Extensions;
using Roku.IntermediateCode;
using Roku.Manager;
using System;
using System.Collections.Generic;
using System.Reflection;
namespace Roku.Compiler
{
public static class Lookup
{
public static List<SourceCodeBody> AllPrograms(SourceCodeBody src)
{
var readed = new H... | using Extensions;
using Roku.IntermediateCode;
using Roku.Manager;
using System;
using System.Collections.Generic;
using System.Reflection;
namespace Roku.Compiler
{
public static class Lookup
{
public static List<SourceCodeBody> AllPrograms(SourceCodeBody src)
{
var readed = new H... |
a753a66d317b9948e38814b809bfcd9b37d5a792 | ExternFunctionの関数名出力部分を分割 戻り値名をパラメータに対応 | ExternFunctionの関数名出力部分を分割
戻り値名をパラメータに対応
| zenuas/Roku,zenuas/Roku | src/Compiler/CodeGenerator.cs | mit | 1,591,271,049 | using Extensions;
using Roku.IntermediateCode;
using Roku.Manager;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
namespace Roku.Compiler
{
public static class CodeGenerator
{
public static void Emit(SourceCodeBody body, string path)
{
var... | using Extensions;
using Roku.IntermediateCode;
using Roku.Manager;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
namespace Roku.Compiler
{
public static class CodeGenerator
{
public static void Emit(SourceCodeBody body, string path)
{
var... |
0936f09557e5f64f96f9e677030dd5924cb7fd7f | Update ListWorkshop.cs | Update ListWorkshop.cs
| overtools/OWLib | DataTool/ToolLogic/List/Misc/ListWorkshop.cs | mit | 1,591,270,883 | using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using DataTool.Flag;
using DataTool.Helper;
using DataTool.JSON;
using TankLib;
using TankLib.STU.Types;
using TankLib.STU.Types.Enums;
using static DataTool.Program;
using static DataTool.Helper.IO;
namespace DataTool.ToolLogic.List.Misc ... | using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using DataTool.Flag;
using DataTool.Helper;
using DataTool.JSON;
using TankLib;
using TankLib.STU.Types;
using TankLib.STU.Types.Enums;
using static DataTool.Program;
using static DataTool.Helper.IO;
namespace DataTool.ToolLogic.List.Misc ... |
12c351aa3682b547f6a1e433fceccbf18ff0c89a | New clientlib ver | New clientlib ver
| kaltura/KalturaGeneratedAPIClientsCsharp | KalturaClient/Client.cs | agpl-3.0 | 1,591,267,984 | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... |
0b33e61ab4c6fbd499c9987609fd850b5f59253c | Fix - Cancellazione dalla collection StatoMezzo di un mezzo rientrato | Fix - Cancellazione dalla collection StatoMezzo di un mezzo rientrato
| vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Persistence.MongoDB/GestioneMezzi/SetStatoOperativoMezzo.cs | agpl-3.0 | 1,591,267,736 | using MongoDB.Driver;
using Persistence.MongoDB;
using SO115App.API.Models.Servizi.Infrastruttura.GestioneSoccorso;
using SO115App.Models.Classi.Condivise;
using SO115App.Models.Classi.Utility;
using SO115App.Models.Servizi.Infrastruttura.GestioneSoccorso.Mezzi;
namespace SO115App.Persistence.MongoDB.GestioneMezzi
{
... | using MongoDB.Driver;
using Persistence.MongoDB;
using SO115App.API.Models.Servizi.Infrastruttura.GestioneSoccorso;
using SO115App.Models.Classi.Condivise;
using SO115App.Models.Servizi.Infrastruttura.GestioneSoccorso.Mezzi;
namespace SO115App.Persistence.MongoDB.GestioneMezzi
{
/// <summary>
/// classe che... |
58aa75555b24d0a16c33bad90571f8ad6809678e | (GH-3817) Fix coercing of OpenPaneLength at HamburgerMenu | (GH-3817) Fix coercing of OpenPaneLength at HamburgerMenu
| ye4241/MahApps.Metro,MahApps/MahApps.Metro,batzen/MahApps.Metro,MahApps/MahApps.Metro,ye4241/MahApps.Metro,batzen/MahApps.Metro | src/MahApps.Metro/Controls/HamburgerMenu/HamburgerMenu.Properties.cs | mit | 1,591,267,371 | using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
namespace MahApps.Metro.Controls
{
[StyleTypedProperty(Property = nameof(ResizeThumbStyle), StyleTargetType = typeof(MetroThumb))]
public partial class HamburgerMenu
{
private... | using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
namespace MahApps.Metro.Controls
{
[StyleTypedProperty(Property = nameof(ResizeThumbStyle), StyleTargetType = typeof(MetroThumb))]
public partial class HamburgerMenu
{
private... |
f819f924757c10cb568881e350a45ce0062eedd5 | [Modify] Replace it | [Modify] Replace it
| sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Net/WebHeaderCollection.cs | mit | 1,591,267,273 | #region License
/*
* WebHeaderCollection.cs
*
* This code is derived from WebHeaderCollection.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
* Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
* Copyright (c) 2012-... | #region License
/*
* WebHeaderCollection.cs
*
* This code is derived from WebHeaderCollection.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
* Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
* Copyright (c) 2012-... |
d6c696bf2936cf4debafebc453e3c1cef498a4cc | [Modify] Replace it | [Modify] Replace it
| sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Net/WebHeaderCollection.cs | mit | 1,591,267,215 | #region License
/*
* WebHeaderCollection.cs
*
* This code is derived from WebHeaderCollection.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
* Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
* Copyright (c) 2012-... | #region License
/*
* WebHeaderCollection.cs
*
* This code is derived from WebHeaderCollection.cs (System.Net) of Mono
* (http://www.mono-project.com).
*
* The MIT License
*
* Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
* Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
* Copyright (c) 2012-... |
06e78f072639f3487a64f2d8036c65bd5777bb48 | Improvement to error message in exception. | Improvement to error message in exception.
| neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver | Neo4j.Driver/Neo4j.Driver/Internal/IO/ChunkReader.cs | apache-2.0 | 1,591,266,108 | // Copyright (c) 2002-2020 "Neo4j,"
// Neo4j Sweden AB [http://neo4j.com]
//
// This file is part of Neo4j.
//
// 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... | // Copyright (c) 2002-2020 "Neo4j,"
// Neo4j Sweden AB [http://neo4j.com]
//
// This file is part of Neo4j.
//
// 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... |
0c4f6ef9fbeea7297f5e8c497f0edd6f94645d0f | Fix #324: WebFilesExporter - emit json files is now optional | Fix #324: WebFilesExporter - emit json files is now optional
| tom-englert/ResXResourceManager,tom-englert/ResXResourceManager | src/ResXManager.Model/WebFilesExporter.cs | mit | 1,591,266,020 | namespace ResXManager.Model
{
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
u... | namespace ResXManager.Model
{
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
u... |
8ae0abaddd9eb8a3c14ce89e5806d4105299d69a | Small code change. | Small code change.
| StockSharp/StockSharp | Algo/SubscriptionMessageAdapter.cs | apache-2.0 | 1,591,265,683 | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Localization;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Subscription counter adapter.
/// </summary>
public class Subscri... | namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Localization;
using StockSharp.Logging;
using StockSharp.Messages;
/// <summary>
/// Subscription counter adapter.
/// </summary>
public class Subscri... |
66333cfdc6064e67a1a8c7f31292d920b46ec02b | Emulator. Commission not calc. Fix https://stocksharp.com/forum/11920/commission-is-zero-when-backtest-strategy-in-sshell/ | Emulator. Commission not calc. Fix https://stocksharp.com/forum/11920/commission-is-zero-when-backtest-strategy-in-sshell/
| StockSharp/StockSharp | Algo/Testing/EmulationMessageAdapter.cs | apache-2.0 | 1,591,265,576 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
9903f330992540a6a678572ec10bcb55758b109b | Small code change. | Small code change.
| StockSharp/StockSharp | Algo/Testing/MarketEmulator.cs | apache-2.0 | 1,591,265,548 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
e34929feaa49f018ea33abc67b0cc25c7682c095 | Update Mono C# warning to reflect latest list of platforms supported | Update Mono C# warning to reflect latest list of platforms supported
Simple fix for #38627. iOS (#20268) and HTML5 (#20270) removed from list of exceptions
for platforms supported in warning message.
(cherry picked from commit 3d03be7a56769b6188c6ab8df6ca0c41877bc61c)
| ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot | modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs | mit | 1,591,265,379 | using Godot;
using GodotTools.Core;
using GodotTools.Export;
using GodotTools.Utils;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using GodotTools.Ides;
using GodotTools.Ides.Rider;
using GodotTools.Internals;
using GodotTools.ProjectEditor;
using JetBrains.Ann... | using Godot;
using GodotTools.Core;
using GodotTools.Export;
using GodotTools.Utils;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using GodotTools.Ides;
using GodotTools.Ides.Rider;
using GodotTools.Internals;
using GodotTools.ProjectEditor;
using JetBrains.Ann... |
7a86978975b9878b4e758813a4aa74d7c6c6629d | resolved #5631: Make LdapSettingNames.Password encrypted | resolved #5631: Make LdapSettingNames.Password encrypted
| ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,ryancyq/aspnetboilerplate,luchaoshuai/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,luchaoshuai/aspnetboilerplate,ryancyq/aspnetboilerplate,ryancyq/aspnetboilerplate | src/Abp.Zero.Ldap/Ldap/Configuration/LdapSettingProvider.cs | mit | 1,591,265,365 | using System.Collections.Generic;
using System.DirectoryServices.AccountManagement;
using Abp.Configuration;
using Abp.Localization;
namespace Abp.Zero.Ldap.Configuration
{
/// <summary>
/// Defines LDAP settings.
/// </summary>
public class LdapSettingProvider : SettingProvider
{
protecte... | using System.Collections.Generic;
using System.DirectoryServices.AccountManagement;
using Abp.Configuration;
using Abp.Localization;
namespace Abp.Zero.Ldap.Configuration
{
/// <summary>
/// Defines LDAP settings.
/// </summary>
public class LdapSettingProvider : SettingProvider
{
protecte... |
d1963fe32e803e3693be7f7ba52ffc7ca3b6883f | Add server reset time checks in PlaceOrder/UpdateOrder/CancelOrder | Add server reset time checks in PlaceOrder/UpdateOrder/CancelOrder
| StefanoRaggi/Lean,AlexCatarino/Lean,AlexCatarino/Lean,QuantConnect/Lean,jameschch/Lean,jameschch/Lean,QuantConnect/Lean,JKarathiya/Lean,jameschch/Lean,JKarathiya/Lean,jameschch/Lean,QuantConnect/Lean,JKarathiya/Lean,AlexCatarino/Lean,StefanoRaggi/Lean,StefanoRaggi/Lean,StefanoRaggi/Lean | Brokerages/InteractiveBrokers/InteractiveBrokersBrokerage.cs | apache-2.0 | 1,591,263,740 | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of ... | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of ... |
0c18bf89ec1b98b890ea2c884322ae88e73a9687 | Removed commented out code left in by mistake. | Removed commented out code left in by mistake.
| neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver | Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/BoltStubServer.cs | apache-2.0 | 1,591,263,225 | // Copyright (c) 2002-2020 "Neo4j,"
// Neo4j Sweden AB [http://neo4j.com]
//
// This file is part of Neo4j.
//
// 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... | // Copyright (c) 2002-2020 "Neo4j,"
// Neo4j Sweden AB [http://neo4j.com]
//
// This file is part of Neo4j.
//
// 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... |
fafc1395b3ce0ab7b5759f1c397378b7fc76a348 | Fix for local host resolution with new BoltStub in 4.1 BoltKit. | Fix for local host resolution with new BoltStub in 4.1 BoltKit.
| neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver | Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/BoltStubServer.cs | apache-2.0 | 1,591,263,183 | // Copyright (c) 2002-2020 "Neo4j,"
// Neo4j Sweden AB [http://neo4j.com]
//
// This file is part of Neo4j.
//
// 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... | // Copyright (c) 2002-2020 "Neo4j,"
// Neo4j Sweden AB [http://neo4j.com]
//
// This file is part of Neo4j.
//
// 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... |
ad65cbb12b62baf1c8fd15c628eb82fb14f8588e | fix order (CF) | fix order (CF)
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Models/Sorting/SortingPreference.cs | mit | 1,591,262,496 | using System;
using System.Diagnostics.CodeAnalysis;
namespace WalletWasabi.Gui.Models.Sorting
{
public struct SortingPreference : IEquatable<SortingPreference>
{
public SortingPreference(SortOrder sortOrder, string colTarget)
{
SortOrder = sortOrder;
ColumnTarget = colTarget;
}
public SortOrder SortO... | using System;
using System.Diagnostics.CodeAnalysis;
namespace WalletWasabi.Gui.Models.Sorting
{
public struct SortingPreference : IEquatable<SortingPreference>
{
public SortingPreference(SortOrder sortOrder, string colTarget)
{
SortOrder = sortOrder;
ColumnTarget = colTarget;
}
public SortOrder SortO... |
0b71c10fdc7c5d4b4a0f962524a0d5d71952103a | revert change | revert change
| tcmorris/Umbraco-CMS,tcmorris/Umbraco-CMS,robertjf/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,bjarnef/Umbraco-CMS,abryukhov/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,umbraco/Umbraco-CMS,leekelleher/Umbraco-CMS,tcmorris/Umbraco-CMS,mattbrailsford/Umbraco-CMS,abryukhov/Umbraco-CMS,dawoe/Umbraco-CMS,leekelleher/Umbraco-CMS... | src/Umbraco.Web/PropertyEditors/ValueConverters/NestedContentManyValueConverter.cs | mit | 1,591,262,178 | using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Core.PropertyEditors;
using Umbraco.Core.PropertyEditors.ValueConverters;
using Umbraco.Web.PublishedCache;
namesp... | using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Core.PropertyEditors;
using Umbraco.Core.PropertyEditors.ValueConverters;
using Umbraco.Web.PublishedCache;
namesp... |
2573046e603a00bcf0e240cc79d51ac1e9ec3514 | Implement Equals(object obj) for SortingPreference to fix VS complain | Implement Equals(object obj) for SortingPreference to fix VS complain
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Models/Sorting/SortingPreference.cs | mit | 1,591,261,868 | using System;
using System.Diagnostics.CodeAnalysis;
namespace WalletWasabi.Gui.Models.Sorting
{
public struct SortingPreference : IEquatable<SortingPreference>
{
public SortingPreference(SortOrder sortOrder, string colTarget)
{
SortOrder = sortOrder;
ColumnTarget = colTarget;
}
public SortOrder SortO... | using System;
using System.Diagnostics.CodeAnalysis;
namespace WalletWasabi.Gui.Models.Sorting
{
public struct SortingPreference : IEquatable<SortingPreference>
{
public SortingPreference(SortOrder sortOrder, string colTarget)
{
SortOrder = sortOrder;
ColumnTarget = colTarget;
}
public SortOrder SortO... |
a40475e6aa95b2585e6d811824d5690fec21830a | Remove triggerNextRandom from SongSelect | Remove triggerNextRandom from SongSelect
| peppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,peppy/osu-new,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu | osu.Game/Screens/Select/SongSelect.cs | mit | 1,591,261,787 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Fra... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Fra... |
cb6e4739107892079b84987a0322c2a5ba963a76 | Remove triggerPreviousRandom from SongSelect | Remove triggerPreviousRandom from SongSelect
| smoogipooo/osu,ppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,peppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu | osu.Game/Screens/Select/SongSelect.cs | mit | 1,591,261,687 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Fra... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Fra... |
ee579ab68e576a13bf6b59155e56047a5fb3738f | Fixed reference to fn= | Fixed reference to fn=
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister/Modules/DataViews/DataViewLogic.cs | mit | 1,591,261,539 | using System.Collections.Generic;
using System.Linq;
using BurnSystems.Logging;
using DatenMeister.Core.EMOF.Interface.Common;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Runtime.Functions.Queries;
using DatenMeister.Runtime.Workspaces;
nam... | using System.Collections.Generic;
using System.Linq;
using BurnSystems.Logging;
using DatenMeister.Core.EMOF.Interface.Common;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Runtime.Functions.Queries;
using DatenMeister.Runtime.Workspaces;
nam... |
d8ea15ee6c89932985a1de7847f28323f6a6b46d | Fixed unit tests | Fixed unit tests
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister.Tests/Runtime/Extents/ExtentTests.cs | mit | 1,591,261,539 | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Implementation.AutoEnumerate;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
us... | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Implementation.AutoEnumerate;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
us... |
1d23dc048bacf00842399e96c788f42a6d38de77 | Fixed unit tests | Fixed unit tests
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister.Tests/Runtime/Extents/ExtentTests.cs | mit | 1,591,261,500 | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Implementation.AutoEnumerate;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
us... | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Implementation.AutoEnumerate;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
us... |
cab132673aa226f77039311a005e0ac69379fb08 | Break FooterButtonRandom creation into multiple lines | Break FooterButtonRandom creation into multiple lines
| UselessToucan/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,ppy/osu,ppy/osu | osu.Game/Screens/Select/SongSelect.cs | mit | 1,591,261,390 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Fra... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Fra... |
8f7771a8d2169f707e4a4fcaaf6d6256d6ca81b0 | Fix - Ripristinata la gestione della cache | Fix - Ripristinata la gestione della cache
| vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.FakePersistance.ExternalAPI/GestioneMezzi/GetMezziUtilizzabili.cs | agpl-3.0 | 1,591,261,188 | using Microsoft.Extensions.Configuration;
using SO115App.API.Models.Classi.Condivise;
using SO115App.Models.Classi.Condivise;
using SO115App.Models.Servizi.Infrastruttura.SistemiEsterni.Gac;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using SO115App.Models.... | using Microsoft.Extensions.Configuration;
using SO115App.API.Models.Classi.Condivise;
using SO115App.Models.Classi.Condivise;
using SO115App.Models.Servizi.Infrastruttura.SistemiEsterni.Gac;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using SO115App.Models.... |
62984cb7f5da4380939200833cccfe06b4128816 | Remove unused Hotkey assignment | Remove unused Hotkey assignment
| ppy/osu,smoogipooo/osu,peppy/osu-new,peppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu | osu.Game/Screens/Select/FooterButtonRandom.cs | mit | 1,591,261,133 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using ... |
df148cf9d1ffe5fbb9ed6caf3dd4727b215b971e | Rename secondaryAction to rewindSearch | Rename secondaryAction to rewindSearch
| peppy/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,ppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu | osu.Game/Screens/Select/FooterButtonRandom.cs | mit | 1,591,261,099 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using ... |
bd3e40a8cfd6c103d05f399db4186cfc1c6339b7 | Move default return out of switch/case | Move default return out of switch/case
| NeoAdonis/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,peppy/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu | osu.Game/Screens/Select/FooterButtonRandom.cs | mit | 1,591,261,044 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using ... |
8187236a1aa821a7b7bcbb9f4273371f103219e8 | Introduced unit tests | Introduced unit tests
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister/Modules/DataViews/DataViewLogic.cs | mit | 1,591,260,889 | using System.Collections.Generic;
using System.Linq;
using BurnSystems.Logging;
using DatenMeister.Core.EMOF.Interface.Common;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Runtime.Functions.Queries;
using DatenMeister.Runtime.Workspaces;
nam... | using System.Collections.Generic;
using System.Linq;
using BurnSystems.Logging;
using DatenMeister.Core.EMOF.Interface.Common;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Runtime.Functions.Queries;
using DatenMeister.Runtime.Workspaces;
nam... |
2c8fc323885cc5a8f0558ea423969681bdf68a35 | Introduced unit tests for querying of ids and fullname | Introduced unit tests for querying of ids and fullname
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister.Tests/Runtime/Extents/ExtentTests.cs | mit | 1,591,260,798 | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Implementation.AutoEnumerate;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Interface.Reflection;
us... | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Autofac;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Implementation.AutoEnumerate;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Integration;
using DatenMeister.Mod... |
7c694927291cd9a4faaa2b31bc1cafd9309bd413 | Comment test | Comment test
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Tests/UnitTests/UpdateStatusTests.cs | mit | 1,591,260,430 | using System;
using System.Collections.Generic;
using System.Text;
using WalletWasabi.Models;
using Xunit;
namespace WalletWasabi.Tests.UnitTests
{
public class UpdateStatusTests
{
[Fact]
public void TestEquality()
{
var backendCompatible = false;
var clientUpToDate = false;
var legalVersion = new Ver... | using System;
using System.Collections.Generic;
using System.Text;
using WalletWasabi.Models;
using Xunit;
namespace WalletWasabi.Tests.UnitTests
{
public class UpdateStatusTests
{
[Fact]
public void TestEquality()
{
var backendCompatible = false;
var clientUpToDate = false;
var legalVersion = new Ver... |
28fdb85e273c84a2f316b56a4c1244b4c02fa11b | Remove private setters of UpdateStatus's properties. | Remove private setters of UpdateStatus's properties.
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Models/UpdateStatus.cs | mit | 1,591,260,131 | using System;
using System.Collections.Generic;
using System.Text;
namespace WalletWasabi.Models
{
public class UpdateStatus : IEquatable<UpdateStatus>
{
public UpdateStatus(bool backendCompatible, bool clientUpToDate, Version legalDocumentsVersion, ushort currentBackendMajorVersion)
{
BackendCompatible = bac... | using System;
using System.Collections.Generic;
using System.Text;
namespace WalletWasabi.Models
{
public class UpdateStatus : IEquatable<UpdateStatus>
{
public UpdateStatus(bool backendCompatible, bool clientUpToDate, Version legalDocumentsVersion, ushort currentBackendMajorVersion)
{
BackendCompatible = bac... |
023484026500455b2feb673c7882aa6769959e54 | -Add label for cleared PTTHotkey | -Add label for cleared PTTHotkey
| razorlikes/AppVolumeHotkeys | AppVolumeHotkeys/MainWindow.cs | mit | 1,591,259,937 | using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace AppVolumeHotkeys
{
public partial class MainWindow : Form
{
Keys VolUpHotkey, VolDownHotkey, VolUpModifier, VolDownModifier, MuteHotkey, MuteModifier, PTTHotkey;
int VolumeSteps, AppVolume, SoftMuteLevel;... | using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace AppVolumeHotkeys
{
public partial class MainWindow : Form
{
Keys VolUpHotkey, VolDownHotkey, VolUpModifier, VolDownModifier, MuteHotkey, MuteModifier, PTTHotkey;
int VolumeSteps, AppVolume, SoftMuteLevel;... |
42bb56dc4600b932d0c83fea2696a96e7dc86038 | Changed error level | Changed error level
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister/Runtime/ExtentUrlNavigator.cs | mit | 1,591,259,837 | using System;
using System.Collections.Generic;
using System.Net;
using System.Web;
using BurnSystems.Logging;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Runtime.Functions.Queries;
using DatenMeister.Uml.Helper;
// ReSharper disable InconsistentNa... | using System;
using System.Collections.Generic;
using System.Net;
using System.Web;
using BurnSystems.Logging;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Interface.Reflection;
using DatenMeister.Runtime.Functions.Queries;
using DatenMeister.Uml.Helper;
// ReSharper disable InconsistentNa... |
c68befe0e490f6b856a6531670c88cb4e335e4f2 | -Fix reset key not resetting PTTHotkey | -Fix reset key not resetting PTTHotkey
| razorlikes/AppVolumeHotkeys | AppVolumeHotkeys/MainWindow.cs | mit | 1,591,259,734 | using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace AppVolumeHotkeys
{
public partial class MainWindow : Form
{
Keys VolUpHotkey, VolDownHotkey, VolUpModifier, VolDownModifier, MuteHotkey, MuteModifier, PTTHotkey;
int VolumeSteps, AppVolume, SoftMuteLevel;... | using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace AppVolumeHotkeys
{
public partial class MainWindow : Form
{
Keys VolUpHotkey, VolDownHotkey, VolUpModifier, VolDownModifier, MuteHotkey, MuteModifier, PTTHotkey;
int VolumeSteps, AppVolume, SoftMuteLevel;... |
0b2006aea615cff223f36ea2b0ccb635dbd313e7 | ObjectiveMapper 会实时侦测SQL查询结果的变化,如果查询结果的格式发生了改变,会重新进行结果集到象的映射。 | ObjectiveMapper 会实时侦测SQL查询结果的变化,如果查询结果的格式发生了改变,会重新进行结果集到象的映射。
| cmstar/Data | cmstar.Data/Dynamic/ObjectMapper.cs | mit | 1,591,259,003 | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using cmstar.Data.Reflection;
using cmstar.Data.Reflection.Emit;
namespace cmstar.Data.Dynamic
{
/// <summary>
/// A mapper that maps data from a <see cref="IDataRecord"/> to
/... | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using cmstar.Data.Reflection;
using cmstar.Data.Reflection.Emit;
namespace cmstar.Data.Dynamic
{
/// <summary>
/// A mapper that maps data from a <see cref="IDataRecord"/> to
/... |
9920911390833ffb35fddffaaa62803ebf92ecd1 | Fix tournament displayed beatmap potentially being out of order on quick changes | Fix tournament displayed beatmap potentially being out of order on quick changes
| peppy/osu,ppy/osu,smoogipooo/osu,peppy/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu | osu.Game.Tournament/IPC/FileBasedIPC.cs | mit | 1,591,258,808 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using System.Linq;
using Microsoft.Win32;
using osu.Framework.Allocation;
using osu.Framework.Logging;
using osu.Framework.Platform;
using ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using System.Linq;
using Microsoft.Win32;
using osu.Framework.Allocation;
using osu.Framework.Logging;
using osu.Framework.Platform;
using ... |
380f5812d4cbd7a851481c54011ef7e01255ad55 | change tests | change tests
| piedoom/TumblrSharp,piedoom/TumblrSharp | tests/OAuth.cs | mit | 1,591,258,266 | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using DontPanic.TumblrSharp.OAuth;
using System.Threading.Tasks;
namespace TestingTumblrSharp
{
[TestClass]
public class OAuthTest
{
// This consumer-token is only for testing!
private readonly string _consumerKey = Environ... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using DontPanic.TumblrSharp.OAuth;
using System.Threading.Tasks;
namespace TestingTumblrSharp
{
[TestClass]
public class OAuthTest
{
// This consumer-token is only for testing!
private readonly string _consumerKey = Environ... |
85f81c858ca1e93cb51b0d8dd6b56ac605409217 | ToMessageType2 supports more DataType. | ToMessageType2 supports more DataType.
| StockSharp/StockSharp | Algo/MessageConverterHelper.cs | apache-2.0 | 1,591,256,912 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
93c88ea35278d509af7154bf5fee56d4c03ad669 | Duplication of items is resolved | Duplication of items is resolved
| mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new,mbrenn/datenmeister-new | src/DatenMeister/Modules/DefaultTypes/DefaultClassifierHints.cs | mit | 1,591,255,808 | #nullable enable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using BurnSystems.Logging;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Int... | #nullable enable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using BurnSystems.Logging;
using DatenMeister.Core;
using DatenMeister.Core.EMOF.Implementation;
using DatenMeister.Core.EMOF.Interface.Identifiers;
using DatenMeister.Core.EMOF.Int... |
876520c8cc3e65db58d332abb09ac48083a1b047 | Refactor Noark5TestFactory dictionary | Refactor Noark5TestFactory dictionary
| arkivverket/arkade5,arkivverket/arkade5 | src/Arkivverket.Arkade.Core/Base/Noark5/Noark5TestFactory.cs | agpl-3.0 | 1,591,253,396 | using System;
using System.Collections.Generic;
using System.Linq;
using Arkivverket.Arkade.Core.Testing.Noark5;
using Arkivverket.Arkade.Core.Testing.Noark5.Structure;
using Arkivverket.Arkade.Core.Util;
namespace Arkivverket.Arkade.Core.Base.Noark5
{
public class Noark5TestFactory
{
private readonly... | using System;
using System.Collections.Generic;
using System.Linq;
using Arkivverket.Arkade.Core.Testing.Noark5;
using Arkivverket.Arkade.Core.Testing.Noark5.Structure;
using Arkivverket.Arkade.Core.Util;
namespace Arkivverket.Arkade.Core.Base.Noark5
{
public class Noark5TestFactory
{
private readonly... |
50bb74ea6316eb1f2da99ffa88c8b746547303a5 | #1657 fixed InspectException | #1657 fixed InspectException
| rockfordlhotka/csla,rockfordlhotka/csla,MarimerLLC/csla,JasonBock/csla,JasonBock/csla,rockfordlhotka/csla,MarimerLLC/csla,MarimerLLC/csla,JasonBock/csla | Source/Csla.Shared/Server/SimpleDataPortal.cs | mit | 1,591,253,174 | //-----------------------------------------------------------------------
// <copyright file="SimpleDataPortal.cs" company="Marimer LLC">
// Copyright (c) Marimer LLC. All rights reserved.
// Website: https://cslanet.com
// </copyright>
// <summary>Implements the server-side DataPortal as discussed</summary>
//... | //-----------------------------------------------------------------------
// <copyright file="SimpleDataPortal.cs" company="Marimer LLC">
// Copyright (c) Marimer LLC. All rights reserved.
// Website: https://cslanet.com
// </copyright>
// <summary>Implements the server-side DataPortal as discussed</summary>
//... |
53c2180a58478acd291d0b478f910a12e0c19b19 | Improve user question when node conflict is not auto-resolved | Improve user question when node conflict is not auto-resolved
| configit-open-source/csmerge | Project/Item.cs | mit | 1,591,252,400 | using System;
using System.Xml.Linq;
namespace Project {
public abstract class Item: IEquatable<Item>, IConflictableItem {
public abstract override int GetHashCode();
public virtual string Action { get { return GetType().Name; } }
public abstract string Key { get; }
public bool IsResolveOption { ge... | using System;
using System.Xml.Linq;
namespace Project {
public abstract class Item: IEquatable<Item>, IConflictableItem {
public abstract override int GetHashCode();
public virtual string Action { get { return GetType().Name; } }
public abstract string Key { get; }
public bool IsResolveOption { ge... |
fc29d948c150c90260bb12ff8155e6cad6afc435 | PP9-10606: It's VectorGraphic, not Vector | PP9-10606: It's VectorGraphic, not Vector
| Picturepark/Picturepark.SDK.DotNet,Picturepark/Picturepark.SDK.DotNet | src/Picturepark.SDK.V1.Tests/Clients/ContentTests.cs | mit | 1,591,251,809 | using FluentAssertions;
using Newtonsoft.Json;
using Picturepark.SDK.V1.Contract;
using Picturepark.SDK.V1.Tests.Contracts;
using Picturepark.SDK.V1.Tests.Fixtures;
using Picturepark.SDK.V1.Tests.FluentAssertions;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;... | using FluentAssertions;
using Newtonsoft.Json;
using Picturepark.SDK.V1.Contract;
using Picturepark.SDK.V1.Tests.Contracts;
using Picturepark.SDK.V1.Tests.Fixtures;
using Picturepark.SDK.V1.Tests.FluentAssertions;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;... |
5db5c3abb213952a4adcc0d0c85c276c7bb231ad | handled potential memory leak | handled potential memory leak
| dhindrik/TinyNavigationHelper | src/TinyNavigationHelper.Forms/ShellNavigationHelper.cs | mit | 1,591,251,712 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace TinyNavigationHelper.Forms
{
public class ShellNavigationHelper : FormsNavigationHelper
{
private Dictionary<string, string> queries = new Dictionary<string, string>();
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace TinyNavigationHelper.Forms
{
public class ShellNavigationHelper : FormsNavigationHelper
{
private Dictionary<string, string> queries = new Dictionary<string, string>();
... |
1d064ae3973dd556c7db4f991bcc04cf46cb6075 | #1657 fixed InspectException | #1657 fixed InspectException
| MarimerLLC/csla,MarimerLLC/csla,rockfordlhotka/csla,JasonBock/csla,JasonBock/csla,MarimerLLC/csla,rockfordlhotka/csla,rockfordlhotka/csla,JasonBock/csla | Source/Csla.Shared/Server/SimpleDataPortal.cs | mit | 1,591,251,222 | //-----------------------------------------------------------------------
// <copyright file="SimpleDataPortal.cs" company="Marimer LLC">
// Copyright (c) Marimer LLC. All rights reserved.
// Website: https://cslanet.com
// </copyright>
// <summary>Implements the server-side DataPortal as discussed</summary>
//... | //-----------------------------------------------------------------------
// <copyright file="SimpleDataPortal.cs" company="Marimer LLC">
// Copyright (c) Marimer LLC. All rights reserved.
// Website: https://cslanet.com
// </copyright>
// <summary>Implements the server-side DataPortal as discussed</summary>
//... |
516d575c3bb7080f9aeac1aff3bffd46e709cfcf | fixed missing package modified code for DatabaseEditor | fixed missing package modified code for DatabaseEditor
| Willster419/RelhaxModpack,Willster419/RelicModManager | RelhaxModpack/RelhaxModpack/Windows/DatabaseEditor.xaml.cs | apache-2.0 | 1,591,251,135 | using Microsoft.Win32;
using RelhaxModpack.Database;
using RelhaxModpack.UI;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Xml;
using Path ... | using Microsoft.Win32;
using RelhaxModpack.Database;
using RelhaxModpack.UI;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Xml;
using Path ... |
3f415ff19bb068bfa72392bafca0b72ecbd30902 | missed a spot for editor's usage of wgmods option | missed a spot for editor's usage of wgmods option
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/DatabaseEditor.xaml.cs | apache-2.0 | 1,591,250,066 | using Microsoft.Win32;
using RelhaxModpack.Database;
using RelhaxModpack.UI;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Xml;
using Path ... | using Microsoft.Win32;
using RelhaxModpack.Database;
using RelhaxModpack.UI;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Xml;
using Path ... |
f434f589e15cc37f05af501bcc16679a3bc2d1bb | moved exception handling at end of selection list load into dispatcher UI block. This verifies that the thread executing the handling code is the UI thread | moved exception handling at end of selection list load into dispatcher UI block. This verifies that the thread executing the handling code is the UI thread
| Willster419/RelhaxModpack,Willster419/RelicModManager | RelhaxModpack/RelhaxModpack/Windows/ModSelectionList.xaml.cs | apache-2.0 | 1,591,249,869 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using System.Net;
using System.IO;
using Microsoft.Win32;
using RelhaxModpack.UI;
using System.... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using System.Net;
using System.IO;
using Microsoft.Win32;
using RelhaxModpack.UI;
using System.... |
4174c13b1184972a0528f4aa363bb2915161bcad | Better using order | Better using order
| alvivar/Hasten | Gigas/EntitySet.cs | mit | 1,591,249,593 | // This file is auto-generated. Modifications won't be saved, be cool.
// EntitySet is a static database of MonoBehaviour classes that are considered a
// Entity, classes with '// !Gigas' somewhere in their file.
// Refresh with the menu item 'Tools/Gigas/Generate EntitySet.cs'
using System;
using System.Collections... | // This file is auto-generated. Modifications won't be saved, be cool.
// EntitySet is a static database of MonoBehaviour classes that are considered a
// Entity, classes with '// !Gigas' somewhere in their file.
// Refresh with the menu item 'Tools/Gigas/Generate EntitySet.cs'
public static class EntitySet { } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.