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
fe7b4b9ff0fa5b5eff952661a6ffa4a4b2fd1abb
Fix order of methods in CompositeRangeExtensions.cs
Fix order of methods in CompositeRangeExtensions.cs
rsdn/CodeJam,rsdn/CodeJam
CodeJam.Main/Ranges/[RangeExtensions]/CompositeRangeExtensions.cs
mit
1,591,728,139
using System; using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; namespace CodeJam.Ranges { /// <summary>Extension methods for <see cref="CompositeRange{T}"/>.</summary> [PublicAPI] public static partial class CompositeRangeExtensions { #region ToCompositeRange /// <summary>Con...
using System; using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; namespace CodeJam.Ranges { /// <summary>Extension methods for <see cref="CompositeRange{T}"/>.</summary> [PublicAPI] public static partial class CompositeRangeExtensions { #region ToCompositeRange /// <summary>Con...
c9b4fa92f57b6c6023cbedb9c43aa846b1c7b855
Hide in-game cursor manually in the testbrowser
Hide in-game cursor manually in the testbrowser
peppy/osu,peppy/osu-new,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu
osu.Game.Tournament.Tests/TournamentTestBrowser.cs
mit
1,591,728,054
// 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.Testing; using osu.Game.Graphics; using osu.Game.Graphics.Backgrounds; namespace osu.Game.Tournament.Tests { public class TournamentTestBrowser :...
// 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.Testing; using osu.Game.Graphics; using osu.Game.Graphics.Backgrounds; namespace osu.Game.Tournament.Tests { public class TournamentTestBrowser :...
af05ee67cbe67e0577a9cdb8bad11aa01dbfd22a
move base.loadcomplete to the bottom
move base.loadcomplete to the bottom
ppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,smoogipooo/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu-new
osu.Game.Tournament/TournamentGame.cs
mit
1,591,727,415
// 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.Drawing; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Configuration; u...
// 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.Drawing; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Configuration; u...
daa07806441f62ac900fe9b5e356d7896b4b3b9d
Release 1.19.0.1
Release 1.19.0.1
chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck
Version.cs
mit
1,591,727,249
using System.Reflection; using Version = TweetDuck.Version; [assembly: AssemblyVersion(Version.Tag)] [assembly: AssemblyFileVersion(Version.Tag)] namespace TweetDuck{ internal static class Version{ public const string Tag = "1.19.0.1"; } }
using System.Reflection; using Version = TweetDuck.Version; [assembly: AssemblyVersion(Version.Tag)] [assembly: AssemblyFileVersion(Version.Tag)] namespace TweetDuck{ internal static class Version{ public const string Tag = "1.19"; } }
5be7c8e2fb0744519501b5fa514bbe62506f483f
Ensures Resharper does not hang Visual Studio
Ensures Resharper does not hang Visual Studio When VsChromium indexes a large project, and "Solution Explorer" is enabled, Resharper enumerates all entries (directories and files, recursively) shown in Solution Explorer. For large projects, there can be hundred of thousand directories, and even more files. Resharper ...
chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium
src/VsChromium/Features/SourceExplorerHierarchy/NodeViewModel.cs
bsd-3-clause
1,591,727,150
// Copyright 2015 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 Microsoft.VisualStudio; using Microsoft.VisualStudio.Shell.Interop; using System; using System.Collections.Generic; using System.Diagnostics...
// Copyright 2015 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 Microsoft.VisualStudio; using Microsoft.VisualStudio.Shell.Interop; using System; using System.Collections.Generic; using System.Drawing; u...
554a7c1d2a891ed8b6ca33c43bfab18f9f924045
make sure DateTimeField does not fail if the data reader returns a DateTimeOffset
make sure DateTimeField does not fail if the data reader returns a DateTimeOffset
volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity
Serenity.Data.Entity/FieldTypes/DateTimeField.cs
mit
1,591,726,868
using System; using System.Data; using System.Collections.Generic; using Newtonsoft.Json; using System.Globalization; #if COREFX using Newtonsoft.Json.Linq; #endif namespace Serenity.Data { public sealed class DateTimeField : GenericValueField<DateTime> { public DateTimeField(ICollection<...
using System; using System.Data; using System.Collections.Generic; using Newtonsoft.Json; using System.Globalization; #if COREFX using Newtonsoft.Json.Linq; #endif namespace Serenity.Data { public sealed class DateTimeField : GenericValueField<DateTime> { public DateTimeField(ICollection<...
40e7299de72a655d0c38da0cab5c60ecc747d90e
Fix of #1265 OracleException ORA-01704 string literal too long
Fix of #1265 OracleException ORA-01704 string literal too long
stsrki/fluentmigrator,stsrki/fluentmigrator,spaccabit/fluentmigrator,amroel/fluentmigrator,amroel/fluentmigrator,fluentmigrator/fluentmigrator,igitur/fluentmigrator,igitur/fluentmigrator,spaccabit/fluentmigrator,fluentmigrator/fluentmigrator
src/FluentMigrator.Runner.Oracle/Generators/Oracle/OracleQuoterBase.cs
apache-2.0
1,591,725,962
#region License // Copyright (c) 2018, FluentMigrator Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
#region License // Copyright (c) 2018, FluentMigrator Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
d561f898d257deb8aaed6a917062890fd94fb02f
add xmldoc
add xmldoc
ahdde/graphite.net
Graphite/CarbonConnectionPool.cs
mit
1,591,725,433
using System; using System.Collections.Concurrent; using System.IO; using System.Net.Sockets; using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.ObjectPool; namespace ahd.Graphite { public class CarbonConnectionPool { private readonly string _hostname; private rea...
using System; using System.Collections.Concurrent; using System.IO; using System.Net.Sockets; using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.ObjectPool; namespace ahd.Graphite { public class CarbonConnectionPool { private readonly string _hostname; private rea...
3203daf787fc797063b16eb04811f8a1f13cfadd
Remove PICSSemaphore
Remove PICSSemaphore It should be no longer needed
JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm
ArchiSteamFarm/Bot.cs
apache-2.0
1,591,724,712
// _ _ _ ____ _ _____ // / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ // / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ // / ___ \ | | | (__ | | | || | ___) || |_| __/| ...
// _ _ _ ____ _ _____ // / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ // / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ // / ___ \ | | | (__ | | | || | ___) || |_| __/| ...
eb4b74641451739e2fc8a1a8db65da522a84d6ed
Done DirectoryEntry api docs
Done DirectoryEntry api docs
CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos
source/Cosmos.System2/FileSystem/Listing/DirectoryEntry.cs
bsd-3-clause
1,591,724,701
using System; using System.IO; namespace Cosmos.System.FileSystem.Listing { /// <summary> /// Enumeration for the directory entry type. /// </summary> public enum DirectoryEntryTypeEnum { /// <summary> /// Directory /// </summary> Directory, /// <summary> ...
using System; using System.IO; namespace Cosmos.System.FileSystem.Listing { /// <summary> /// Enumeration for the directory entry type. /// </summary> public enum DirectoryEntryTypeEnum { /// <summary> /// Directory /// </summary> Directory, /// <summary> ...
8bac7ed9467546eac5e41dea6919b2e22fcb103e
Done FatSream api docs
Done FatSream api docs
CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos
source/Cosmos.System2/FileSystem/FAT/FatStream.cs
bsd-3-clause
1,591,724,332
//#define COSMOSDEBUG using System; using System.IO; using Cosmos.System.FileSystem.FAT.Listing; namespace Cosmos.System.FileSystem.FAT { /// <summary> /// FAT stream class. /// </summary> internal class FatStream : Stream { protected byte[] mReadBuffer; protected long? mReadBuff...
//#define COSMOSDEBUG using System; using System.IO; using Cosmos.System.FileSystem.FAT.Listing; namespace Cosmos.System.FileSystem.FAT { internal class FatStream : Stream { protected byte[] mReadBuffer; protected long? mReadBufferPosition; protected long mPosition; private...
21cdfc04c0f05faeead9ff25f0578c8e45972366
Dispose in array
Dispose in array
bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity
src/BugsnagUnity/Native/Android/NativeInterface.cs
mit
1,591,724,327
using System; using System.Collections.Generic; using System.Runtime.InteropServices; using BugsnagUnity.Payload; using UnityEngine; using System.Threading; using System.Text; namespace BugsnagUnity { class NativeInterface { private IntPtr BugsnagNativeInterface; private IntPtr BugsnagUnityClass; // Ca...
using System; using System.Collections.Generic; using System.Runtime.InteropServices; using BugsnagUnity.Payload; using UnityEngine; using System.Threading; using System.Text; namespace BugsnagUnity { class NativeInterface { private IntPtr BugsnagNativeInterface; private IntPtr BugsnagUnityClass; // Ca...
64f7f5a883468d5641b6ac8b5c1a25ed05158518
Unquarantine test that's not flaky anymore (#22664)
Unquarantine test that's not flaky anymore (#22664)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Servers/Kestrel/test/BindTests/AddressRegistrationTests.cs
apache-2.0
1,591,723,267
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System....
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System....
fe9ee4a56a93ed00d88d713442d1511e5c4dd88b
Little fix
Little fix
Vanaheimr/Styx
Styx/Illias/I18N/I18NString.cs
apache-2.0
1,591,723,117
/* * Copyright (c) 2010-2020 Achim 'ahzf' Friedland <achim.friedland@graphdefined.com> * This file is part of Illias <http://www.github.com/Vanaheimr/Illias> * * 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 c...
/* * Copyright (c) 2010-2020 Achim 'ahzf' Friedland <achim.friedland@graphdefined.com> * This file is part of Illias <http://www.github.com/Vanaheimr/Illias> * * 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 c...
8831f22f5fffed47088245ba3caaa5c4c6148de5
Add unit test
Add unit test
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs
mit
1,591,722,878
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 ...
6ec78c5866003e0136d3e2e18123feb7f6959172
increased the default poll time
increased the default poll time 500 should be enough with the averaging + layer smoothing. of course each user can increase / decrease this
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Settings/Configuration.cs
mit
1,591,721,676
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.IO; using System.Text; using Aurora.Profiles.Generic_Application; using Aurora.Profiles; using Newtonsoft.Json.Serialization; using Aurora.Utils; using System.Collections.ObjectModel; u...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.IO; using System.Text; using Aurora.Profiles.Generic_Application; using Aurora.Profiles; using Newtonsoft.Json.Serialization; using Aurora.Utils; using System.Collections.ObjectModel; u...
9d7b013420ce5734c210fc5e06c10b301b7daa7c
Upgraded ExpressionCompiler to the latest version
Upgraded ExpressionCompiler to the latest version
MassTransit/MassTransit,MassTransit/MassTransit,phatboyg/MassTransit,phatboyg/MassTransit,MassTransit/MassTransit,phatboyg/MassTransit
src/MassTransit/Internals/Reflection/ExpressionCompiler.cs
apache-2.0
1,591,721,613
// <auto-generated/> /* The MIT License (MIT) Copyright (c) 2016-2020 Maksim Volkau Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the r...
/* The MIT License (MIT) Copyright (c) 2016-2019 Maksim Volkau Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
f99f757793ba1afe47cba7a34ca6801f9f10ae1c
fix assertion comment
fix assertion comment
OBeautifulCode/OBeautifulCode.Reflection
OBeautifulCode.Reflection.Recipes.Test/AssemblyHelperTest.cs
mit
1,591,721,180
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="AssemblyHelperTest.cs" company="OBeautifulCode"> // Copyright (c) OBeautifulCode 2018. All rights reserved. // </copyright> // --------------------------------------------------...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="AssemblyHelperTest.cs" company="OBeautifulCode"> // Copyright (c) OBeautifulCode 2018. All rights reserved. // </copyright> // --------------------------------------------------...
f401e2673f4aef438a845c81e7ba43b04d993690
changed the way the sensor dump is made
changed the way the sensor dump is made
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Utils/HardwareMonitor.cs
mit
1,591,721,159
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Timers; using LibreHardwareMonitor.Hardware; using Computer = LibreHardwareMonitor.Hardware.Computer; namespace Aurora.Utils { public static class HardwareMonitor {...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Timers; using LibreHardwareMonitor.Hardware; using Computer = LibreHardwareMonitor.Hardware.Computer; namespace Aurora.Utils { public static class HardwareMonitor {...
649912f9dbdcc4ae24fa33c81c8dd847c9732e12
Add extra check on Bounds, only undo actual corrections.
Add extra check on Bounds, only undo actual corrections.
PenguinF/sandra-three
Eutherion/Win.MdiAppTemplate/MenuCaptionBarForm.cs
apache-2.0
1,591,721,029
#region License /********************************************************************************* * MenuCaptionBarForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
#region License /********************************************************************************* * MenuCaptionBarForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
89015db955513bfff3614c20e0e111401b919b76
Address self-review: Fixes FuturesMarginBuyingPowerModelTests
Address self-review: Fixes FuturesMarginBuyingPowerModelTests
jameschch/Lean,StefanoRaggi/Lean,QuantConnect/Lean,StefanoRaggi/Lean,AlexCatarino/Lean,StefanoRaggi/Lean,JKarathiya/Lean,jameschch/Lean,JKarathiya/Lean,jameschch/Lean,AlexCatarino/Lean,jameschch/Lean,QuantConnect/Lean,JKarathiya/Lean,QuantConnect/Lean,StefanoRaggi/Lean,AlexCatarino/Lean
Tests/Common/Securities/FutureMarginBuyingPowerModelTests.cs
apache-2.0
1,591,720,635
/* * 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...
8f3258be11b477e58fed2dcb5befa5ff7b056e97
Fixup AssignmentSat.cs
Fixup AssignmentSat.cs
google/or-tools,google/or-tools,or-tools/or-tools,or-tools/or-tools,google/or-tools,or-tools/or-tools,google/or-tools,or-tools/or-tools,or-tools/or-tools,google/or-tools,google/or-tools,or-tools/or-tools
ortools/sat/samples/AssignmentSat.cs
apache-2.0
1,591,720,547
// Copyright 2010-2018 Google LLC // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
// Copyright 2010-2018 Google LLC // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
83e2ec784d2953b4a01dbc8684bc23650974f0e5
Skip directories that cannot be enumerated
Skip directories that cannot be enumerated In some cases, for example when a junction point point to a file or an invalid directory, GetDirectoryEntries throws a Win32 exception "The directory name is invalid" (error code 267). VsChromium is not more resilient to this type of errors, and simply skip directories that ...
chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium
src/Server/FileSystem/Builder/ProjectRootSnapshotBuilder.cs
bsd-3-clause
1,591,720,207
// 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 System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Ta...
// 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 System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using VsC...
a4b69a30492b4ced7dc22b41609e900f5a246868
add auto number for payment.
add auto number for payment.
robertzml/Phoebe
Phoebe.Core/BL/PaymentBusiness.cs
mit
1,591,720,079
using System; using System.Collections.Generic; using System.Text; namespace Phoebe.Core.BL { using SqlSugar; using Phoebe.Base.Framework; using Phoebe.Core.Entity; using Phoebe.Core.Utility; /// <summary> /// 缴费业务类 /// </summary> public class PaymentBusiness : AbstractBusiness<Pa...
using System; using System.Collections.Generic; using System.Text; namespace Phoebe.Core.BL { using SqlSugar; using Phoebe.Base.Framework; using Phoebe.Core.Entity; using Phoebe.Core.Utility; /// <summary> /// 缴费业务类 /// </summary> public class PaymentBusiness : AbstractBusiness<Pa...
0d0ff14df85b2701f73ad67c74f4731bdfcae578
Done api docs of FatFileSystem
Done api docs of FatFileSystem
CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos
source/Cosmos.System2/FileSystem/FAT/FatFileSystem.cs
bsd-3-clause
1,591,719,691
//#define COSMOSDEBUG using System; using System.Collections.Generic; using Cosmos.Common.Extensions; using Cosmos.HAL.BlockDevice; using Cosmos.System.FileSystem.FAT.Listing; using Cosmos.System.FileSystem.Listing; namespace Cosmos.System.FileSystem.FAT { /// <summary> /// FatFileSystem class. /// </su...
//#define COSMOSDEBUG using System; using System.Collections.Generic; using Cosmos.Common.Extensions; using Cosmos.HAL.BlockDevice; using Cosmos.System.FileSystem.FAT.Listing; using Cosmos.System.FileSystem.Listing; namespace Cosmos.System.FileSystem.FAT { internal class FatFileSystem : FileSystem { ...
8d7861d94e097eb70d7ecd4d3913423f33a1e375
Added api docs to FileSystem
Added api docs to FileSystem
CosmosOS/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos
source/Cosmos.System2/FileSystem/FileSystem.cs
bsd-3-clause
1,591,719,662
using System; using System.Collections.Generic; using System.IO; using Cosmos.HAL.BlockDevice; using Cosmos.System.FileSystem.FAT; using Cosmos.System.FileSystem.Listing; namespace Cosmos.System.FileSystem { public abstract class FileSystem { /// <summary> /// Initializes a new instance of the...
using System; using System.Collections.Generic; using System.IO; using Cosmos.HAL.BlockDevice; using Cosmos.System.FileSystem.FAT; using Cosmos.System.FileSystem.Listing; namespace Cosmos.System.FileSystem { public abstract class FileSystem { protected FileSystem(Partition aDevice, string aRootPath, l...
3ae9ab633dadb52e7e993b7ca8e6fe8f56ad4873
Added api docs to FileSystemType
Added api docs to FileSystemType
zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos
source/Cosmos.System2/FileSystem/FileSystemType.cs
bsd-3-clause
1,591,719,614
namespace Cosmos.System.FileSystem { /// <summary> /// File system type. /// </summary> public enum FileSystemType { Unknown = 0, FAT, } }
namespace Cosmos.System.FileSystem { public enum FileSystemType { Unknown = 0, FAT, } }
1e343ee5c063ae059527bef95397dc6ce74aa16c
Make DefaultReflectionService.IsStringEnum virtual, closes #
Make DefaultReflectionService.IsStringEnum virtual, closes #
RSuter/NJsonSchema,NJsonSchema/NJsonSchema,NJsonSchema/NJsonSchema
src/NJsonSchema/Generation/DefaultReflectionService.cs
mit
1,591,719,270
//----------------------------------------------------------------------- // <copyright file="DefaultReflectionService.cs" company="NJsonSchema"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NJsonSchema/blob/master/LICENSE.md</license> // <author>Rico Su...
//----------------------------------------------------------------------- // <copyright file="DefaultReflectionService.cs" company="NJsonSchema"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NJsonSchema/blob/master/LICENSE.md</license> // <author>Rico Su...
f7d66e6f9d182a22bc6ea2889d32f193335d1e74
Eliminate IDE0060 warnings in SiteGenerator.Test library.
Eliminate IDE0060 warnings in SiteGenerator.Test library.
bsstahl/PPTail,bsstahl/PPTail
PrehensilePonyTail/PPTail.SiteGenerator.Test/Extensions.cs
mit
1,591,718,854
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using PPTail.Interfaces; using Moq; using PPTail.Entities; using TestHelperExtensions; using Microsoft.Extensions.DependencyInjection; using PPTail.Enumerations; namespace PPTail.SiteGenerator.Test { public static cla...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using PPTail.Interfaces; using Moq; using PPTail.Entities; using TestHelperExtensions; using Microsoft.Extensions.DependencyInjection; using PPTail.Enumerations; namespace PPTail.SiteGenerator.Test { public static cla...
ade9623f8ec04a764ba9e7816e39f38e9096bbfb
Fix - Cancellazione squadra quando torna in sede
Fix - Cancellazione squadra quando torna in sede
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Persistence.MongoDB/GestioneStatoSquadra/SetStatoSquadra.cs
agpl-3.0
1,591,717,745
//----------------------------------------------------------------------- // <copyright file="SetStatoSquadra.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 Public Lice...
//----------------------------------------------------------------------- // <copyright file="SetStatoSquadra.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 Public Lice...
aae15779d3e7defb5e3d90cf454c95b857035daf
Ta med expired modules i exporten. Här borde vi kolla på checkboxen vid export!
Ta med expired modules i exporten. Här borde vi kolla på checkboxen vid export!
erlingsjostrom/TSS,erlingsjostrom/TSS
TESS/Controllers/Reports/CustomerProductReportController.cs
mit
1,591,717,006
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using TietoCRM.Models; using Rotativa.Core; using Rotativa.MVC; using System.Security.Principal; using System.Web.Script.Serialization; using TietoCRM.Extensions; using System.Text; using System.IO; ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using TietoCRM.Models; using Rotativa.Core; using Rotativa.MVC; using System.Security.Principal; using System.Web.Script.Serialization; using TietoCRM.Extensions; using System.Text; using System.IO; ...
493dea0308b4197d022c67116529d94d345d8785
Misc: Stop sending image generation exceptions to sentry
Misc: Stop sending image generation exceptions to sentry
Piotrekol/StreamCompanion,Piotrekol/StreamCompanion
plugins/BackgroundImageProvider/BackgroundImageProviderPlugin.cs
mit
1,591,715,985
using System; using System.IO; using System.Runtime.InteropServices; using StreamCompanionTypes.DataTypes; using StreamCompanionTypes.Enums; using StreamCompanionTypes.Interfaces; using StreamCompanionTypes.Interfaces.Services; using StreamCompanionTypes.Interfaces.Sources; namespace BackgroundImageProvider { publ...
using System; using System.IO; using System.Runtime.InteropServices; using StreamCompanionTypes.DataTypes; using StreamCompanionTypes.Enums; using StreamCompanionTypes.Interfaces; using StreamCompanionTypes.Interfaces.Services; using StreamCompanionTypes.Interfaces.Sources; namespace BackgroundImageProvider { publ...
3e332172d66fefdae5462e1f43a815b0c1fd28d1
Fix: Exceptions being sent to sentry as plain strings
Fix: Exceptions being sent to sentry as plain strings send help
Piotrekol/StreamCompanion,Piotrekol/StreamCompanion
osu!StreamCompanion/Code/Core/Loggers/MainLogger.cs
mit
1,591,715,940
using System; using System.Collections.Generic; using osu_StreamCompanion.Code.Helpers; using StreamCompanionTypes.Enums; using StreamCompanionTypes.Interfaces.Services; namespace osu_StreamCompanion.Code.Core.Loggers { internal class MainLogger : IContextAwareLogger { public static MainLogger Instanc...
using System; using System.Collections.Generic; using osu_StreamCompanion.Code.Helpers; using StreamCompanionTypes.Enums; using StreamCompanionTypes.Interfaces.Services; namespace osu_StreamCompanion.Code.Core.Loggers { internal class MainLogger : IContextAwareLogger { public static MainLogger Instanc...
24680bcbf8905e326c9b1c4c1dca17734a8eea09
Misc: Remove logging of skinPath exception
Misc: Remove logging of skinPath exception
Piotrekol/StreamCompanion,Piotrekol/StreamCompanion
plugins/OsuMemoryEventSource/MemoryDataProcessor.cs
mit
1,591,715,841
using CollectionManager.Enums; using OsuMemoryDataProvider; using PpCalculator; using StreamCompanionTypes; using StreamCompanionTypes.DataTypes; using StreamCompanionTypes.Enums; using StreamCompanionTypes.Interfaces; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Thre...
using CollectionManager.Enums; using OsuMemoryDataProvider; using PpCalculator; using StreamCompanionTypes; using StreamCompanionTypes.DataTypes; using StreamCompanionTypes.Enums; using StreamCompanionTypes.Interfaces; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Thre...
880a1272288d04cf7eea92b94b39ca7037375e48
Use async overload
Use async overload
ppy/osu,smoogipooo/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,ppy/osu,UselessToucan/osu,peppy/osu-new,smoogipoo/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu
osu.Game.Tests/Beatmaps/IO/ImportBeatmapTest.cs
mit
1,591,715,328
// 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.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using NUnit.Framework; using os...
// 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.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using NUnit.Framework; using os...
7926e223de92c2bada3e4f69d61620c402a3e827
Remove unnecessary this.RaisePropertyChanged()
Remove unnecessary this.RaisePropertyChanged()
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/SendControlViewModel.cs
mit
1,591,715,267
using Avalonia.Input; using NBitcoin; using NBitcoin.Payment; using ReactiveUI; using Splat; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Reactive; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Security; using System.Text.RegularExp...
using Avalonia.Input; using NBitcoin; using NBitcoin.Payment; using ReactiveUI; using Splat; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Reactive; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Security; using System.Text.RegularExp...
90e6db99fe58819a6f29df78978dcc93fc274f55
Remove GetBaseHandshakeForContext (#5404)
Remove GetBaseHandshakeForContext (#5404) Private method no longer used.
mono/msbuild,rainersigwald/msbuild,rainersigwald/msbuild,AndyGerlicher/msbuild,cdmihai/msbuild,sean-gilliam/msbuild,cdmihai/msbuild,sean-gilliam/msbuild,mono/msbuild,cdmihai/msbuild,cdmihai/msbuild,rainersigwald/msbuild,cdmihai/msbuild,AndyGerlicher/msbuild,mono/msbuild,AndyGerlicher/msbuild,sean-gilliam/msbuild,AndyGe...
src/Shared/CommunicationsUtilities.cs
mit
1,591,715,137
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.IO.Pipes; using System.Runtime.Inte...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.IO.Pipes; using System.Runtime.Inte...
5379faccca7552cab926ba8413420ddfa5e77566
:art: prefix verbose logging with debug: to make it easier to distinguish
:art: prefix verbose logging with debug: to make it easier to distinguish
fluffynuts/PeanutButter,fluffynuts/PeanutButter,fluffynuts/PeanutButter,fluffynuts/PeanutButter
source/TempDb/PeanutButter.TempDb.Runner/TempDbFactory.cs
bsd-3-clause
1,591,714,804
using System; using System.Collections.Generic; using System.Linq; using PeanutButter.TempDb.LocalDb; using PeanutButter.TempDb.MySql.Base; using PeanutButter.TempDb.MySql.Connector; using PeanutButter.TempDb.Sqlite; namespace PeanutButter.TempDb.Runner { public static class TempDbFactory { public stat...
using System; using System.Collections.Generic; using System.Linq; using PeanutButter.TempDb.LocalDb; using PeanutButter.TempDb.MySql.Base; using PeanutButter.TempDb.MySql.Connector; using PeanutButter.TempDb.Sqlite; namespace PeanutButter.TempDb.Runner { public static class TempDbFactory { public stat...
9be016b0b82bb4858076837d0772544d30c89b0b
Updates for June release
Updates for June release
OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core
Core/OfficeDevPnP.Core/Properties/AssemblyInfo.cs
mit
1,591,714,487
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [asse...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [asse...
0561e66b7fd6f19be2978d0548ba2ece5547d0e5
Fix authenticationmanager dispose logic
Fix authenticationmanager dispose logic
OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core
Core/OfficeDevPnP.Core/AuthenticationManager.cs
mit
1,591,714,403
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; using System.Security; using System.Security.Cryptography.X509Certificates; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; #if !NETSTANDARD2_0 using System.Windo...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; using System.Security; using System.Security.Cryptography.X509Certificates; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; #if !NETSTANDARD2_0 using System.Windo...
9aae602a646e39ced43e5bd0ec50723ee685ece9
Add a constants class containing the authentication method references defined by RFC8176
Add a constants class containing the authentication method references defined by RFC8176
openiddict/core,openiddict/openiddict-core,openiddict/openiddict-core,openiddict/core,openiddict/openiddict-core,openiddict/core,openiddict/openiddict-core,openiddict/openiddict-core
src/OpenIddict.Abstractions/OpenIddictConstants.cs
apache-2.0
1,591,714,007
/* * Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) * See https://github.com/openiddict/openiddict-core for more information concerning * the license and the contributors participating to this project. */ namespace OpenIddict.Abstractions { public static class Open...
/* * Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) * See https://github.com/openiddict/openiddict-core for more information concerning * the license and the contributors participating to this project. */ namespace OpenIddict.Abstractions { public static class Open...
f91a151898df0bd651586bebfc08c1afc5feea3a
Fixed Dispose to be available for .NET Standard
Fixed Dispose to be available for .NET Standard
OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core
Core/OfficeDevPnP.Core/AuthenticationManager.cs
mit
1,591,713,519
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; using System.Security; using System.Security.Cryptography.X509Certificates; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; #if !NETSTANDARD2_0 using System.Windo...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; using System.Security; using System.Security.Cryptography.X509Certificates; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; #if !NETSTANDARD2_0 using System.Windo...
5d0c9dc00a13c4eacec28ab6d046f090ec2d7f79
Handle namespace suggestions for external packages
Handle namespace suggestions for external packages Works for packages that live at the root of a Unity solution, but doesn't work for packages external to the solution. External files are added to a project with a full path, and Rider will find the common ancestor folder and create a linked folder. This isn't included...
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Settings/NamespaceProviderProjectSettingsProvider.cs
apache-2.0
1,591,713,392
using System; using System.Collections.Generic; using System.Linq.Expressions; using JetBrains.Annotations; using JetBrains.Application.Settings; using JetBrains.Application.Settings.Implementation; using JetBrains.Lifetimes; using JetBrains.ProjectModel; using JetBrains.ReSharper.Daemon; using JetBrains.Util; namespa...
using System; using System.Collections.Generic; using System.Linq.Expressions; using JetBrains.Annotations; using JetBrains.Application.Settings; using JetBrains.Application.Settings.Implementation; using JetBrains.Lifetimes; using JetBrains.ProjectModel; using JetBrains.ReSharper.Daemon; using JetBrains.Util; namespa...
72bce996bfff603aaf75796b8a68a346a9c0994a
Fix crash on double cancel
Fix crash on double cancel
jamesmontemagno/MediaPlugin
src/Media.Plugin/iOS/MediaPickerDelegate.cs
mit
1,591,713,342
using System; using System.IO; using System.Threading.Tasks; using Plugin.Media.Abstractions; using CoreGraphics; using AssetsLibrary; using Foundation; using UIKit; using NSAction = System.Action; using ImageIO; using MobileCoreServices; using System.Collections.Generic; using System.Threading; using System.Diagnost...
using System; using System.IO; using System.Threading.Tasks; using Plugin.Media.Abstractions; using CoreGraphics; using AssetsLibrary; using Foundation; using UIKit; using NSAction = System.Action; using ImageIO; using MobileCoreServices; using System.Collections.Generic; using System.Threading; using System.Diagnost...
dab423419bcb39c24f951f1123dd791e94243515
型変換後の変数名が重複するため、if文をswitch文に変更
型変換後の変数名が重複するため、if文をswitch文に変更
zenuas/Roku,zenuas/Roku
src/Compiler/Typing.cs
mit
1,591,713,050
using Extensions; using Roku.IntermediateCode; using Roku.Manager; using System; using System.Collections.Generic; namespace Roku.Compiler { public static class Typing { public static void TypeInference(SourceCodeBody src) { var srcs = Lookup.AllPrograms(src).ToList(); ...
using Extensions; using Roku.IntermediateCode; using Roku.Manager; using System; using System.Collections.Generic; namespace Roku.Compiler { public static class Typing { public static void TypeInference(SourceCodeBody src) { var srcs = Lookup.AllPrograms(src).ToList(); ...
08e3f51810729c6b06c7b4596547c8aa410e3273
Test commit for 4.1 TC Boltkit 4.1 issues.
Test commit for 4.1 TC Boltkit 4.1 issues.
neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver,neo4j/neo4j-dotnet-driver
Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/StandAlone/StandAlone.cs
apache-2.0
1,591,712,927
// 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...
cdb3893fdb08741a2338adb289b28e26f1c775fb
Fixed bug with entity component amount not being cleaned 🚧
Fixed bug with entity component amount not being cleaned 🚧
dimmpixeye/Unity3dTools
Runtime/LibProcessors/ProcessorEcs.cs
mit
1,591,712,461
using System; using System.Collections.Generic; using System.Runtime.CompilerServices; using Unity.Collections.LowLevel.Unsafe; using Unity.IL2CPP.CompilerServices; namespace Pixeye.Actors { [Il2CppSetOption(Option.NullChecks, false)] [Il2CppSetOption(Option.ArrayBoundsChecks, false)] [Il2CppSetOption(Option.Di...
using System; using System.Collections.Generic; using System.Runtime.CompilerServices; using Unity.Collections.LowLevel.Unsafe; using Unity.IL2CPP.CompilerServices; namespace Pixeye.Actors { [Il2CppSetOption(Option.NullChecks, false)] [Il2CppSetOption(Option.ArrayBoundsChecks, false)] [Il2CppSetOption(Option.Di...
15ef1fe3868a4e1247ee71864097e2093afd5182
another temporary fix for failing test in mono
another temporary fix for failing test in mono
rdingwall/protobuf-net-data
test/protobuf-net-data.Tests/AfterCloseTests.cs
apache-2.0
1,591,712,435
// Copyright (c) Richard Dingwall, Arjen Post. See LICENSE in the project root for license information. using System; using System.Data; using System.IO; using System.Reflection; using Xunit; namespace ProtoBuf.Data.Tests { public class AfterCloseTests { public class When_the_reader_has_been_closed : ...
// Copyright (c) Richard Dingwall, Arjen Post. See LICENSE in the project root for license information. using System; using System.Data; using System.IO; using System.Reflection; using Xunit; namespace ProtoBuf.Data.Tests { public class AfterCloseTests { public class When_the_reader_has_been_closed : ...
f87cdc27fb0bb477f91855e668e4b1e96c2ccc21
Fix Messaging test
Fix Messaging test
quartz-software/kephas,quartz-software/kephas,quartz-software/kephas
src/Tests/Kephas.Commands.Messaging.Tests/Reflection/MessageOperationInfoTest.cs
mit
1,591,712,311
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="MessageOperationInfoTest.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICENSE file in t...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="MessageOperationInfoTest.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICENSE file in t...
c3bbdc67e30963a1d97cd5cf5c9460f1cf1e7038
Remove unused usings
Remove unused usings
z4kn4fein/stashbox
src/Expressions/Compile/TreeAnalyzer.cs
mit
1,591,711,229
#if IL_EMIT using Stashbox.Utils; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; namespace Stashbox.Expressions.Compile { internal class TreeAnalyzer { private bool isNestedLambda; public ExpandableArray<Expression> CapturedParameters; public Expa...
#if IL_EMIT using Stashbox.Utils; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Stashbox.Expressions.Compile { internal class TreeAnalyzer { private bool isNestedLambda; public ExpandableArray<Expression> C...
cfc6640d1e1a6608f2b76e790f38b75e3567bcdf
Added any mime content type.
Added any mime content type.
PaulKolozsvari/Figlut-Suite,PaulKolozsvari/Figlut-Suite,PaulKolozsvari/Figlut-Suite,PaulKolozsvari/Figlut-Suite,PaulKolozsvari/Figlut-Suite
source/trunk/Windows/Figlut.Server.Toolkit.45/Web/MimeContentType.cs
mit
1,591,710,836
namespace Figlut.Server.Toolkit.Web { #region Using Directives using System; using System.Collections.Generic; using System.Linq; using System.Text; #endregion //Using Directives /// <summary> /// MIME Content Types: http://webdesign.about.com/od/multimedia/a/mime-types-by-content-ty...
namespace Figlut.Server.Toolkit.Web { #region Using Directives using System; using System.Collections.Generic; using System.Linq; using System.Text; #endregion //Using Directives /// <summary> /// MIME Content Types: http://webdesign.about.com/od/multimedia/a/mime-types-by-content-ty...
c4f752e5506f554992f67089979c7123f496eb45
Minimal reference leak fixes
Minimal reference leak fixes
bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity
src/BugsnagUnity/Native/Android/NativeInterface.cs
mit
1,591,710,811
using System; using System.Collections.Generic; using System.Runtime.InteropServices; using BugsnagUnity.Payload; using UnityEngine; using System.Threading; using System.Text; namespace BugsnagUnity { class NativeInterface { private IntPtr BugsnagNativeInterface; private IntPtr BugsnagUnityClass; // Ca...
using System; using System.Collections.Generic; using System.Runtime.InteropServices; using BugsnagUnity.Payload; using UnityEngine; using System.Threading; using System.Text; namespace BugsnagUnity { class NativeInterface { private IntPtr BugsnagNativeInterface; private IntPtr BugsnagUnityClass; // Ca...
b4a92ebd77f15581a351c8dfdd0eebf7edd978b0
Added the expected result to the unit test
Added the expected result to the unit test
jstedfast/MimeKit,jstedfast/MimeKit,jstedfast/MimeKit
UnitTests/Text/TextToFlowedTests.cs
mit
1,591,709,491
// // TextToFlowedTests.cs // // Author: Jeffrey Stedfast <jestedfa@microsoft.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 documentation files (the "Software"), to deal // in the S...
// // TextToFlowedTests.cs // // Author: Jeffrey Stedfast <jestedfa@microsoft.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 documentation files (the "Software"), to deal // in the S...
9e2656e61f98de6ec1ca72850288d497be5a37ad
add EntityJsonConverter.CustomConstructor to allow Constructor Operation setting properties with no write permission for the current role
add EntityJsonConverter.CustomConstructor to allow Constructor Operation setting properties with no write permission for the current role
AlejandroCano/framework,AlejandroCano/framework,AlejandroCano/framework,signumsoftware/framework,signumsoftware/framework,signumsoftware/framework
Signum.React/JsonConverters/EntityJsonConverter.cs
mit
1,591,709,467
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Controllers; using Newtonsoft.Json; using Signum.Engine; using Signum.Engine.Basics; using Signum.Engine.Maps; using Signum.Entities; using Signum.Entities.Reflection; using Signum.React.Facades; using Signum.React.Filters; using Signum.Utilities...
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Controllers; using Newtonsoft.Json; using Signum.Engine; using Signum.Engine.Basics; using Signum.Engine.Maps; using Signum.Entities; using Signum.Entities.Reflection; using Signum.React.Facades; using Signum.React.Filters; using Signum.Utilities...
578a23058aef8599547ef913432f9888554a2283
Added the start of a unit test for issue #580
Added the start of a unit test for issue #580
jstedfast/MimeKit,jstedfast/MimeKit,jstedfast/MimeKit
UnitTests/Text/TextToFlowedTests.cs
mit
1,591,708,528
// // TextToFlowedTests.cs // // Author: Jeffrey Stedfast <jestedfa@microsoft.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 documentation files (the "Software"), to deal // in the S...
// // TextToFlowedTests.cs // // Author: Jeffrey Stedfast <jestedfa@microsoft.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 documentation files (the "Software"), to deal // in the S...
e6ba11f552e399f0686bbdd1fc7e654e80a379de
Use AsNonNull()
Use AsNonNull()
EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-fr...
osu.Framework/Configuration/IniConfigManager.cs
mit
1,591,708,175
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using osu.Framework.Bindables; using osu.Framework.Extensions.ObjectExtensions; using osu.Framework.Logg...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using osu.Framework.Bindables; using osu.Framework.Logging; using osu.Framewor...
d17f601f48c16f88136795212153c855de6ab572
New clientlib ver
New clientlib ver
kaltura/KalturaGeneratedAPIClientsCsharp
KalturaClient/Client.cs
agpl-3.0
1,591,707,825
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
// =================================================================================================== // _ __ _ _ // | |/ /__ _| | |_ _ _ _ _ __ _ // | ' </ _` | | _| || | '_/ _` | // |_|\_\__,_|_|\__|\_,_|_| \_...
b5a0712e2140323f6578d7bb3a77d23eb2c29dd3
Revert "Make code input options for eval mutually exclusive"
Revert "Make code input options for eval mutually exclusive" This reverts commit c9df2348a164b7fb4fafae325854620f670149fa.
filipw/dotnet-script,filipw/dotnet-script,filipw/dotnet-script
src/Dotnet.Script/Program.cs
mit
1,591,707,713
using Dotnet.Script.Core; using Dotnet.Script.Core.Commands; using Dotnet.Script.Core.Versioning; using Dotnet.Script.DependencyModel.Environment; using Dotnet.Script.DependencyModel.Logging; using McMaster.Extensions.CommandLineUtils; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Scripting; using Microsof...
using Dotnet.Script.Core; using Dotnet.Script.Core.Commands; using Dotnet.Script.Core.Versioning; using Dotnet.Script.DependencyModel.Environment; using Dotnet.Script.DependencyModel.Logging; using McMaster.Extensions.CommandLineUtils; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Scripting; using Microsof...
5047f790b8a18fb4e8539f0bce9bd414a6c2e14d
Better xpath...
Better xpath...
ITCompaniet/ITCO-SBO-Addon-Framework
src/ITCO.SboAddon.Framework/Extensions/BusinessObjectInfoExtentions.cs
mit
1,591,706,180
using System; using System.Xml; using SAPbobsCOM; using SAPbouiCOM; using ITCO.SboAddon.Framework.Queries; namespace ITCO.SboAddon.Framework.Extensions { /// <summary> /// Extension functions for BusinessObjects /// </summary> public static class BusinessObjectInfoExtentions { /// <summary...
using System; using System.Xml; using SAPbobsCOM; using SAPbouiCOM; using ITCO.SboAddon.Framework.Queries; namespace ITCO.SboAddon.Framework.Extensions { /// <summary> /// Extension functions for BusinessObjects /// </summary> public static class BusinessObjectInfoExtentions { /// <summary...
cf2d1d4a77c413d51047b1cd4130457345da1f61
Register new component ignores on client
Register new component ignores on client
space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14
Content.Client/EntryPoint.cs
mit
1,591,704,761
using System; using Content.Client.GameObjects.Components.Actor; using Content.Client.Input; using Content.Client.Interfaces; using Content.Client.Interfaces.Chat; using Content.Client.Interfaces.Parallax; using Content.Client.Parallax; using Content.Client.Sandbox; using Content.Client.State; using Content.Client.Use...
using System; using Content.Client.GameObjects.Components.Actor; using Content.Client.Input; using Content.Client.Interfaces; using Content.Client.Interfaces.Chat; using Content.Client.Interfaces.Parallax; using Content.Client.Parallax; using Content.Client.Sandbox; using Content.Client.State; using Content.Client.Use...
f0847d4736ce0a95f4a46a133ca43603988fe8a7
Simply adding virtual attribute to the *EmailConfirmedAsync methods to allow them to be overriden
Simply adding virtual attribute to the *EmailConfirmedAsync methods to allow them to be overriden
Shazwazza/UmbracoIdentity,Shazwazza/UmbracoIdentity,Shazwazza/UmbracoIdentity
src/UmbracoIdentity/UmbracoMembersUserStore.cs
mit
1,591,704,495
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Linq; using System.Threading.Tasks; using System.Web.Security; using Microsoft.AspNet.Identity; using Umbraco.Core; using Umbraco.Core.Logging; using Umbraco.Core.Models; using Umbraco.Core.Services; u...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Linq; using System.Threading.Tasks; using System.Web.Security; using Microsoft.AspNet.Identity; using Umbraco.Core; using Umbraco.Core.Logging; using Umbraco.Core.Models; using Umbraco.Core.Services; u...
e1e4bca686b16d7b7f22cf7e0f1dd75034c0b2eb
Fix resource hash for code mirror css (#6384)
Fix resource hash for code mirror css (#6384)
stevetayloruk/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,petedavis/Orcha...
src/OrchardCore.Modules/OrchardCore.Resources/ResourceManifest.cs
bsd-3-clause
1,591,703,669
using OrchardCore.ResourceManagement; namespace OrchardCore.Resources { public class ResourceManifest : IResourceManifestProvider { public void BuildManifests(IResourceManifestBuilder builder) { var manifest = builder.Add(); manifest .DefineScript("jQuer...
using OrchardCore.ResourceManagement; namespace OrchardCore.Resources { public class ResourceManifest : IResourceManifestProvider { public void BuildManifests(IResourceManifestBuilder builder) { var manifest = builder.Add(); manifest .DefineScript("jQuer...
bd10937bc4db93a71aab58699a2f9d75d71dfcc8
AbsoluteEntry added as "synonyme" of DocEntry...
AbsoluteEntry added as "synonyme" of DocEntry...
ITCompaniet/ITCO-SBO-Addon-Framework
src/ITCO.SboAddon.Framework/Extensions/BusinessObjectInfoExtentions.cs
mit
1,591,703,438
using System; using System.Xml; using SAPbobsCOM; using SAPbouiCOM; using ITCO.SboAddon.Framework.Queries; namespace ITCO.SboAddon.Framework.Extensions { /// <summary> /// Extension functions for BusinessObjects /// </summary> public static class BusinessObjectInfoExtentions { /// <summary...
using System; using System.Xml; using SAPbobsCOM; using SAPbouiCOM; using ITCO.SboAddon.Framework.Queries; namespace ITCO.SboAddon.Framework.Extensions { /// <summary> /// Extension functions for BusinessObjects /// </summary> public static class BusinessObjectInfoExtentions { /// <summary...
0972c7a3e4b6f660c950b3149ee083c2dfde4eb2
Fix incorrect statistic name
Fix incorrect statistic name
ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framewo...
osu.Framework/Statistics/DotNetRuntimeListener.cs
mit
1,591,701,101
// 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.Diagnostics.Tracing; namespace osu.Framework.Statistics { // https://medium.com/criteo-labs/c-in-process-clr-event-listeners-with-net-core-2-2-ef4075c14...
// 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.Diagnostics.Tracing; namespace osu.Framework.Statistics { // https://medium.com/criteo-labs/c-in-process-clr-event-listeners-with-net-core-2-2-ef4075c14...
4eb25c6b34f7c6585d3215c879b6ebd6cbc56c41
Remove unused using
Remove unused using
EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,ppy/osu-framework,smo...
osu.Framework/Statistics/DotNetRuntimeListener.cs
mit
1,591,701,063
// 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.Diagnostics.Tracing; namespace osu.Framework.Statistics { // https://medium.com/criteo-labs/c-in-process-clr-event-listeners-with-net-core-2-2-ef4075c14...
// 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.Diagnostics; using System.Diagnostics.Tracing; namespace osu.Framework.Statistics { // https://medium.com/criteo-labs/c-in-process-clr-event-listeners-w...
8713276025433bc7577492ced7ac427046ea2df9
Issue181_TryEmitIncDecAssign_InvalidCastException 2
Issue181_TryEmitIncDecAssign_InvalidCastException 2
dadhi/FastExpressionCompiler,dadhi/FastExpressionCompiler
test/FastExpressionCompiler.TestsRunner/Program.cs
mit
1,591,701,015
using System; using System.Diagnostics; using FastExpressionCompiler.IssueTests; namespace FastExpressionCompiler.UnitTests { public class Program { public static void Main() { var failed = false; var totalTestPassed = 0; void Run(Func<int> run, string name ...
using System; using System.Diagnostics; using FastExpressionCompiler.IssueTests; namespace FastExpressionCompiler.UnitTests { public class Program { public static void Main() { var failed = false; var totalTestPassed = 0; void Run(Func<int> run, string name ...
e1a5bfa16d84d33af925a018a221c5ecb6781d08
Fix - Corretta la gestione dei flag "Rilevante" e "Rilevante Storico Artistico"
Fix - Corretta la gestione dei flag "Rilevante" e "Rilevante Storico Artistico"
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/UpDateIntervento/UpDateInterventoCommandHandler.cs
agpl-3.0
1,591,700,531
//----------------------------------------------------------------------- // <copyright file="UpDateInterventoCommandHandler.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 Gene...
//----------------------------------------------------------------------- // <copyright file="UpDateInterventoCommandHandler.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 Gene...
093923ab73220bdbe88751af09f854bd6e7b3190
convert to CompileFast(true)
convert to CompileFast(true)
dadhi/FastExpressionCompiler,dadhi/FastExpressionCompiler
test/FastExpressionCompiler.IssueTests/Issue159_NumericConversions.cs
mit
1,591,700,221
using System; using System.Reflection; using System.Reflection.Emit; using NUnit.Framework; #if LIGHT_EXPRESSION using static FastExpressionCompiler.LightExpression.Expression; namespace FastExpressionCompiler.LightExpression.IssueTests #else using static System.Linq.Expressions.Expression; namespace FastExpressionCo...
using System; using System.Reflection; using System.Reflection.Emit; using NUnit.Framework; #if LIGHT_EXPRESSION using static FastExpressionCompiler.LightExpression.Expression; namespace FastExpressionCompiler.LightExpression.IssueTests #else using static System.Linq.Expressions.Expression; namespace FastExpressionCo...
1788f878b88d8467053db5b0a4a7f2a7a4635d36
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,591,699,876
#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-...
bf10c979af3973e72c2fdbe6f93fa2eb52bdb683
Fix - PresaInCarico
Fix - PresaInCarico
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CustomMapper/MapperRichiestaAssistenzaSuSintesi.cs
agpl-3.0
1,591,699,717
using AutoMapper; using SO115App.API.Models.Classi.Condivise; using SO115App.API.Models.Classi.Soccorso; using SO115App.API.Models.Classi.Soccorso.Eventi; using SO115App.API.Models.Classi.Soccorso.Eventi.Segnalazioni; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; us...
using AutoMapper; using SO115App.API.Models.Classi.Condivise; using SO115App.API.Models.Classi.Soccorso; using SO115App.API.Models.Classi.Soccorso.Eventi; using SO115App.API.Models.Classi.Soccorso.Eventi.Segnalazioni; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; us...
42413085100043e1d97a80bd9cb36dece3669e8a
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,591,699,649
#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-...
d7bcd431b86b9e2c6793f99e730c47772184bec7
Fix - Pulizia codice
Fix - Pulizia codice
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/InserimentoIntervento/AddInterventoCommandHandler.cs
agpl-3.0
1,591,698,684
//----------------------------------------------------------------------- // <copyright file="AddInterventoCommandHandler.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="AddInterventoCommandHandler.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...
bbbe8d2cb1ac0bf723c68851c6ed9d0fc0ca3f87
Fix throw controller not handling deleted thrown stuff (#1097)
Fix throw controller not handling deleted thrown stuff (#1097)
space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14
Content.Shared/Physics/ThrowController.cs
mit
1,591,698,546
using Robust.Shared.Interfaces.Physics; using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Physics; using Robust.Shared.Timers; namespace Content.Shared.Physics { public class ThrowController: VirtualController { private float _throwTime; private SharedPhysicsComponent _com...
using Robust.Shared.Interfaces.Physics; using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Physics; using Robust.Shared.Timers; namespace Content.Shared.Physics { public class ThrowController: VirtualController { private float _throwTime; private SharedPhysicsComponent _com...
0854143996280965ce59568e01ce7dce3eab3bfa
final changes
final changes
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Doors/InteractableDoor.cs
agpl-3.0
1,591,698,101
using System.Collections; using UnityEngine; using Mirror; using System; /// <summary> /// Allows a door to be interacted with. /// It also checks for access restrictions on the players ID card /// </summary> public class InteractableDoor : NetworkBehaviour, IPredictedCheckedInteractable<HandApply> { private...
using System.Collections; using UnityEngine; using Mirror; using System; /// <summary> /// Allows a door to be interacted with. /// It also checks for access restrictions on the players ID card /// </summary> public class InteractableDoor : NetworkBehaviour, IPredictedCheckedInteractable<HandApply> { private...
f3f9193eec6748a67fe99a74d216c234027799eb
Fix - Aggiunto Evento AnnullamentoPresaInCarico nella lista eventi
Fix - Aggiunto Evento AnnullamentoPresaInCarico nella lista eventi
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Queries/GestioneSoccorso/ListaEventi/ListaEventiQueryHandler.cs
agpl-3.0
1,591,697,872
//----------------------------------------------------------------------- // <copyright file="ListaEventiQueryHandler.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 Pub...
//----------------------------------------------------------------------- // <copyright file="ListaEventiQueryHandler.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 Pub...
62912bbb7a2ff2d82fb754f3e1f95e2508a90301
Fix - Corretto Mapping PresaInCarico
Fix - Corretto Mapping PresaInCarico
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CustomMapper/MapperRichiestaAssistenzaSuSintesi.cs
agpl-3.0
1,591,696,951
using AutoMapper; using SO115App.API.Models.Classi.Condivise; using SO115App.API.Models.Classi.Soccorso; using SO115App.API.Models.Classi.Soccorso.Eventi; using SO115App.API.Models.Classi.Soccorso.Eventi.Segnalazioni; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; us...
using AutoMapper; using SO115App.API.Models.Classi.Condivise; using SO115App.API.Models.Classi.Soccorso; using SO115App.API.Models.Classi.Soccorso.Eventi; using SO115App.API.Models.Classi.Soccorso.Eventi.Segnalazioni; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; us...
6f0ca09b1d1027c193f90d5df22e5d5e2dea532e
Updated traits to be class level
Updated traits to be class level
eShopWorld/Esw.UnitTest.Common,eShopWorld/devopsflex-testscore,eShopWorld/Esw.UnitTest.Common,eShopWorld/devopsflex-testscore
src/Eshopworld.Tests.Core/xUnitTraitExtensions.cs
mit
1,591,696,822
namespace Eshopworld.Tests.Core { using System; using System.Collections.Generic; using System.Linq; using Xunit.Abstractions; using Xunit.Sdk; /// <summary> /// Decorates a test as a Unit Test, so that it runs in Continuous Integration builds. /// </summary> public sealed class Is...
namespace Eshopworld.Tests.Core { using System; using System.Collections.Generic; using System.Linq; using Xunit.Abstractions; using Xunit.Sdk; /// <summary> /// Decorates a test as a Unit Test, so that it runs in Continuous Integration builds. /// </summary> public sealed class Is...
de0e7e9369c746514d9a3d9c66b5c4fbb9668be3
replace more stuff
replace more stuff
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Doors/InteractableDoor.cs
agpl-3.0
1,591,696,578
using System.Collections; using UnityEngine; using Mirror; using System; /// <summary> /// Allows a door to be interacted with. /// It also checks for access restrictions on the players ID card /// </summary> public class InteractableDoor : NetworkBehaviour, IPredictedCheckedInteractable<HandApply> { private...
using System.Collections; using UnityEngine; using Mirror; using System; /// <summary> /// Allows a door to be interacted with. /// It also checks for access restrictions on the players ID card /// </summary> public class InteractableDoor : NetworkBehaviour, IPredictedCheckedInteractable<HandApply> { private...
cabb3df6ddcee207fd84b2351b38b1f6f25d7f7e
Don't show debug message in test (#1370)
Don't show debug message in test (#1370)
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Core.UnitTests/CFamily/DynamicCFamilyRulesConfigTests.cs
mit
1,591,696,555
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
2f4338efcc52a60bd98dbfe617b71d7b5ffb63d1
RuleSetGeneratorTests cleanup
RuleSetGeneratorTests cleanup
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Core.UnitTests/CSharpVB/RuleSetGeneratorTests.cs
mit
1,591,696,555
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
73f7d5ba71b9ca246571e16289e8e038ccb30c41
Fixed up unit test mocks to check for specific project key (#1410)
Fixed up unit test mocks to check for specific project key (#1410) Relates to #1377
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Integration.UnitTests/Binding/CSharpVBBindingConfigProviderTests.cs
mit
1,591,696,555
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
ad9e77296c1c800a3e9b9476f41506333ff6fc31
Changed tests to be data driven
Changed tests to be data driven
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Core.UnitTests/CSharpVB/NuGetPackageInfoGeneratorTests.cs
mit
1,591,696,555
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
ece668b0661d5fa0c07d4ae6c7c6e62382fd0279
Clean up ProjectSystemHelperTests
Clean up ProjectSystemHelperTests
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Integration.UnitTests/LocalServices/ProjectSystemHelperTests.cs
mit
1,591,696,555
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
/* * SonarLint for Visual Studio * Copyright (C) 2016-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
59418ed8b26bdcb355d3f4bbc67833f6f0fcfe20
make TccWindow.HideWindow() thread safe
make TccWindow.HideWindow() thread safe
Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns
TCC.Core/UI/Windows/TccWindow.cs
mit
1,591,695,335
using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media; using System.Windows.Media.Animation; using Nostrum.Extensions; using Nostrum.Factories; namespace TCC.UI.Windows { public class TccWindow ...
using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media; using System.Windows.Media.Animation; using Nostrum.Extensions; using Nostrum.Factories; namespace TCC.UI.Windows { public class TccWindow ...
c8cf54e8411cfbbc7a0511dc6db452473cfa4a5d
Fixed duplicated instruction
Fixed duplicated instruction
MahApps/MahApps.Metro,ye4241/MahApps.Metro,batzen/MahApps.Metro,batzen/MahApps.Metro,ye4241/MahApps.Metro,MahApps/MahApps.Metro
src/MahApps.Metro/Controls/Flyout.cs
mit
1,591,691,705
using System; using System.Windows; using System.Windows.Automation.Peers; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Threading; using ControlzEx; using ControlzEx.Theming; n...
using System; using System.Windows; using System.Windows.Automation.Peers; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Threading; using ControlzEx; using ControlzEx.Theming; n...
a06952c65f972d01aa260164f58d152116001c5c
If content type is deleted/changed which other document types has a reference to, fire a change event for those
If content type is deleted/changed which other document types has a reference to, fire a change event for those
abryukhov/Umbraco-CMS,hfloyd/Umbraco-CMS,dawoe/Umbraco-CMS,tcmorris/Umbraco-CMS,robertjf/Umbraco-CMS,bjarnef/Umbraco-CMS,hfloyd/Umbraco-CMS,arknu/Umbraco-CMS,umbraco/Umbraco-CMS,marcemarc/Umbraco-CMS,mattbrailsford/Umbraco-CMS,dawoe/Umbraco-CMS,robertjf/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,marcemarc/Umbraco-CMS,Ke...
src/Umbraco.Core/Services/Implement/ContentTypeServiceBaseOfTRepositoryTItemTService.cs
mit
1,591,688,172
using System; using System.Collections.Generic; using System.Linq; using Umbraco.Core.Events; using Umbraco.Core.Exceptions; using Umbraco.Core.Logging; using Umbraco.Core.Models; using Umbraco.Core.Models.Entities; using Umbraco.Core.Persistence.Repositories; using Umbraco.Core.Persistence.Repositories.Implement; usi...
using System; using System.Collections.Generic; using System.Linq; using Umbraco.Core.Events; using Umbraco.Core.Exceptions; using Umbraco.Core.Logging; using Umbraco.Core.Models; using Umbraco.Core.Models.Entities; using Umbraco.Core.Persistence.Repositories; using Umbraco.Core.Persistence.Repositories.Implement; usi...
fbf91f6e9c970a467788ca666c421efd9dc7b936
Add logs on UnhandledException, UnhandledErrorDetected and UnobservedTaskException
Add logs on UnhandledException, UnhandledErrorDetected and UnobservedTaskException
DanieleScipioni/TestApp
TestAppUWP.AppShell/App.xaml.cs
mit
1,591,685,069
using System; using System.Diagnostics; using System.IO; using System.Threading.Tasks; using TestAppUWP.AppShell.Samples.RootNavigation; using TestAppUWP.Logic.Logs; using TestAppUWP.Samples.CertTutorial; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.ApplicationModel.Core; us...
using System; using System.Diagnostics; using System.IO; using TestAppUWP.AppShell.Samples.RootNavigation; using TestAppUWP.Logic.Logs; using TestAppUWP.Samples.CertTutorial; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.Storage; using Windows.UI.Xaml; namespace TestAppUWP.A...
189d93160bd768b6ae78ebd354b6a2ca04354b6b
fix firelock interaction
fix firelock interaction
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Doors/FireLock.cs
agpl-3.0
1,591,684,351
using UnityEngine; using UnityEngine.Events; public class FireLock : InteractableDoor { private MetaDataNode metaNode; public FireAlarm fireAlarm; public override void ServerPerformInteraction(HandApply interaction) { this.interaction = interaction; if (Validations.HasItemTrait(interaction.HandObject, Common...
using UnityEngine; using UnityEngine.Events; public class FireLock : InteractableDoor { private MetaDataNode metaNode; public FireAlarm fireAlarm; public override void TryClose() { } public override void TryOpen(GameObject performer) { } void TriggerAlarm() { if (fireAlarm) { fireAlarm.SendCloseAl...
6ee1ce2e1bb48b6e595f0f5ed0d11bedaec09dce
Add OnSuspending log
Add OnSuspending log
DanieleScipioni/TestApp
TestAppUWP.AppShell/App.xaml.cs
mit
1,591,684,246
using System; using System.Diagnostics; using System.IO; using TestAppUWP.AppShell.Samples.RootNavigation; using TestAppUWP.Logic.Logs; using TestAppUWP.Samples.CertTutorial; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.Storage; using Windows.UI.Xaml; namespace TestAppUWP.A...
using System; using System.Diagnostics; using System.IO; using TestAppUWP.AppShell.Samples.RootNavigation; using TestAppUWP.Logic.Logs; using TestAppUWP.Samples.CertTutorial; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.Storage; using Windows.UI.Xaml; namespace TestAppUWP.A...
5caf474baf1c7ec7be0512b31e253efa7e995f04
addd logging information to SendEmailCommand
addd logging information to SendEmailCommand
SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments
src/CommitmentsV2/SFA.DAS.CommitmentsV2.MessageHandlers/CommandHandlers/SendEmailToEmployerCommandHandler.cs
mit
1,591,684,042
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using NServiceBus; using SFA.DAS.CommitmentsV2.Messages.Commands; using SFA.DAS.EAS.Account.Api.Client; using SFA.DAS.Notifications.Messages.Commands; namespace SFA.DAS.CommitmentsV2.Mes...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using NServiceBus; using SFA.DAS.CommitmentsV2.Messages.Commands; using SFA.DAS.EAS.Account.Api.Client; using SFA.DAS.Notifications.Messages.Commands; namespace SFA.DAS.CommitmentsV2.Mes...
c2d75693785f65aad82a401287d5177486c403ca
489: fix text-selection bg-color hint
489: fix text-selection bg-color hint
LayoutFarm/PixelFarm
src/PixelFarm/PaintLab.RenderTree.TextSurface/1.3_Layer/TextFlowLayer.cs
bsd-2-clause
1,591,683,085
//Apache2, 2014-present, WinterDev using System; using System.Collections.Generic; using System.Text; using PixelFarm.Drawing; using LayoutFarm.RenderBoxes; namespace LayoutFarm.TextEditing { class TextMarkerLayer { public TextMarkerLayer(List<VisualMarkerSelectionRange> visualMarkers) { ...
//Apache2, 2014-present, WinterDev using System; using System.Collections.Generic; using System.Text; using PixelFarm.Drawing; using LayoutFarm.RenderBoxes; namespace LayoutFarm.TextEditing { class TextMarkerLayer { public TextMarkerLayer(List<VisualMarkerSelectionRange> visualMarkers) { ...
6e2d407484d2c284c806b33b1ae2665d1533ee92
Propagate exception in ContinueWithTask
Propagate exception in ContinueWithTask See issue #64, when the continuation lambda throws an exception the "ContinueWithTask" task never completes.
chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium
src/Core/Threads/TaskExtensions.cs
bsd-3-clause
1,591,678,086
// Copyright 2018 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 System; using System.Threading; using System.Threading.Tasks; namespace VsChromium.Core.Threads { public static class TaskExtensions { publi...
// Copyright 2018 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 System; using System.Threading; using System.Threading.Tasks; namespace VsChromium.Core.Threads { public static class TaskExtensions { publi...
1d8c90258e032a869a8b2dad83f47b2f48bda9cf
Core - ByteArrayResourceHandler throw exception if byte[] length 0
Core - ByteArrayResourceHandler throw exception if byte[] length 0 We cannot create a CefStreamReader when buffer length is 0 CefStreamReader::CreateForData returns null and CefStreamResourceHandler crashes as the stream is null https://github.com/chromiumembedded/cef/blob/9df4a54308a88fd80c5774d91c62da35afb5fd1b/lib...
Livit/CefSharp,Livit/CefSharp,Livit/CefSharp,Livit/CefSharp
CefSharp/Internals/ByteArrayResourceHandler.cs
bsd-3-clause
1,591,676,054
// Copyright © 2017 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.IO; using CefSharp.Callback; namespace CefSharp { /// <summary> /// ByteArrayResourceHandler is used as a placeholde...
// Copyright © 2017 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.IO; using CefSharp.Callback; namespace CefSharp { /// <summary> /// ByteArrayResourceHandler is used as a placeholde...
213a6e326d3b2e9094132b04f15077ee0828855e
Core - ResourceHandler default Access-Control-Allow-Origin to *
Core - ResourceHandler default Access-Control-Allow-Origin to *
Livit/CefSharp,Livit/CefSharp,Livit/CefSharp,Livit/CefSharp
CefSharp/ResourceHandler.cs
bsd-3-clause
1,591,676,052
// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Net; using System.Text; using CefSha...
// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Net; using System.Text; using CefSha...
319f57ecddc03410bd9ea5b27f7c26b392b07b8f
Core - Improve CefSharpSettings.ConcurrentTaskExecution xml doc
Core - Improve CefSharpSettings.ConcurrentTaskExecution xml doc
Livit/CefSharp,Livit/CefSharp,Livit/CefSharp,Livit/CefSharp
CefSharp/CefSharpSettings.cs
bsd-3-clause
1,591,676,052
// Copyright © 2015 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; namespace CefSharp { /// <summary> /// Use this static class to configure some CefSharp specific settings like WcfTimeout ///...
// Copyright © 2015 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; namespace CefSharp { /// <summary> /// Use this static class to configure some CefSharp specific settings like WcfTimeout ///...
2910898c9ea5404a1f6cdd85ced9d24b98901ffd
fixes bug: DbSessionExtension.ExecuteDataSet error.
fixes bug: DbSessionExtension.ExecuteDataSet error.
shuxinqin/Chloe
src/Chloe.Extension/DbHelper.cs
mit
1,591,674,843
using System.Data; namespace Chloe.Extension { static class DbHelper { public static DataTable FillDataTable(IDataReader reader) { DataTable dt = new DataTable(); int fieldCount = reader.FieldCount; for (int i = 0; i < fieldCount; i++) { ...
using System.Data; namespace Chloe.Extension { static class DbHelper { public static DataTable FillDataTable(IDataReader reader) { DataTable dt = new DataTable(); dt.Load(reader); return dt; } public static DataSet FillDataSet(IDataReader rea...
7fb3412cff4c7e78c2ab92641a5f8cd960d6e145
488: text_edit_render_box, _blurring, temp fix
488: text_edit_render_box, _blurring, temp fix
LayoutFarm/PixelFarm
src/PixelFarm/PaintLab.RenderTree.TextSurface/2.2_TextRenderBox/TextEditRenderBox.cs
bsd-2-clause
1,591,673,006
//Apache2, 2014-present, WinterDev using System.Text; using LayoutFarm.UI; using PixelFarm.Drawing; namespace LayoutFarm.TextEditing { public sealed class TextEditRenderBox : TextFlowRenderBox { EditorCaret _myCaret; //just for render, BUT this render element is not added to parent tree*** ...
//Apache2, 2014-present, WinterDev using System.Text; using LayoutFarm.UI; using PixelFarm.Drawing; namespace LayoutFarm.TextEditing { public sealed class TextEditRenderBox : TextFlowRenderBox { EditorCaret _myCaret; //just for render, BUT this render element is not added to parent tree*** ...
de13cbbcafda32355b8a2967b0f20ba30cac2e8d
chore(cleanup + comments):
chore(cleanup + comments):
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Health/Living/LivingHealthBehaviour.cs
agpl-3.0
1,591,670,807
using System; using System.Collections; using System.Collections.Generic; using Atmospherics; using Light2D; using UnityEngine; using UnityEngine.Events; using Utility = UnityEngine.Networking.Utility; using Mirror; using UnityEngine.Profiling; /// <summary> /// The Required component for all living creatures /// Mon...
using System; using System.Collections; using System.Collections.Generic; using Atmospherics; using Light2D; using UnityEngine; using UnityEngine.Events; using Utility = UnityEngine.Networking.Utility; using Mirror; using UnityEngine.Profiling; /// <summary> /// The Required component for all living creatures /// Mon...
de72fd21141ccc7d818591c6cc77fcdb66d5b0f5
Program: Remove logging of field count from BotConfigMsg()
Program: Remove logging of field count from BotConfigMsg() Was added during development, is not useful to keep in general. Also improve documentation for what this method does.
countervandalism/CVNBot
src/CVNBot/Program.cs
mit
1,591,667,581
using System; using System.Collections; using System.Collections.Specialized; using Meebey.SmartIrc4net; using System.Threading; using System.Text.RegularExpressions; using System.IO; using log4net; using System.Collections.Generic; using System.Reflection; // Logging: [assembly: log4net.Config.XmlConfigurator(Watch =...
using System; using System.Collections; using System.Collections.Specialized; using Meebey.SmartIrc4net; using System.Threading; using System.Text.RegularExpressions; using System.IO; using log4net; using System.Collections.Generic; using System.Reflection; // Logging: [assembly: log4net.Config.XmlConfigurator(Watch =...
e5b01525c9357893e43a27b10e374f5b5926e110
Add test verifying array add operations are ordered correctly
Add test verifying array add operations are ordered correctly
wbish/jsondiffpatch.net
Src/JsonDiffPatchDotNet.UnitTests/JsonDeltaFormatterUnitTests.cs
mit
1,591,667,463
using JsonDiffPatchDotNet.Formatters.JsonPatch; using Newtonsoft.Json.Linq; using NUnit.Framework; namespace JsonDiffPatchDotNet.UnitTests { [TestFixture] public class JsonDeltaFormatterUnitTests { [Test] public void Format_SupportsRemove_Success() { var jdp = new JsonDiffPatch(); var formatter = new Js...
using JsonDiffPatchDotNet.Formatters.JsonPatch; using Newtonsoft.Json.Linq; using NUnit.Framework; namespace JsonDiffPatchDotNet.UnitTests { [TestFixture] public class JsonDeltaFormatterUnitTests { [Test] public void Format_SupportsRemove_Success() { var jdp = new JsonDiffPatch(); var formatter = new Js...