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
9ea3c9c087a9530a249080b092f56e5a0b1d51dd
Fix bug when frame time is zero
Fix bug when frame time is zero
tigrouind/AITD-roomviewer
Assets/Scripts/Model/ModelLoader.cs
mit
1,587,158,184
using UnityEngine; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Globalization; using System; using UnityEngine.SceneManagement; using UnityEngine.UI; using System.Text; public class ModelLoader : MonoBehaviour { private int modelIndex = 0; private int ...
using UnityEngine; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Globalization; using System; using UnityEngine.SceneManagement; using UnityEngine.UI; using System.Text; public class ModelLoader : MonoBehaviour { private int modelIndex = 0; private int ...
d834b592fbcfbbb91c079e8dade5aeb60c061ad8
Use file size instead of model flags to detect anim file version
Use file size instead of model flags to detect anim file version
tigrouind/AITD-roomviewer
Assets/Scripts/Model/ModelLoader.cs
mit
1,587,158,180
using UnityEngine; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Globalization; using System; using UnityEngine.SceneManagement; using UnityEngine.UI; using System.Text; public class ModelLoader : MonoBehaviour { private int modelIndex = 0; private int ...
using UnityEngine; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Globalization; using System; using UnityEngine.SceneManagement; using UnityEngine.UI; using System.Text; public class ModelLoader : MonoBehaviour { private int modelIndex = 0; private int ...
ff824985c8af8c8b7de2e9688c0bf2eba4ba7961
Max enum integers explicit
Max enum integers explicit
aarondcoleman/Fitbit.NET,aarondcoleman/Fitbit.NET
Fitbit.Portable/Models/DateRangePeriod.cs
mit
1,587,156,553
using Fitbit.Api.Portable; using System; namespace Fitbit.Models { /// <summary> /// All date ranges that can be queried from fitbit /// </summary> public enum DateRangePeriod { //1d, 7d, 30d, 1w, 1m, 3m, 6m, 1y, max [StringValue("1d")] OneDay = 0, [StringValue("7d...
using Fitbit.Api.Portable; using System; namespace Fitbit.Models { /// <summary> /// All date ranges that can be queried from fitbit /// </summary> public enum DateRangePeriod { //1d, 7d, 30d, 1w, 1m, 3m, 6m, 1y, max [StringValue("1d")] OneDay, [StringValue("7d")] ...
1bf6b44b32807df4949634c2b23f0e20cd515e80
WIP Adding Remainder of PokemonBattler
WIP Adding Remainder of PokemonBattler
PokemonUnity/PokemonUnity
PokemonUnity.Shared/InBattle/Pokemon.cs
bsd-3-clause
1,587,155,930
using PokemonUnity; //using PokemonUnity.Pokemon; using PokemonUnity.Inventory; //using PokemonUnity.Attack; using PokemonUnity.Localization; using PokemonUnity.Battle; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PokemonUnity.Battle { #pragma warning disable 0162 //...
using PokemonUnity; //using PokemonUnity.Pokemon; using PokemonUnity.Inventory; //using PokemonUnity.Attack; using PokemonUnity.Localization; using PokemonUnity.Battle; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PokemonUnity.Battle { #pragma warning disable 0162 //...
d487b14a4db545fbad55444f18c2fd57e0e1f5a9
Added SOCKADDR.GetAddressBytes method
Added SOCKADDR.GetAddressBytes method
dahall/vanara
PInvoke/Ws2_32/WinSock2.cs
mit
1,587,155,474
#pragma warning disable IDE1006 // Naming Styles using System; using System.Net; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.InteropServices; namespace Vanara.PInvoke { /// <summary>Functions, structures and constants from ws2_32.h.</summary> public static partial class Ws2_32 { ...
#pragma warning disable IDE1006 // Naming Styles using System; using System.Net; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.InteropServices; namespace Vanara.PInvoke { /// <summary>Functions, structures and constants from ws2_32.h.</summary> public static partial class Ws2_32 { ...
13210833e8b03ac276c4e1304fcafa8daf82a895
PositionConverter no longer throws a NotImplementedException if passed an IPosition instead of Position
PositionConverter no longer throws a NotImplementedException if passed an IPosition instead of Position
GeoJSON-Net/GeoJSON.Net
src/GeoJSON.Net/Converters/PositionConverter.cs
mit
1,587,154,240
// Copyright © Joerg Battermann 2014, Matt Hunt 2017 using System; using GeoJSON.Net.Geometry; using Newtonsoft.Json; namespace GeoJSON.Net.Converters { /// <summary> /// Converter to read and write an <see cref="IPosition" />, that is, /// the coordinates of a <see cref="Point" />. /// </sum...
// Copyright © Joerg Battermann 2014, Matt Hunt 2017 using System; using GeoJSON.Net.Geometry; using Newtonsoft.Json; namespace GeoJSON.Net.Converters { /// <summary> /// Converter to read and write an <see cref="IPosition" />, that is, /// the coordinates of a <see cref="Point" />. /// </sum...
ec9f551d5d5ee5685021536fa4f3bd08ee0f73b6
Added help command for total and category. Only command missing
Added help command for total and category. Only command missing
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Bot/Modules/HelpModule.cs
agpl-3.0
1,587,153,590
using System; using System.Linq; using System.Threading.Tasks; using Discord; using Discord.Commands; using Microsoft.EntityFrameworkCore.Internal; using SoraBot.Common.Extensions.Modules; using SoraBot.Services.Guilds; namespace SoraBot.Bot.Modules { [Name("Help")] [Summary("Commands to help with Sora and al...
namespace SoraBot.Bot.Modules { public class HelpModule { } }
a5ff9db12f9031c038360a9a2fbdbd715fb70383
Update Assets/MRTK/Tests/PlayModeTests/SolverTests.cs
Update Assets/MRTK/Tests/PlayModeTests/SolverTests.cs Co-Authored-By: RogPodge <854ffafd9b9e24c0055a3f70afa0c5efe996686f@users.noreply.github.com>
killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/Tests/PlayModeTests/SolverTests.cs
mit
1,587,152,752
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #if !WINDOWS_UWP // When the .NET scripting backend is enabled and C# projects are built // The assembly that this file is part of is still built for the player, // ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #if !WINDOWS_UWP // When the .NET scripting backend is enabled and C# projects are built // The assembly that this file is part of is still built for the player, // ...
1c971b2810e43bd43119cd0cbe312f6a4a733f10
Removes obsolete checks in AtteberBuildExecution
Removes obsolete checks in AtteberBuildExecution
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Scripting/DefaultBuildScript.cs
bsd-2-clause
1,587,152,351
using System; using System.Collections.Generic; using System.IO; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Runtime.InteropServices; using System.Threading.Tasks; using FlubuCore.Context; using FlubuCore.IO; using FlubuCore.Targeting; using FlubuCore.Tasks.Attributes; using FlubuCore.Tas...
using System; using System.Collections.Generic; using System.IO; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Runtime.InteropServices; using System.Threading.Tasks; using FlubuCore.Context; using FlubuCore.IO; using FlubuCore.Targeting; using FlubuCore.Tasks.Attributes; using FlubuCore.Tas...
a895a1d0cdace95418e52f7daaa8fabaa67a0d3d
fix newlines
fix newlines
MarkPflug/Elemental.JsonResource
Elemental.JsonResource/JsonResourceGenerator.cs
mit
1,587,151,832
using Elemental.Json; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using System; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Xml.Linq; namespace Elemental.JsonResource { static class Culture { public static bool IsValidCulture(string name) { r...
using Elemental.Json; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using System; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Xml.Linq; namespace Elemental.JsonResource { static class Culture { public static bool IsValidCulture(string name) { r...
f32c506e1fdc3e1ac813033c86e58deb2ef9f3b0
timer log fix (#4379)
timer log fix (#4379) Co-authored-by: Aaron Stannard <5a7a6a189b47cd31d24667a751e4003cd04eced5@petabridge.com>
simonlaroche/akka.net,simonlaroche/akka.net
src/core/Akka/Actor/Scheduler/TimerScheduler.cs
apache-2.0
1,587,151,678
using Akka.Event; using Akka.Util.Internal; using System; using System.Collections.Generic; namespace Akka.Actor.Scheduler { /// <summary> /// Support for scheduled "Self" messages in an actor. /// /// Timers are bound to the lifecycle of the actor that owns it, /// and thus are cancelled automati...
using Akka.Event; using Akka.Util.Internal; using System; using System.Collections.Generic; namespace Akka.Actor.Scheduler { /// <summary> /// Support for scheduled "Self" messages in an actor. /// /// Timers are bound to the lifecycle of the actor that owns it, /// and thus are cancelled automati...
67219fe2eea582e11c57ba39a9ef96652c02caec
Swallow exceptions when gathering runtime information
Swallow exceptions when gathering runtime information
stripe/stripe-dotnet
src/Stripe.net/Infrastructure/Public/SystemNetHttpClient.cs
apache-2.0
1,587,150,817
namespace Stripe { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Threading; using System.Threading.Tasks; using Newtonsoft.Json...
namespace Stripe { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Threading; using System.Threading.Tasks; using Newtonsoft.Json...
824634c0dcdf8693e66c4f8e633f3596b1204c46
Update WalletWasabi.Tests/UnitTests/BitcoinCore/IndexBuilderServiceTests.cs
Update WalletWasabi.Tests/UnitTests/BitcoinCore/IndexBuilderServiceTests.cs Co-Authored-By: yahiheb <1ef907ec03476373b9c05d7f089a7d2fed4d8ea8@users.noreply.github.com>
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/UnitTests/BitcoinCore/IndexBuilderServiceTests.cs
mit
1,587,150,283
using NBitcoin; using NBitcoin.Crypto; using NBitcoin.RPC; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using WalletWasabi.BitcoinCore.RpcModels; using WalletWasabi.Blockchain.BlockFilters; using WalletWasabi.Blockchain.Blocks; using Xunit; namespace WalletWasabi.Tes...
using NBitcoin; using NBitcoin.Crypto; using NBitcoin.RPC; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using WalletWasabi.BitcoinCore.RpcModels; using WalletWasabi.Blockchain.BlockFilters; using WalletWasabi.Blockchain.Blocks; using Xunit; namespace WalletWasabi.Tes...
c23f604f3ef9e3fbe035e26c932fc4486c958baf
Set TTL for prefix to infinity rn
Set TTL for prefix to infinity rn
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.Services/Guilds/PrefixService.cs
agpl-3.0
1,587,149,963
using System; using System.Threading.Tasks; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Cache; namespace SoraBot.Services.Guilds { public class PrefixService : IPrefixService { public const string CACHE_PREFIX = "prfx:"; // public const short CACHE_TTL_MINS = 60; ...
using System; using System.Threading.Tasks; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Cache; namespace SoraBot.Services.Guilds { public class PrefixService : IPrefixService { public const string CACHE_PREFIX = "prfx:"; public const short CACHE_TTL_MINS = 60; ...
a0df62dbe49b31285895a87b6ea81cf25551ed9d
Information added to XML comments about alternative ways of registering collections. #808
Information added to XML comments about alternative ways of registering collections. #808
simpleinjector/SimpleInjector
src/SimpleInjector/Container.Registration.CollectionRegistrator.cs
mit
1,587,149,568
// Copyright (c) Simple Injector Contributors. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for license information. namespace SimpleInjector { using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System....
// Copyright (c) Simple Injector Contributors. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for license information. namespace SimpleInjector { using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System....
206b6fcecb559258e8655cb3ee3fe8d82c93a260
rename method
rename method
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionsMath.cs
mit
1,587,148,653
using FonctionsUtiles.Fred.Csharp; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionsMath { #region Math Methods #region Math Methods - Factorial [TestMethod] public void TestMethod...
using FonctionsUtiles.Fred.Csharp; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionsMath { #region Math Methods #region Math Methods - Factorial [TestMethod] public void TestMethod...
59a229d7f72efb5a635edd852c1ab17ddc23a1c1
Cleaning using statements.
Cleaning using statements.
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Targeting/TargetTree.cs
bsd-2-clause
1,587,147,840
using System; using System.Collections.Generic; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Linq; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore.Scripting; using FlubuCore.Tasks; using Microsoft.Extensions.DependencyInjection; using T...
using System; using System.Collections.Generic; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Linq; using System.Reflection.Metadata.Ecma335; using System.Runtime.InteropServices.ComTypes; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore....
e3ebd79585d3ddc6ceb5aa12318314f49437c56b
Add back the unit test TestDeleteThenAccessBlob that is commented out
Add back the unit test TestDeleteThenAccessBlob that is commented out
couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net
src/Couchbase.Lite.Tests.Shared/DatabaseTest.cs
apache-2.0
1,587,147,163
// // DatabaseTest.cs // // Copyright (c) 2017 Couchbase, Inc All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 ...
// // DatabaseTest.cs // // Copyright (c) 2017 Couchbase, Inc All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 ...
3150494708ec35d35f1f15d68e80be1669a10d81
If there was no targets to build, then don't show Build Summary.
If there was no targets to build, then don't show Build Summary.
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Targeting/TargetTree.cs
bsd-2-clause
1,587,146,753
using System; using System.Collections.Generic; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Linq; using System.Reflection.Metadata.Ecma335; using System.Runtime.InteropServices.ComTypes; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore....
using System; using System.Collections.Generic; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Linq; using System.Reflection.Metadata.Ecma335; using System.Runtime.InteropServices.ComTypes; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore....
69740425718b4ee46f17e42e93da163f05d98604
Fixed more bugs. Refactor a bit.
Fixed more bugs. Refactor a bit.
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Targeting/TargetTree.cs
bsd-2-clause
1,587,146,430
using System; using System.Collections.Generic; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Linq; using System.Reflection.Metadata.Ecma335; using System.Runtime.InteropServices.ComTypes; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore....
using System; using System.Collections.Generic; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Linq; using FlubuCore.Context; using FlubuCore.Context.FluentInterface; using FlubuCore.Infrastructure; using FlubuCore.Scripting; using FlubuCore.Tasks; using Microsoft.Extensions.DependencyInjection; using T...
82cc9b6f70dca5d3ed17c3e89143cbe19167b507
Fix copy-paste error in `UpgradePropertyAccessorMethods`
Fix copy-paste error in `UpgradePropertyAccessorMethods`
Moq/moq4
src/Moq/Expressions/Visitors/UpgradePropertyAccessorMethods.cs
bsd-3-clause
1,587,146,362
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Linq.Expressions; using Sys...
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Linq.Expressions; using Sys...
bf08221e8cbccd3a9a79ea81a320af84932a3b32
Recurse into indexer arguments, too
Recurse into indexer arguments, too
Moq/moq4
src/Moq/Expressions/Visitors/UpgradePropertyAccessorMethods.cs
bsd-3-clause
1,587,146,362
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Linq.Expressions; using Sys...
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Linq.Expressions; using Sys...
c671d989abdb3b1b08cdb8147e22101e4d212f6f
Reveal failing assertion
Reveal failing assertion This change here is made because without it, the check for `expression .IsProperty` a few lines further down will never be true, and some guards that should run are never executed. This reveals that `UpgradePropertyAccessorMethods` does apparently not work correctly for indexer getters.
Moq/moq4
src/Moq/Mock.cs
bsd-3-clause
1,587,146,362
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Lin...
// Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD. // All rights reserved. Licensed under the BSD 3-Clause License; see License.txt. using System; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Lin...
8f000f855f13dca394acd7de075bda4e9ebd6de5
Cleanup, consistency & fixes
Cleanup, consistency & fixes
zapadi/redmine-net-api
src/redmine-net-api/RedmineManager.cs
apache-2.0
1,587,145,962
/* Copyright 2011 - 2019 Adrian Popescu. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
/* Copyright 2011 - 2019 Adrian Popescu. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agree...
bc1b2733204ffb166c736a9d0d13b54a5d482824
Override GetWebResponse. Add support for redirect & cookies
Override GetWebResponse. Add support for redirect & cookies
zapadi/redmine-net-api
src/redmine-net-api/RedmineWebClient.cs
apache-2.0
1,587,145,943
/* Copyright 2011 - 2019 Adrian Popescu. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agree...
/* Copyright 2011 - 2019 Adrian Popescu. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agree...
f2fb9a0b6b9509be88e2d065ca484e051d978395
Improve EnumerableExtensions.Batch method
Improve EnumerableExtensions.Batch method
NimaAra/Easy.Common
Easy.Common/Extensions/EnumerableExtensions.cs
mit
1,587,145,802
namespace Easy.Common.Extensions { using System; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Linq; /// <summary> /// Extension methods for <see cref="IEnumerable{T}"/> /// </summary> [SuppressMessage("ReSharper", "...
namespace Easy.Common.Extensions { using System; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Linq; /// <summary> /// Extension methods for <see cref="IEnumerable{T}"/> /// </summary> [SuppressMessage("ReSharper", "...
95ccb5596c0a3b20bb93ef5204ad2e01133ebd0c
Tmp fix #258
Tmp fix #258
zapadi/redmine-net-api
src/redmine-net-api/Types/Issue.cs
apache-2.0
1,587,145,793
/* Copyright 2011 - 2017 Adrian Popescu, Dorin Huzum. 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 applicabl...
/* Copyright 2011 - 2017 Adrian Popescu, Dorin Huzum. 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 applicabl...
267b7df4dbd2ee007df3160ee93dd21a3cd6cb5c
Fixed logic error in MeterDataQualityOverride.
Fixed logic error in MeterDataQualityOverride.
GridProtectionAlliance/openXDA,GridProtectionAlliance/openXDA,GridProtectionAlliance/openXDA,GridProtectionAlliance/openXDA
Source/Libraries/FaultData/DataOperations/GTC/MeterDataQualityOverride.cs
mit
1,587,145,590
//****************************************************************************************************** // MeterDataQualityOverride.cs - Gbtc // // Copyright © 2020, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements...
//****************************************************************************************************** // MeterDataQualityOverride.cs - Gbtc // // Copyright © 2020, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements...
25df4295a0591805bc4abe7d9ceac7ca8ba9eb43
Add RemoveTrailingSlash extension
Add RemoveTrailingSlash extension
zapadi/redmine-net-api
src/redmine-net-api/Extensions/StringExtensions.cs
apache-2.0
1,587,145,344
using System; using System.Diagnostics.CodeAnalysis; using System.Security; namespace Redmine.Net.Api.Extensions { /// <summary> /// /// </summary> public static class StringExtensions { /// <summary> /// /// </summary> /// <param name="value"></param> /// ...
using System; using System.Diagnostics.CodeAnalysis; using System.Security; namespace Redmine.Net.Api.Extensions { /// <summary> /// /// </summary> public static class StringExtensions { /// <summary> /// /// </summary> /// <param name="value"></param> /// ...
8c85f8bb98cb987937d494275df1d34c3f941c87
Update tests. #386
Update tests. #386
Sitecore/Sitecore-Instance-Manager,Sitecore/Sitecore-Instance-Manager
src/SIM.Sitecore9Installer.Tests/Validation/Validators/SqlPefixValidatorTests.cs
mit
1,587,145,331
using AutoFixture; using NSubstitute; using SIM.Sitecore9Installer.Tasks; using SIM.Sitecore9Installer.Validation; using SIM.Sitecore9Installer.Validation.Validators; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xunit; namespace SIM.Sitecore9Installer.Tests.Validation.Va...
using NSubstitute; using SIM.Sitecore9Installer.Tasks; using SIM.Sitecore9Installer.Validation; using SIM.Sitecore9Installer.Validation.Validators; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xunit; namespace SIM.Sitecore9Installer.Tests.Validation.Validators { public...
47e964a882e7fe8b99e18bcfa4741dd7b27f5ff1
Deadchat now has color
Deadchat now has color
space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14
Content.Client/Chat/ChatManager.cs
mit
1,587,145,098
using System.Collections.Generic; using Content.Client.Interfaces.Chat; using Content.Shared.Chat; using Robust.Client.Console; using Robust.Client.Interfaces.Graphics.ClientEye; using Robust.Client.Interfaces.UserInterface; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Sh...
using System.Collections.Generic; using Content.Client.Interfaces.Chat; using Content.Shared.Chat; using Robust.Client.Console; using Robust.Client.Interfaces.Graphics.ClientEye; using Robust.Client.Interfaces.UserInterface; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Sh...
7fd71def20cfa314a24adc3e96f454a78e84a192
Gum now supports scrollview and stickyscrollview parents.
Gum now supports scrollview and stickyscrollview parents.
vchelaru/Gum
CodeOutputPlugin/Manager/CodeGenerator.cs
mit
1,587,145,040
using CodeOutputPlugin.Models; using Gum.Converters; using Gum.DataTypes; using Gum.DataTypes.Variables; using Gum.Managers; using Gum.ToolStates; using RenderingLibrary.Graphics; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Ta...
using CodeOutputPlugin.Models; using Gum.Converters; using Gum.DataTypes; using Gum.DataTypes.Variables; using Gum.Managers; using Gum.ToolStates; using RenderingLibrary.Graphics; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Ta...
ebc828280c60cfcc6b99b0907ad5c0c59a8c6922
Prevent a spurious ArgumentOutOfRange in CopyOnWriteDictionary.Set (#5271)
Prevent a spurious ArgumentOutOfRange in CopyOnWriteDictionary.Set (#5271) See details in https://github.com/microsoft/msbuild/issues/5267
AndyGerlicher/msbuild,sean-gilliam/msbuild,AndyGerlicher/msbuild,sean-gilliam/msbuild,cdmihai/msbuild,sean-gilliam/msbuild,cdmihai/msbuild,cdmihai/msbuild,AndyGerlicher/msbuild,rainersigwald/msbuild,sean-gilliam/msbuild,rainersigwald/msbuild,rainersigwald/msbuild,rainersigwald/msbuild,mono/msbuild,sean-gilliam/msbuild,...
src/Build/Instance/ProjectItemInstance.cs
mit
1,587,145,014
// 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; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; ...
// 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; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; ...
4aaa00e3219611c387dcdf20dc4f04103bb7af07
Fix CI complaints
Fix CI complaints
NeoAdonis/osu,smoogipooo/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,ppy/osu,smoogipoo/osu,peppy/osu,peppy/osu-new,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,peppy/osu
osu.Game/Screens/Select/DifficultyRecommender.cs
mit
1,587,144,792
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.IEnumerab...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.IEnumerab...
e407cd61e3132a13d59717ca01957967ea6acabf
Use ConfigureAwait(false) more often.
Use ConfigureAwait(false) more often.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
src/NadekoBot/Modules/Level/Services/LevelService.cs
mit
1,587,144,751
using System; using System.Linq; using System.Threading.Tasks; using Discord; using Discord.WebSocket; using Mitternacht.Extensions; using Mitternacht.Services; using Mitternacht.Services.Database.Repositories; using Mitternacht.Services.Database.Repositories.Impl; namespace Mitternacht.Modules.Level.Servic...
using System; using System.Linq; using System.Threading.Tasks; using Discord; using Discord.WebSocket; using Mitternacht.Extensions; using Mitternacht.Services; using Mitternacht.Services.Database.Repositories; using Mitternacht.Services.Database.Repositories.Impl; namespace Mitternacht.Modules.Level.Servic...
1a4bd1a53f256aaa9243c8c74c034e5f5caf7cac
fix error when patch has no FromFile value
fix error when patch has no FromFile value
Pathoschild/StardewMods
ContentPatcher/Framework/Patches/Patch.cs
mit
1,587,143,984
using System; using System.Collections.Generic; using System.IO; using System.Linq; using ContentPatcher.Framework.Conditions; using ContentPatcher.Framework.ConfigModels; using ContentPatcher.Framework.Tokens; using Microsoft.Xna.Framework; using StardewModdingAPI; namespace ContentPatcher.Framework.Patches { ///...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using ContentPatcher.Framework.Conditions; using ContentPatcher.Framework.ConfigModels; using ContentPatcher.Framework.Tokens; using Microsoft.Xna.Framework; using StardewModdingAPI; namespace ContentPatcher.Framework.Patches { ///...
852fa251bef65026934f397658dbdd5baeaddfad
pass logic to sql. #386
pass logic to sql. #386
Sitecore/Sitecore-Instance-Manager,Sitecore/Sitecore-Instance-Manager
src/SIM.Sitecore9Installer/Validation/Validators/SqlPefixValidator.cs
mit
1,587,143,809
using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using SIM.Sitecore9Installer.Tasks; namespace SIM.Sitecore9Installer.Validation.Validators { public class SqlPefixValidator : IValidator { public SqlPefixValidator() { this.Data = new ...
using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using SIM.Sitecore9Installer.Tasks; namespace SIM.Sitecore9Installer.Validation.Validators { public class SqlPefixValidator : IValidator { public SqlPefixValidator() { this.Data = new ...
01e8e4784b9e097d55b2b0e090c7d23b565da88e
Joining round as observer greys out return to body button
Joining round as observer greys out return to body button
space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14
Content.Server/GameTicking/GameTicker.cs
mit
1,587,143,802
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Content.Server.GameObjects; using Content.Server.GameObjects.Components.Access; using Content.Server.GameObjects.Components.Markers; using Content.Server.GameObjects.Components.Mobs; using Content.Server.GameObjects.Compon...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Content.Server.GameObjects; using Content.Server.GameObjects.Components.Access; using Content.Server.GameObjects.Components.Markers; using Content.Server.GameObjects.Components.Mobs; using Content.Server.GameTicking.GamePr...
cdf47aab4465544f8940f6944402a8fa6b93f6a0
Fix ghosts not being hidden when you do-aghost.
Fix ghosts not being hidden when you do-aghost.
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-content,space-wizards/space-station-14,space-wizards/space-station-14
Content.Client/GameObjects/Components/Observer/GhostComponent.cs
mit
1,587,143,470
using Content.Client.UserInterface; using Content.Shared.GameObjects.Components.Observer; using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Network; using Robust.Shared.IoC; using Robust.Shared.ViewVar...
using Content.Client.UserInterface; using Content.Shared.GameObjects.Components.Observer; using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Network; using Robust.Shared.IoC; using Robust.Shared.ViewVar...
73d754e2d216f97dff18a2884ee6f728412b126d
Observers now get correct name on observe from lobby
Observers now get correct name on observe from lobby
space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14
Content.Server/GameTicking/GameTicker.cs
mit
1,587,142,311
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Content.Server.GameObjects; using Content.Server.GameObjects.Components.Access; using Content.Server.GameObjects.Components.Markers; using Content.Server.GameObjects.Components.Mobs; using Content.Server.GameTicking.GamePr...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Content.Server.GameObjects; using Content.Server.GameObjects.Components.Access; using Content.Server.GameObjects.Components.Markers; using Content.Server.GameObjects.Components.Mobs; using Content.Server.GameTicking.GamePr...
d55b1ca51d78784be8667644635f1805cd488e7c
ensure file is written with invariant culture
ensure file is written with invariant culture
IxMilia/Iges,IxMilia/Iges
src/IxMilia.Iges.Test/IgesWriterTests.cs
apache-2.0
1,587,142,282
// Copyright (c) IxMilia. 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.Globalization; using System.IO; using System.Text; using IxMilia.Iges.Entities; using Xunit; namespace IxMilia.Iges.Test { publ...
// Copyright (c) IxMilia. 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.IO; using System.Text; using IxMilia.Iges.Entities; using Xunit; namespace IxMilia.Iges.Test { public class IgesWriterTests ...
8855732e462bc2e3d4727cd85f3aa847eb38a01f
Move TryGetJoint outside of LEAPMOTIONCORE_PRESENT
Move TryGetJoint outside of LEAPMOTIONCORE_PRESENT
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity
Assets/MRTK/Providers/LeapMotion/LeapMotionArticulatedHand.cs
mit
1,587,141,616
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System.Collections.Generic; using UnityEngine; using Microsoft.MixedReality.Toolkit.Input; using Microsoft.MixedReality.Toolkit.Utilities; using System; using...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System.Collections.Generic; using UnityEngine; using Microsoft.MixedReality.Toolkit.Input; using Microsoft.MixedReality.Toolkit.Utilities; using System; using...
99f745b26b92454c693ebc4fc8df0b242ee3b357
Modify JACK detection pattern
Modify JACK detection pattern
tigrouind/AITD-roomviewer
Assets/Scripts/DosBox/DosBox.cs
mit
1,587,140,822
using System; using UnityEngine; using System.Linq; using System.Diagnostics; using System.Collections.Generic; using System.Text; using UnityEngine.UI; public class DosBox : MonoBehaviour { public Text RightText; public BoxInfo BoxInfo; public GameObject Actors; public Arrow Arrow; public Box BoxPrefab; public...
using System; using UnityEngine; using System.Linq; using System.Diagnostics; using System.Collections.Generic; using System.Text; using UnityEngine.UI; public class DosBox : MonoBehaviour { public Text RightText; public BoxInfo BoxInfo; public GameObject Actors; public Arrow Arrow; public Box BoxPrefab; public...
b0117756e021cf71f4a04a2f02ac8ec46cd7666f
Add unit test
Add unit test
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionsMathPrimes.cs
mit
1,587,139,886
using FonctionsUtiles.Fred.Csharp; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionsMathPrimes { #region Math Methods #region IsPrime [TestMethod] public void TestMethod_IsPrime_0(...
using FonctionsUtiles.Fred.Csharp; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionsMathPrimes { #region Math Methods #region IsPrime [TestMethod] public void TestMethod_IsPrime_0(...
684b3c429395a6db948a481a38acc8c3d35c5145
Add assert to test.
Add assert to test.
ryanjfitz/SimpSim.NET,ryanjfitz/SimpSim.NET
SimpSim.NET.Presentation.Tests/OutputViewModelTests.cs
mit
1,587,139,729
using SimpSim.NET.Presentation.ViewModels; using Xunit; namespace SimpSim.NET.Presentation.Tests { public class OutputViewModelTests { [Fact] public void ClearCommandShouldEmptyOutputWindow() { OutputViewModel viewModel = new OutputViewModel(new SimpleSimulator()); ...
using SimpSim.NET.Presentation.ViewModels; using Xunit; namespace SimpSim.NET.Presentation.Tests { public class OutputViewModelTests { [Fact] public void ClearCommandShouldEmptyOutputWindow() { OutputViewModel viewModel = new OutputViewModel(new SimpleSimulator()); ...
b445712e5f382fee8c76fe435c1ca466cd7e196b
Introduce timeout to prevent a hang in CancelledBuild (#5290)
Introduce timeout to prevent a hang in CancelledBuild (#5290) Introduce timeout to prevent a hang in CancelledBuild, which failed recently.
sean-gilliam/msbuild,cdmihai/msbuild,AndyGerlicher/msbuild,mono/msbuild,rainersigwald/msbuild,sean-gilliam/msbuild,mono/msbuild,rainersigwald/msbuild,AndyGerlicher/msbuild,cdmihai/msbuild,cdmihai/msbuild,AndyGerlicher/msbuild,rainersigwald/msbuild,cdmihai/msbuild,AndyGerlicher/msbuild,rainersigwald/msbuild,rainersigwal...
src/Build.UnitTests/BackEnd/BuildManager_Tests.cs
mit
1,587,139,570
// 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; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; usin...
// 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; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; usin...
d3c6b500ae7de5c5b2069c8fc003d533efa53f73
Fix BasicTabControl not working by default
Fix BasicTabControl not working by default
smoogipooo/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-fr...
osu.Framework/Graphics/UserInterface/BasicTabControl.cs
mit
1,587,138,864
// 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.Graphics.Sprites; using osuTK.Graphics; namespace osu.Framework.Graphics.UserInterface { public class BasicTabControl<T> : TabControl<T> { ...
// 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.Graphics.Sprites; using osuTK.Graphics; namespace osu.Framework.Graphics.UserInterface { public class BasicTabControl<T> : TabControl<T> { ...
75d1deacd958e8ce8f31cd5823fe38f0e60c49ef
Remove moon textures unloading
Remove moon textures unloading Don't unload textures provided by ModSupport, that keeps those textures into an internal cache (square moons bug). ModSupport now takes care of unloading and removing unused textures from its cache after a while. Forums: https://forums.dfworkshop.net/viewtopic.php?f=27&t=1542&start=6...
Nystul-the-Magician/dfunity-mods
EnhancedSky/Scripts/MoonController.cs
mit
1,587,138,665
//Enhanced Sky for Daggerfall Tools for Unity by Lypyl, contact at lypyl@dfworkshop.net //http://www.reddit.com/r/dftfu //http://www.dfworkshop.net/ //Author: LypyL ///Contact: Lypyl@dfworkshop.net //License: MIT License (http://www.opensource.org/licenses/mit-license.php) using UnityEngine; using System.Collections....
//Enhanced Sky for Daggerfall Tools for Unity by Lypyl, contact at lypyl@dfworkshop.net //http://www.reddit.com/r/dftfu //http://www.dfworkshop.net/ //Author: LypyL ///Contact: Lypyl@dfworkshop.net //License: MIT License (http://www.opensource.org/licenses/mit-license.php) using UnityEngine; using System.Collections....
1eae934ac5f295180e392f144e662ff3cd194fc0
update TotpHelperTest.cs
update TotpHelperTest.cs
WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common
test/WeihanLi.Common.Test/HelpersTest/TotpHelperTest.cs
mit
1,587,138,530
using System.Threading; using WeihanLi.Common.Helpers; using Xunit; namespace WeihanLi.Common.Test.HelpersTest { public class TotpHelperTest { private readonly object _lock = new object(); private readonly string bizToken = "test_xxx"; [Fact] public void Test() { ...
using System.Threading; using WeihanLi.Common.Helpers; using Xunit; namespace WeihanLi.Common.Test.HelpersTest { public class TotpHelperTest { private readonly object _lock = new object(); private readonly string bizToken = "test_xxx"; [Fact] public void Test() { ...
b74f2008e1990bc7325e2ec4d797374401358205
Add HR time series methods using v1 of the API and deprecate unsupported
Add HR time series methods using v1 of the API and deprecate unsupported
aarondcoleman/Fitbit.NET,aarondcoleman/Fitbit.NET
Fitbit.Portable/FitbitClient.cs
mit
1,587,137,921
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using Fitbit.Api.Portable.OAuth2; using System.Net.Http.Headers; using Fitbit.Api.Portable.Models; using Fitbit.Models; using Newtonsoft.Json; ...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using Fitbit.Api.Portable.OAuth2; using System.Net.Http.Headers; using Fitbit.Api.Portable.Models; using Fitbit.Models; using Newtonsoft.Json; ...
455f796bc07e25518f43eb1c1b1dd7d0f9b818f7
Use tooltip
Use tooltip
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/SendControlViewModel.cs
mit
1,587,137,764
using Avalonia.Input; using AvalonStudio.Extensibility; using AvalonStudio.Shell; using NBitcoin; using NBitcoin.Payment; using ReactiveUI; using Splat; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Reactive; using System.Reactive.Disposables; us...
using Avalonia.Input; using AvalonStudio.Extensibility; using AvalonStudio.Shell; using NBitcoin; using NBitcoin.Payment; using ReactiveUI; using Splat; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Reactive; using System.Reactive.Disposables; us...
5aaf30dfa6a35db0ff11a8531ed3ac19fddb53c0
Update cli message
Update cli message
WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework
Framework.Cli/App/AppCli.cs
mit
1,587,137,369
namespace Framework.Cli { using Database.dbo; using DatabaseBuiltIn.dbo; using Framework.Cli.Command; using Framework.Cli.Config; using Framework.Cli.Generate; using Framework.Config; using Framework.DataAccessLayer; using Microsoft.Extensions.CommandLineUtils; using System; usi...
namespace Framework.Cli { using Database.dbo; using DatabaseBuiltIn.dbo; using Framework.Cli.Command; using Framework.Cli.Config; using Framework.Cli.Generate; using Framework.Config; using Framework.DataAccessLayer; using Microsoft.Extensions.CommandLineUtils; using System; usi...
ac9e86862046116c3a5df044b6506e9c1e7ed5e6
Fixed DB loading type IDictionary<int,IIndirect<SomeAbstractClass>>
Fixed DB loading type IDictionary<int,IIndirect<SomeAbstractClass>>
Bobris/BTDB,karasek/BTDB,klesta490/BTDB
BTDB/FieldHandler/DBObjectFieldHandler.cs
mit
1,587,137,286
using System; using System.Linq; using BTDB.IL; using BTDB.ODBLayer; using BTDB.StreamLayer; namespace BTDB.FieldHandler { public class DBObjectFieldHandler : IFieldHandler, IFieldHandlerWithInit { readonly IObjectDB _objectDb; readonly byte[] _configuration; readonly string? _typeName...
using System; using System.Linq; using BTDB.IL; using BTDB.ODBLayer; using BTDB.StreamLayer; namespace BTDB.FieldHandler { public class DBObjectFieldHandler : IFieldHandler, IFieldHandlerWithInit { readonly IObjectDB _objectDb; readonly byte[] _configuration; readonly string? _typeName...
f4768561d742706b795fa4e4928670fe74d9d1d7
Generate better release notes for Autosynth PRs
Generate better release notes for Autosynth PRs The format of the autosynth commits has changed significantly over time. This still isn't perfect, and the release notes need hand-tweaking, in particular when a single comment was split over multiple lines (so ends up as multiple bullet points) but it's much better than...
googleapis/google-cloud-dotnet,googleapis/google-cloud-dotnet,googleapis/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,googleapis/google-cloud-dotnet,jskeet/gcloud-dotnet,jskeet/google-cloud-dotnet
tools/Google.Cloud.Tools.UpdateReleaseNotes/GitCommit.cs
apache-2.0
1,587,136,968
// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
1352ae6eee4ffd2ba6dea25310c39581a171b168
Version Name update
Version Name update
Slazanger/SMT,Slazanger/SMT
MainWindow.xaml.cs
mit
1,587,136,752
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Input; using System.Windows.Media; using System...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Input; using System.Windows.Media; using System...
1ac9ee599088d893211bd6dbcdba16662275e745
Optimize recommender (for custom rulesets)
Optimize recommender (for custom rulesets)
ppy/osu,ppy/osu,smoogipoo/osu,peppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,UselessToucan/osu
osu.Game/Screens/Select/DifficultyRecommender.cs
mit
1,587,136,511
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.IEnumerab...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.IEnumerab...
1838e27b915a48a2738ff82a80c3b9b8480beff3
Remove unused using.
Remove unused using.
ryanjfitz/SimpSim.NET,ryanjfitz/SimpSim.NET
SimpSim.NET/Assembly/InstructionSyntax.cs
mit
1,587,135,827
using System.Linq; namespace SimpSim.NET { internal class InstructionSyntax { public string Comment { get; } public string Label { get; } public string Mnemonic { get; } public string[] Operands { get; } private const char CommentDelimiter = ';'; private const ...
using System; using System.Linq; namespace SimpSim.NET { internal class InstructionSyntax { public string Comment { get; } public string Label { get; } public string Mnemonic { get; } public string[] Operands { get; } private const char CommentDelimiter = ';'; ...
ef47ae2230e42e5e303e11a536c997e157833f15
Auto expand wallets when user selects them.
Auto expand wallets when user selects them.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/WalletExplorerViewModel.cs
mit
1,587,134,745
using System.Security.Cryptography.X509Certificates; using System; using AvalonStudio.Extensibility; using AvalonStudio.MVVM; using AvalonStudio.Shell; using ReactiveUI; using Splat; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Composition; using System.Linq; using System.Reactiv...
using System.Security.Cryptography.X509Certificates; using System; using AvalonStudio.Extensibility; using AvalonStudio.MVVM; using AvalonStudio.Shell; using ReactiveUI; using Splat; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Composition; using System.Linq; using System.Reactiv...
25ce4b5057d786434d889a6047118bae1c163000
Added a dynamic Access parameter.
Added a dynamic Access parameter.
googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools
NtObjectManager/Cmdlets/Object/GetNtGrantedAccessCmdlet.cs
apache-2.0
1,587,133,551
// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applica...
// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applica...
db4bd5615a70f951dc3b831035495986495272ed
slight change to employer with alerts
slight change to employer with alerts
SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments
src/CommitmentsV2/SFA.DAS.CommitmentsV2/Extensions/QueryableApprenticeshipsExtensions.cs
mit
1,587,132,833
using System; using System.Collections.Generic; using System.Linq; using SFA.DAS.CommitmentsV2.Domain.Extensions; using SFA.DAS.CommitmentsV2.Domain.Interfaces; using SFA.DAS.CommitmentsV2.Models; using SFA.DAS.CommitmentsV2.Types; namespace SFA.DAS.CommitmentsV2.Extensions { public static class QueryableApprent...
using System; using System.Collections.Generic; using System.Linq; using SFA.DAS.CommitmentsV2.Domain.Extensions; using SFA.DAS.CommitmentsV2.Domain.Interfaces; using SFA.DAS.CommitmentsV2.Models; using SFA.DAS.CommitmentsV2.Types; namespace SFA.DAS.CommitmentsV2.Extensions { public static class QueryableApprent...
9e888c5d33923fc3daeb8a5cf9fb7c7e465f8dc0
#411 Optimize code
#411 Optimize code
Sitecore/Sitecore-Instance-Manager,Sitecore/Sitecore-Instance-Manager
src/SIM.Sitecore9Installer/Validation/Validators/AppPoolSiteValidator.cs
mit
1,587,132,202
using System; using System.Collections.Generic; using System.Linq; using Microsoft.Web.Administration; using SIM.Sitecore9Installer.Tasks; namespace SIM.Sitecore9Installer.Validation.Validators { public class AppPoolSiteValidator : IValidator { protected virtual string SiteName => "SiteName"; protected v...
using System; using System.Collections.Generic; using System.Linq; using Microsoft.Web.Administration; using SIM.Sitecore9Installer.Tasks; namespace SIM.Sitecore9Installer.Validation.Validators { public class AppPoolSiteValidator : IValidator { protected virtual string SiteName => "SiteName"; protected v...
b3519abb908c86b90c747455cb65c3b0d1dc28e1
Fix CI warnings
Fix CI warnings
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/UnitTests/BitcoinCore/RpcBasedTests.cs
mit
1,587,132,071
using NBitcoin; using NBitcoin.RPC; using System.Linq; using System.Threading; using System.Threading.Tasks; using WalletWasabi.BitcoinCore; using WalletWasabi.BitcoinCore.RpcModels; using WalletWasabi.Services; using WalletWasabi.Tests.Helpers; using Xunit; namespace WalletWasabi.Tests.UnitTests.BitcoinCore { public...
using NBitcoin; using NBitcoin.RPC; using System.Linq; using System.Threading; using System.Threading.Tasks; using WalletWasabi.BitcoinCore; using WalletWasabi.BitcoinCore.RpcModels; using WalletWasabi.Services; using WalletWasabi.Tests.Helpers; using Xunit; namespace WalletWasabi.Tests.UnitTests.BitcoinCore { public...
7d6e6edcd1414141eda747c35003867e2a6116a6
Disable collision for things inside EntityStorageComponents + enable putting mobs in lockers
Disable collision for things inside EntityStorageComponents + enable putting mobs in lockers
space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14
Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs
mit
1,587,130,817
using System; using System.Linq; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Storage; using Robust.Server.GameObjects; using Ro...
using System; using System.Linq; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Storage; using Robust.Server.GameObjects; using Ro...
760dca4837c1dcb572900b5f24a13fc10fcbe267
Added CultureInfo.InvariantCulture to the ParameterReader for doubles and integers so the Iges file is read correcly independent of the users systemsettings
Added CultureInfo.InvariantCulture to the ParameterReader for doubles and integers so the Iges file is read correcly independent of the users systemsettings
IxMilia/Iges,IxMilia/Iges
src/IxMilia.Iges/IgesParameterReader.cs
apache-2.0
1,587,130,584
// Copyright (c) IxMilia. 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; namespace IxMilia.Iges { using System.Globalization; internal static class IgesParameterReader { ...
// Copyright (c) IxMilia. 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; namespace IxMilia.Iges { internal static class IgesParameterReader { public static double Doub...
cbf1446a0346bd6cd8d5ef168775d6fc4a2b578e
Updated XML docs and added NLM_UNKNOWN_DATAPLAN_STATUS const to NLM_DATAPLAN_STATUS.
Updated XML docs and added NLM_UNKNOWN_DATAPLAN_STATUS const to NLM_DATAPLAN_STATUS.
dahall/vanara
PInvoke/NetListMgr/NetListMgr.cs
mit
1,587,129,695
using System; using System.Collections; using System.IO; using System.Net; using System.Net.Sockets; using System.Runtime.InteropServices; using Vanara.InteropServices; using FILETIME = System.Runtime.InteropServices.ComTypes.FILETIME; [assembly: Guid("DCB00D01-570F-4A9B-8D69-199FDBA5723B")] #if !NETSTANDARD2_0 [asse...
using System; using System.Collections; using System.IO; using System.Net; using System.Net.Sockets; using System.Runtime.InteropServices; using Vanara.InteropServices; using FILETIME = System.Runtime.InteropServices.ComTypes.FILETIME; [assembly: Guid("DCB00D01-570F-4A9B-8D69-199FDBA5723B")] #if !NETSTANDARD2_0 [asse...
6461239d1106b261d681d5cf4f22a67ed4071898
use same style for all code vision display names
use same style for all code vision display names
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Rider/CodeInsights/UnityUsagesCodeVisionProvider.cs
apache-2.0
1,587,128,810
using System.Collections.Generic; using JetBrains.Application; using JetBrains.Application.DataContext; using JetBrains.Application.UI.Actions.ActionManager; using JetBrains.Application.UI.ActionsRevised.Handlers; using JetBrains.Application.UI.DataContext; using JetBrains.Application.UI.PopupLayout; using JetBrains.Co...
using System.Collections.Generic; using JetBrains.Application; using JetBrains.Application.DataContext; using JetBrains.Application.UI.Actions.ActionManager; using JetBrains.Application.UI.ActionsRevised.Handlers; using JetBrains.Application.UI.DataContext; using JetBrains.Application.UI.PopupLayout; using JetBrains.Co...
c4e2271924a5a4ce6b00d4a9ff89597b214e7386
Fix tooltip font color when an item grants damage resistance against multiple enemy types (#321)
Fix tooltip font color when an item grants damage resistance against multiple enemy types (#321) Fix #265
EtienneLamoureux/TQVaultAE
src/TQVaultAE.Data/ItemProvider.cs
mit
1,587,127,984
//----------------------------------------------------------------------- // <copyright file="Item.cs" company="None"> // Copyright (c) Brandon Wallace and Jesse Calhoun. All rights reserved. // </copyright> //----------------------------------------------------------------------- namespace TQVaultAE.Data { using ...
//----------------------------------------------------------------------- // <copyright file="Item.cs" company="None"> // Copyright (c) Brandon Wallace and Jesse Calhoun. All rights reserved. // </copyright> //----------------------------------------------------------------------- namespace TQVaultAE.Data { using ...
0f747a3bac967108953f2517a9543859daad28ab
Corrected Util.Extension RemoveFirst and RemoveLast
Corrected Util.Extension RemoveFirst and RemoveLast
Arkhist/Hacknet-Pathfinder,Arkhist/Hacknet-Pathfinder,Arkhist/Hacknet-Pathfinder,Arkhist/Hacknet-Pathfinder
Pathfinder/Util/Extensions.cs
mit
1,587,127,565
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; using Hacknet; using Microsoft.Xna.Framework.Graphics; namespace Pathfinder.Util { public static class Extensions { public static bool HasAttribute...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; using Hacknet; using Microsoft.Xna.Framework.Graphics; namespace Pathfinder.Util { public static class Extensions { public static bool HasAttribute...
e1c6de5dc3e97ed1c81e5d652cecc185e05e1e0a
fix top10 sorting, add gameobject ping button, show top20
fix top10 sorting, add gameobject ping button, show top20
UnityCommunity/UnityLibrary
Assets/Scripts/Editor/Tools/GetSelectedMeshInfo.cs
mit
1,587,127,487
// display selected gameobject mesh stats (should work on prefabs,models in project window also) using System.Collections.Generic; using System.Linq; using UnityEditor; using UnityEngine; namespace UnityLibrary { public class GetSelectedMeshInfo : EditorWindow { bool selectionChanged = false; ...
// display selected gameobject mesh stats (should work on prefabs,models in project window also) using System.Collections.Generic; using UnityEditor; using UnityEngine; namespace UnityLibrary { public class GetSelectedMeshInfo : EditorWindow { bool selectionChanged = false; int totalMeshes = ...
fe15654479480b6b55607b32edc4db1f29f6209c
Improve .NET Core test stability
Improve .NET Core test stability
ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab
source/Tests/ExecutionTests.cs
bsd-2-clause
1,587,127,273
using System; using System.Collections.Generic; #if DEBUG using System.IO; #endif using System.Linq; #if DEBUG using System.Reflection; #endif using System.Runtime.Serialization; using System.Text.RegularExpressions; using System.Threading.Tasks; using Microsoft.CodeAnalysis; using Newtonsoft.Json; using ...
using System; using System.Collections.Generic; #if DEBUG using System.IO; #endif using System.Linq; #if DEBUG using System.Reflection; #endif using System.Runtime.Serialization; using System.Text.RegularExpressions; using System.Threading.Tasks; using Microsoft.CodeAnalysis; using Newtonsoft.Json; using ...
bfacb5056389926e76a0db10da760cbe5e424488
Disable flaky test
Disable flaky test Relates to #1330
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Integration.Vsix.UnitTests/CFamily/ProcessRunnerTests.cs
mit
1,587,127,230
/* * 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 ...
6a0503726fad17e16f91109eee0157fb3c998e28
Passed the right encoder to WriteErrorResponseMessage to handle Soap1.1 Fault format and Soap1.2 format
Passed the right encoder to WriteErrorResponseMessage to handle Soap1.1 Fault format and Soap1.2 format
DigDes/SoapCore
src/SoapCore/SoapEndpointMiddleware.cs
mit
1,587,126,150
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Reflection; using System.Runtime.CompilerServices; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Reflection; using System.Runtime.CompilerServices; using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using System.Xml; using...
790d2ad8536d684161b6b4177dd5094eb6c78f3c
Update ents.cs
Update ents.cs
dimmpixeye/Unity3dTools
Runtime/LibMisc/ents.cs
mit
1,587,125,639
// Project : ecs // Contacts : Pix - ask@pixeye.games using System; using System.Collections; using System.Collections.Generic; using System.Runtime.CompilerServices; using Unity.IL2CPP.CompilerServices; using UnityEngine; namespace Pixeye.Actors { [Serializable] public class ents : IEnumerable { public ent[] s...
// Project : ecs // Contacts : Pix - ask@pixeye.games using System; using System.Collections; using System.Collections.Generic; using System.Runtime.CompilerServices; using Unity.IL2CPP.CompilerServices; using UnityEngine; namespace Pixeye.Actors { [Serializable] public class ents : IEnumerable { public ent[] s...
6cd22ae9032f3f1c93e31768459c3a719e1f0955
setting default expose method
setting default expose method
ipjohnson/EasyRpc
tests/EasyRpc.Tests/AspNetCore/ModelBinding/InternalRouting/IntParameterTests.cs
mit
1,587,125,192
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using EasyRpc.AspNetCore; using EasyRpc.Tests.Services.Models; using Xunit; namespace EasyRpc.Tests.AspNetCore.ModelBinding.InternalRouting { public class IntParameterTests : BaseRequestTest { #region Serv...
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using EasyRpc.AspNetCore; using EasyRpc.Tests.Services.Models; using Xunit; namespace EasyRpc.Tests.AspNetCore.ModelBinding.InternalRouting { public class IntParameterTests : BaseRequestTest { #region Serv...
5f49ab5323ad38f7614d204f3800b13752c39d07
adding xml docs
adding xml docs
ipjohnson/EasyRpc
src/EasyRpc.AspNetCore/ModelBinding/IUrlParameterBinder.cs
mit
1,587,125,073
using System; using System.Collections.Generic; using System.Text; using EasyRpc.AspNetCore.EndPoints; namespace EasyRpc.AspNetCore.ModelBinding { /// <summary> /// Interface for binding url/query string values to a request parameter object /// </summary> public interface IUrlParameterBinder { ...
using System; using System.Collections.Generic; using System.Text; using EasyRpc.AspNetCore.EndPoints; namespace EasyRpc.AspNetCore.ModelBinding { public interface IUrlParameterBinder { void BindUrlParameter(RequestExecutionContext context, EndPointMethodConfiguration configuration, IRpcPa...
f71f4f3a97de3cc157f2f8e410015d732898556c
add HeavyProfiler.Log to AzureBlobStoragebFileTypeAlgorithm, and add create if necessary bool
add HeavyProfiler.Log to AzureBlobStoragebFileTypeAlgorithm, and add create if necessary bool
signumsoftware/extensions,AlejandroCano/extensions,MehdyKarimpour/extensions,signumsoftware/framework,signumsoftware/extensions,signumsoftware/framework,signumsoftware/framework,MehdyKarimpour/extensions,AlejandroCano/extensions
Signum.Engine.Extensions/Files/AzureBlobStoragebFileTypeAlgorithm.cs
mit
1,587,123,859
using Azure; using Azure.Storage.Blobs; using Signum.Entities.Files; using Signum.Utilities; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; namespace Signum.Engine.Files { public static class BlobContainerClientPool { ...
using Azure; using Azure.Storage.Blobs; using Signum.Entities.Files; using Signum.Utilities; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; namespace Signum.Engine.Files { public static class BlobContainerClientPool { ...
b66df5122d5a9df581b79a4636fb1fbc8df2b587
Increase timeout to 20 seconds
Increase timeout to 20 seconds
SonarSource-VisualStudio/sonarlint-visualstudio,SonarSource-VisualStudio/sonarlint-visualstudio
src/Integration.Vsix/CFamily/CFamilyHelper.cs
mit
1,587,123,822
/* * 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 ...
5687cf7823f0d99d739b109683f0b3742d2de7af
Fixed bug where collapsed child nodes weren't removing lines
Fixed bug where collapsed child nodes weren't removing lines
digiwombat/TalkerMakerDeluxe
TalkerMakerDeluxe/MainWindow.xaml.cs
mit
1,587,123,103
using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using TreeContainer; using System.IO; using System.ComponentModel; using Microsoft.Win32; using FontAwesome.WPF; using ICSharpCode.AvalonEdit.H...
using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using TreeContainer; using System.IO; using System.ComponentModel; using Microsoft.Win32; using FontAwesome.WPF; using ICSharpCode.AvalonEdit.H...
58a1c6e17186084345feedbd1c5b0d44c2ce8695
Reapply taiko visibility hack at a higher level
Reapply taiko visibility hack at a higher level
smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,ppy/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu
osu.Game.Rulesets.Taiko/Objects/Drawables/DrawableDrumRoll.cs
mit
1,587,120,778
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Utils; using osu.Game.Graphics; using osu.Game.Rulesets.Objects.Drawables; using osu...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Utils; using osu.Game.Graphics; using osu.Game.Rulesets.Objects.Drawables; using osu...
0c14edd324a4461c3e77d318519455d37153ac11
Fixes validation of Solution build property
Fixes validation of Solution build property
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Context/BuildPropertiesSession.cs
bsd-2-clause
1,587,120,317
using System; using System.Collections.Generic; using System.Globalization; using System.Reflection; using System.Runtime.CompilerServices; using FlubuCore.Context.Attributes; using FlubuCore.Targeting; using FlubuCore.Tasks; using FlubuCore.Tasks.Solution.VSSolutionBrowsing; using FlubuCore.Tasks.Versioning; namespa...
using System; using System.Collections.Generic; using System.Globalization; using System.Reflection; using System.Runtime.CompilerServices; using FlubuCore.Context.Attributes; using FlubuCore.Targeting; using FlubuCore.Tasks; using FlubuCore.Tasks.Versioning; namespace FlubuCore.Context { /// <summary> /// Us...
8dbbf1bf0890acfad1caf86be146487e4cdfc539
specific validateScopes
specific validateScopes
WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common
src/WeihanLi.Common/DependencyResolver.cs
mit
1,587,120,126
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using JetBrains.Annotations; using WeihanLi.Common.DependencyInjection; #if NETSTANDARD2_0 using Microsoft.Extensions.DependencyInjection; using ServiceLifetime = Microsoft.Extensions.DependencyInjection.ServiceLifetime;...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using JetBrains.Annotations; using WeihanLi.Common.DependencyInjection; #if NETSTANDARD2_0 using Microsoft.Extensions.DependencyInjection; using ServiceLifetime = Microsoft.Extensions.DependencyInjection.ServiceLifetime;...
dc5b4ddfd8856fb051e3ffe5e414a5cadac30d57
[Modify] Remove it
[Modify] Remove it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,587,120,079
#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-...
9f2c637177196cef0fa133b08e4797f3dd568959
[Modify] Remove it
[Modify] Remove it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,587,119,975
#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-...
10b6d66470db9c959e28932531bca77c9bed05e8
[Modify] Remove it
[Modify] Remove it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,587,119,887
#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-...
6519f078a2c9f681d0e7bfd9039e05179bf03f20
Add interface definition
Add interface definition
mfilippov/vimeo-dot-net
src/VimeoDotNet/IVimeoClient.cs
mit
1,587,118,441
using System; using System.Collections.Generic; using System.Threading.Tasks; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDotNet { /// <summary> /// Interface of Vimeo API /// </summary> public inte...
using System; using System.Collections.Generic; using System.Threading.Tasks; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDotNet { /// <summary> /// Interface of Vimeo API /// </summary> public int...
28c75ae214d62a4f8bce704a55cb8ed93c1cbf13
Update size to long
Update size to long
mfilippov/vimeo-dot-net
src/VimeoDotNet/VimeoClient_Upload.cs
mit
1,587,118,441
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using VimeoDotNet.Constants; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDot...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using VimeoDotNet.Constants; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDot...
79b215bf666278622f1872ab615ab53b6babcc3e
Add test case for resumable upload
Add test case for resumable upload
mfilippov/vimeo-dot-net
src/VimeoDotNet.Tests/UploadTests.cs
mit
1,587,118,441
using System.IO; using System.Threading.Tasks; using Shouldly; using VimeoDotNet.Net; using Xunit; namespace VimeoDotNet.Tests { public class UploadTests : BaseTest { [Fact] public async Task ShouldCorrectlyGenerateNewUploadTicket() { var client = CreateAuthenticatedClient()...
using System.IO; using System.Threading.Tasks; using Shouldly; using VimeoDotNet.Net; using Xunit; namespace VimeoDotNet.Tests { public class UploadTests : BaseTest { [Fact] public async Task ShouldCorrectlyGenerateNewUploadTicket() { var client = CreateAuthenticatedClient(...
8a5c024864294f27d6badef38de2d7191a9845ac
Add version 3.4
Add version 3.4
mfilippov/vimeo-dot-net
src/VimeoDotNet/Constants/ApiVersions.cs
mit
1,587,118,441
// ReSharper disable InconsistentNaming using JetBrains.Annotations; namespace VimeoDotNet.Constants { internal static class ApiVersions { [PublicAPI] public const string v2_0 = "version=2.0"; [PublicAPI] public const string v2_5 = "version=2.5"; [PublicAPI] publ...
// ReSharper disable InconsistentNaming using JetBrains.Annotations; namespace VimeoDotNet.Constants { internal static class ApiVersions { [PublicAPI] public const string v2_0 = "version=2.0"; [PublicAPI] public const string v2_5 = "version=2.5"; [PublicAPI] pub...
0395a74c7907b1c5acd8bee26cb0194146dfcd70
Update size to long
Update size to long
mfilippov/vimeo-dot-net
src/VimeoDotNet/IVimeoClient.cs
mit
1,587,118,441
using System; using System.Collections.Generic; using System.Threading.Tasks; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDotNet { /// <summary> /// Interface of Vimeo API /// </summary> public inte...
using System; using System.Collections.Generic; using System.Threading.Tasks; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDotNet { /// <summary> /// Interface of Vimeo API /// </summary> public inte...
d389523a976d77cc15f835bb8306081e34d5d250
Update size to long
Update size to long
mfilippov/vimeo-dot-net
src/VimeoDotNet/Models/TusResumableUploadTicket.cs
mit
1,587,118,441
using System.Collections.Generic; using JetBrains.Annotations; using Newtonsoft.Json; namespace VimeoDotNet.Models { /// <summary> /// Upload ticket /// </summary> public class TusResumableUploadTicket : Video { /// <summary> /// Upload status /// </summary> ...
using System.Collections.Generic; using JetBrains.Annotations; using Newtonsoft.Json; namespace VimeoDotNet.Models { /// <summary> /// Upload ticket /// </summary> public class TusResumableUploadTicket : Video { /// <summary> /// Upload status /// </summary> ...
19168a8c1f7d0dca0a1893f43de4b68b26363eb4
Add resumable upload request method
Add resumable upload request method
mfilippov/vimeo-dot-net
src/VimeoDotNet/VimeoClient_Upload.cs
mit
1,587,118,441
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using VimeoDotNet.Constants; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDot...
using System; using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using VimeoDotNet.Constants; using VimeoDotNet.Enums; using VimeoDotNet.Exceptions; using VimeoDotNet.Models; using VimeoDotNet.Net; using VimeoDotNet.Parameters; namespace VimeoDotNet { public partial class Vi...
d2e7f55c1963ab4bc52c5de868eb8f0b08ae53b9
IMG_* constants
IMG_* constants
iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept
src/Peachpie.Library.Graphics/PhpGd2.cs
apache-2.0
1,587,117,980
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Numerics; using Pchp.Core; using Pchp.Library.Streams; using SixLabors.Fonts; using SixLabors.ImageSharp; using SixLabors.ImageSharp.Advanced; using SixLabors.ImageSharp.Drawing; using SixLabors.ImageSharp.Drawing.P...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Numerics; using Pchp.Core; using Pchp.Library.Streams; using SixLabors.Fonts; using SixLabors.ImageSharp; using SixLabors.ImageSharp.Advanced; using SixLabors.ImageSharp.Drawing; using SixLabors.ImageSharp.Drawing.P...
cae0132f61aa167ed5d3f0e590687925bcaff273
IMAGETYPE_WEBP
IMAGETYPE_WEBP
peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept
src/Peachpie.Library.Graphics/PhpImage.cs
apache-2.0
1,587,117,676
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Pchp.Core; namespace Peachpie.Library.Graphics { [PhpExtension("image")] public static class PhpImage { #region ImageType //...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Pchp.Core; namespace Peachpie.Library.Graphics { [PhpExtension("image")] public static class PhpImage { #region ImageType //...
3fce884f9718ccddf5c0ff11f3016d290e63c0cd
DNS_* constants
DNS_* constants
iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie
src/Peachpie.Library/Network.cs
apache-2.0
1,587,117,069
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Threading.Tasks; using Pchp.Core; using Pchp.Library.Streams; using static Pchp.Library.Network; namespace Pchp.Library { /// <summary> /// Socket functions. /// </summary> [PhpExtension("standard")] public...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Threading.Tasks; using Pchp.Core; using Pchp.Library.Streams; using static Pchp.Library.Network; namespace Pchp.Library { /// <summary> /// Socket functions. /// </summary> [PhpExtension("standard")] public...
b9ade1dbddc885db64666bbcf7afeecd449f1d15
Bump resource compiler version
Bump resource compiler version ARKADE-0
arkivverket/arkade5,arkivverket/arkade5
src/Arkivverket.Arkade.Core/Resources/Report.Designer.cs
agpl-3.0
1,587,116,706
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
c9296b381b246217469ec796f1b48195a97090b8
Fixes default AfterBuildExcecution when MainCommands are null
Fixes default AfterBuildExcecution when MainCommands are null
flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core,flubu-core/flubu.core
src/FlubuCore/Scripting/DefaultBuildScript.cs
bsd-2-clause
1,587,116,199
using System; using System.Collections.Generic; using System.IO; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Runtime.InteropServices; using System.Threading.Tasks; using FlubuCore.Context; using FlubuCore.IO; using FlubuCore.Targeting; using FlubuCore.Tasks.Attributes; using FlubuCore.Tas...
using System; using System.Collections.Generic; using System.IO; #if !NETSTANDARD1_6 using System.Drawing; #endif using System.Runtime.InteropServices; using System.Threading.Tasks; using FlubuCore.Context; using FlubuCore.IO; using FlubuCore.Targeting; using FlubuCore.Tasks.Attributes; using FlubuCore.Tas...
429055dfa097f853417f09c815b2a34adba7b4e6
ASSERT_EXCEPTION
ASSERT_EXCEPTION
peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie
src/Peachpie.Library/Options.cs
apache-2.0
1,587,115,712
using Pchp.Core; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; namespace Pchp.Library { /// <summary> /// Manages association of PHP option names and flags. /// </summary> [PhpHidden] public static class StandardPhpOption...
using Pchp.Core; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; namespace Pchp.Library { /// <summary> /// Manages association of PHP option names and flags. /// </summary> [PhpHidden] public static class StandardPhpOption...
75cdc118abcd5bddda7bf23a0d52cf95a9f32a56
GLOB_AVAILABLE_FLAGS
GLOB_AVAILABLE_FLAGS
iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie
src/Peachpie.Library/FileSystem.Glob.cs
apache-2.0
1,587,115,358
using Pchp.Core; using Pchp.Core.Utilities; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pchp.Library { [PhpExtension("standard")] public static partial class PhpPath { #regi...
using Pchp.Core; using Pchp.Core.Utilities; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pchp.Library { [PhpExtension("standard")] public static partial class PhpPath { #regi...
0fe237f3d6346a6255bf53806ed20de52c662e09
Improve documentation for BuildDefaultConfig (#423)
Improve documentation for BuildDefaultConfig (#423) The current documentation only mentions that it uses a default config file. However, it actually works with a lot more than that and it is helpful to see that in the documentation.
kubernetes-client/csharp,kubernetes-client/csharp
src/KubernetesClient/KubernetesClientConfiguration.ConfigFile.cs
apache-2.0
1,587,115,192
using System; #if NETSTANDARD2_0 using Newtonsoft.Json; using System.Collections.Generic; using System.Diagnostics; #endif using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; using k8s.Exceptions; using k8s.KubeConf...
using System; #if NETSTANDARD2_0 using Newtonsoft.Json; using System.Collections.Generic; using System.Diagnostics; #endif using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; using k8s.Exceptions; using k8s.KubeConf...
a7ca016bcebc1ae0d4bca5ccbf12b56b23349c01
scandir() sorting order constants
scandir() sorting order constants
iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie
src/Peachpie.Library/FileSystem.Directory.cs
apache-2.0
1,587,115,056
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Pchp.Core; using Pchp.Core.Utilities; using Pchp.Library.Streams; namespace Pchp.Library { #region PHP class: Directory /// <summary> /// User-lik...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Pchp.Core; using Pchp.Core.Utilities; using Pchp.Library.Streams; namespace Pchp.Library { #region PHP class: Directory /// <summary> /// User-lik...