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
958253f4262a0c00484de0e87185a7966dd146e1
Fix game recording stopping when opening a menu
Fix game recording stopping when opening a menu Fixes #81 When disabling controls, switched from DISABLE_ALL_CONTROL_ACTIONS and ENABLE_CONTROL_ACTION with specific controls to only DISABLE_CONTROL_ACTION with specific controls. DISABLE_ALL_CONTROL_ACTIONS cancels the recording.
alexguirre/RAGENativeUI,alexguirre/RAGENativeUI,alexguirre/RAGENativeUI
Source/UIMenu.cs
mit
1,592,856,821
/* * * * Created by: Guad, CamxxCore, jedijosh920 * * * Ported by: alexguirre, Stealth22, LtFlash * */ using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Windows.Forms; using Rage; using Rage.Native; using RAGENativeUI.Elements; using R...
/* * * * Created by: Guad, CamxxCore, jedijosh920 * * * Ported by: alexguirre, Stealth22, LtFlash * */ using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Windows.Forms; using Rage; using Rage.Native; using RAGENativeUI.Elements; using R...
13b9e8218635713007be4954b03651e9dbc99a4a
PP9-9115, extend existing unit tests with and without resolve behavior for schemas.
PP9-9115, extend existing unit tests with and without resolve behavior for schemas.
Picturepark/Picturepark.SDK.DotNet,Picturepark/Picturepark.SDK.DotNet
src/Picturepark.SDK.V1.Tests/Clients/ShareTests.cs
mit
1,592,856,710
using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Picturepark.SDK.V1.Contract; using Xunit; using Picturepark.SDK.V1.Tests.Fixtures; using System.Linq; using System.Runtime.CompilerServices; using FluentAssertions; namespace Picturepark.SDK.V1.Tests.Clients { pub...
using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Picturepark.SDK.V1.Contract; using Xunit; using Picturepark.SDK.V1.Tests.Fixtures; using System.Linq; using System.Runtime.CompilerServices; using FluentAssertions; namespace Picturepark.SDK.V1.Tests.Clients { pub...
bc3c44ef789d7cae618890d7721b5f065befa637
Add simple binding redirect to latest referenced version in Builder
Add simple binding redirect to latest referenced version in Builder
ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake
Sharpmake/Builder.cs
apache-2.0
1,592,855,708
// Copyright (c) 2017 Ubisoft Entertainment // // 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 la...
// Copyright (c) 2017 Ubisoft Entertainment // // 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 la...
b908670cac139d427777c103c4a4dd1c5e9dac1a
BitcoinStore: Prepare for removing `workFolderPath` & `network` parameters from the class's constructor
BitcoinStore: Prepare for removing `workFolderPath` & `network` parameters from the class's constructor (cherry picked from commit f77b7cfa716590cab2d564059edcf801c48bf7e0)
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Stores/BitcoinStore.cs
mit
1,592,855,524
using NBitcoin; using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading.Tasks; using WalletWasabi.Blockchain.Blocks; using WalletWasabi.Blockchain.Mempool; using WalletWasabi.Blockchain.P2p; using WalletWasabi.Blockchain.Transactions; using WalletWasabi.Helpers; using ...
using NBitcoin; using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading.Tasks; using WalletWasabi.Blockchain.Blocks; using WalletWasabi.Blockchain.Mempool; using WalletWasabi.Blockchain.P2p; using WalletWasabi.Blockchain.Transactions; using WalletWasabi.Helpers; using ...
4381770c9d03c5776df61e97df94a66160ad3b08
Exception message improved.
Exception message improved.
Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex
backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOperationContext.cs
mit
1,592,855,360
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschränkt) // All rights reserved. Licensed under the MIT license. // ============================...
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschränkt) // All rights reserved. Licensed under the MIT license. // ============================...
ccd201e806bee4b6d30117e4c9a2d9b78747c48c
Updates to start using new DML files
Updates to start using new DML files
Vulnerator/Vulnerator
Model/DataAccess/DatabaseInterface.cs
mit
1,592,854,161
using log4net; using System; using System.Collections.Generic; using System.Data.SQLite; using System.IO; using System.Reflection; using System.Text.RegularExpressions; using Vulnerator.Helper; using Vulnerator.Model.Object; namespace Vulnerator.Model.DataAccess { public class DatabaseInterface { DdlR...
using log4net; using System; using System.Collections.Generic; using System.Data.SQLite; using System.IO; using System.Reflection; using System.Text.RegularExpressions; using Vulnerator.Helper; using Vulnerator.Model.Object; namespace Vulnerator.Model.DataAccess { public class DatabaseInterface { DdlR...
ccec61c09c7da4e62b87da148764972d71934247
Return null when Hover request is cancelled or no symbol details (#1316)
Return null when Hover request is cancelled or no symbol details (#1316) Previously we returned a new Hover instance without initializing the Contents or Range members. At least in VS Code, this will result in the LSP client attempting to access null properties. As we're not returning any Hover data, the correct re...
PowerShell/PowerShellEditorServices,PowerShell/PowerShellEditorServices
src/PowerShellEditorServices/Services/TextDocument/Handlers/HoverHandler.cs
mit
1,592,853,934
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Microsoft.PowerShell.EditorServ...
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Microsoft.PowerShell.EditorServ...
5459c210661c95562bcf750c8a373fb50374c075
Hot Fix Pools
Hot Fix Pools
dimmpixeye/Unity3dTools
Runtime/Core/ImplObj.cs
mit
1,592,853,111
using System; using System.Diagnostics; using UnityEngine; using UnityEngine.SceneManagement; using Debug = UnityEngine.Debug; namespace Pixeye.Actors { public class ImplObj : IRequireActorsLayer { Layer layer; void IRequireActorsLayer.Bootstrap(Layer layer) { this.layer = layer; } #r...
using System; using System.Diagnostics; using UnityEngine; using UnityEngine.SceneManagement; using Debug = UnityEngine.Debug; namespace Pixeye.Actors { public class ImplObj : IRequireActorsLayer { Layer layer; void IRequireActorsLayer.Bootstrap(Layer layer) { this.layer = layer; } #r...
8d637dfffa1e809c6b94a296a5b8d6e742a4d396
Hot Fix Pools
Hot Fix Pools
dimmpixeye/Unity3dTools
Runtime/Core/ImplObj.cs
mit
1,592,853,051
using System; using System.Diagnostics; using UnityEngine; using UnityEngine.SceneManagement; using Debug = UnityEngine.Debug; namespace Pixeye.Actors { public class ImplObj : IRequireActorsLayer { Layer layer; void IRequireActorsLayer.Bootstrap(Layer layer) { this.layer = layer; } #r...
using System; using System.Diagnostics; using UnityEngine; using UnityEngine.SceneManagement; using Debug = UnityEngine.Debug; namespace Pixeye.Actors { public class ImplObj : IRequireActorsLayer { Layer layer; void IRequireActorsLayer.Bootstrap(Layer layer) { this.layer = layer; } #r...
2a089fe96915f30c2547ba22706984cc765034a4
Test fix for vm
Test fix for vm
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Core/NakedObjects.Core/Component/LifeCycleManager.cs
apache-2.0
1,592,852,752
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requir...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requir...
74b0f97740c1a135dff29ed8a33cd02bb8ac1c68
Update IFacetFactory.cs
Update IFacetFactory.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Core/NakedObjects.Architecture/Component/IFacetFactory.cs
apache-2.0
1,592,852,735
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requir...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requir...
7bbcf75cf7fb86ee29a0a5a589e374c6ac098d1f
Fix authority URL in the quickstart guide 1 (#4552)
Fix authority URL in the quickstart guide 1 (#4552) It was not matching the URL of IdentityServer configured in [https://github.com/IdentityServer/IdentityServer4/blob/main/samples/Quickstarts/1_ClientCredentials/src/IdentityServer/Properties/launchSettings.json].
MienDev/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4
samples/Quickstarts/1_ClientCredentials/src/Api/Startup.cs
apache-2.0
1,592,852,315
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.DependencyInjection; namespace Api { public class Startup { pu...
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.DependencyInjection; namespace Api { public class Startup { pu...
9fce0f0ae1f908017dbee6ca625f2d6d74c16df1
Fix unit test
Fix unit test
z4kn4fein/stashbox
test/FuncTests.cs
mit
1,592,850,834
using Stashbox.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Threading.Tasks; using Xunit; namespace Stashbox.Tests { public class FuncTests { [Fact] public void FuncTests_Resolve() {...
using Stashbox.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; using Xunit; namespace Stashbox.Tests { public class FuncTests { [Fact] public void FuncTests_Resolve() { var containe...
cd9f442c1d3bf18b63542f378b7de8c40989522c
whitespace
whitespace
jeremytammik/the_building_coder_samples
BuildingCoder/BuildingCoder/CmdNewSweptBlend.cs
mit
1,592,850,698
#region Header // // CmdNewSweptBlend.cs - create a new swept blend element // // Copyright (C) 2010-2020 by Jeremy Tammik, Autodesk Inc. All rights reserved. // // Keywords: The Building Coder Revit API C# .NET add-in. // #endregion // Header #region Namespaces using System; using System.Diagnostics; usi...
#region Header // // CmdNewSweptBlend.cs - create a new swept blend element // // Copyright (C) 2010-2020 by Jeremy Tammik, Autodesk Inc. All rights reserved. // // Keywords: The Building Coder Revit API C# .NET add-in. // #endregion // Header #region Namespaces using System; using System.Diagnostics; usi...
6cd46a6a451fc2b14769d47fbcbba3ef5907ba1d
try to find type if not in typeCache
try to find type if not in typeCache
object/Simple.OData.Client,object/Simple.OData.Client
src/Simple.OData.Client.Core/Extensions/DictionaryExtensions.cs
mit
1,592,850,636
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace Simple.OData.Client.Extensions { static class DictionaryExtensions { private static ConcurrentDictionary<Type, ActivatorDelegate> _defaultActivators = new Concurre...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace Simple.OData.Client.Extensions { static class DictionaryExtensions { private static ConcurrentDictionary<Type, ActivatorDelegate> _defaultActivators = new Concurre...
5e2e720606732fac62c1190caf35e7fbe3f094a8
Remove unused variable
Remove unused variable
z4kn4fein/stashbox
src/ResolutionScope.cs
mit
1,592,849,865
using Stashbox.Exceptions; using Stashbox.Expressions; using Stashbox.Resolution; using Stashbox.Utils; using Stashbox.Utils.Data; using Stashbox.Utils.Data.Immutable; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading; namespace Stashbox { int...
using Stashbox.Exceptions; using Stashbox.Expressions; using Stashbox.Resolution; using Stashbox.Utils; using Stashbox.Utils.Data; using Stashbox.Utils.Data.Immutable; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading; namespace Stashbox { int...
c5049b51c5835ab6950d1f9244d0d355157439a0
Mark normal-hitnormal sample as layered
Mark normal-hitnormal sample as layered
smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,peppy/osu-new,smoogipoo/osu,smoogipooo/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu
osu.Game/Rulesets/Objects/Legacy/ConvertHitObjectParser.cs
mit
1,592,849,309
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Game.Rulesets.Objects.Types; using System; using System.Collections.Generic; using System.IO; using osu.Game.Beatmaps.Formats; using osu.Game.Audi...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Game.Rulesets.Objects.Types; using System; using System.Collections.Generic; using System.IO; using osu.Game.Beatmaps.Formats; using osu.Game.Audi...
e827b14abf5212aa0809256b4830456acda994e8
Add LayeredHitSamples skin config lookup
Add LayeredHitSamples skin config lookup
NeoAdonis/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,UselessToucan/osu,peppy/osu,peppy/osu,smoogipooo/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu
osu.Game/Skinning/GlobalSkinConfiguration.cs
mit
1,592,847,762
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Skinning { public enum GlobalSkinConfiguration { AnimationFramerate, LayeredHitSounds, } }
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Skinning { public enum GlobalSkinConfiguration { AnimationFramerate } }
cd943e6be8ccfce9153af7bc4d7a61d2929459f5
Cosmetic changes
Cosmetic changes
quartz-software/kephas,quartz-software/kephas,quartz-software/kephas
src/Kephas.Core/Composition/Lite/Internal/ServiceInfo.cs
mit
1,592,847,756
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ServiceInfo.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project ro...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ServiceInfo.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project ro...
92e9ca8a1a8693ac66efe08e2c00629fa1dd0432
recources and internalization
recources and internalization
KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog
src/StructuredLogger/Properties/Resources.Designer.cs
mit
1,592,846,378
//------------------------------------------------------------------------------ // <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-generate...
//------------------------------------------------------------------------------ // <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-generate...
340ba49610be18de7752049b8b6d46515342b0b2
regex strings correct
regex strings correct
KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog
src/StructuredLogger/StructuredLogger.cs
mit
1,592,846,013
using System; using System.IO; using System.Reflection; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using StructuredLogger; namespace Microsoft.Build.Logging.StructuredLogger { /// <summary> /// Logger class to handle, parse, and route messages from the MSBuild logging system. ...
using System; using System.IO; using System.Reflection; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using StructuredLogger; namespace Microsoft.Build.Logging.StructuredLogger { /// <summary> /// Logger class to handle, parse, and route messages from the MSBuild logging system. ...
09db93e6dc4debf4c0fbb9b65d3906f717d4c4d9
Add undocumented flag DNS_QUERY_LOCAL to get DNS cache without network access. (#134)
Add undocumented flag DNS_QUERY_LOCAL to get DNS cache without network access. (#134)
dahall/vanara
PInvoke/DnsApi/WinDns.cs
mit
1,592,845,933
using System; using System.Linq; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.InteropServices; using static Vanara.PInvoke.Ws2_32; using DNS_STATUS = Vanara.PInvoke.Win32Error; using IP4_ADDRESS = Vanara.PInvoke.Ws2_32.IN_ADDR; using IP6_ADDRESS = Vanara.PInvoke.Ws2_32.IN6_ADDR; namespa...
using System; using System.Linq; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.InteropServices; using static Vanara.PInvoke.Ws2_32; using DNS_STATUS = Vanara.PInvoke.Win32Error; using IP4_ADDRESS = Vanara.PInvoke.Ws2_32.IN_ADDR; using IP6_ADDRESS = Vanara.PInvoke.Ws2_32.IN6_ADDR; namespa...
9eb487358ab58b1bac0f3a8abaff27e79178818c
Scrollwheel now works in scrollable containers
Scrollwheel now works in scrollable containers
kennyvv/Alex,kennyvv/Alex,kennyvv/Alex
src/Alex.API/Gui/Elements/Layout/GuiScrollableStackContainer.cs
mpl-2.0
1,592,845,921
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using Alex.API.Gui.Elements.Controls; using Alex.API.Gui.Graphics; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Input; using NLog; using RocketUI; namespace Alex.API.Gui.E...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using Alex.API.Gui.Elements.Controls; using Microsoft.Xna.Framework; using NLog; using RocketUI; namespace Alex.API.Gui.Elements.Layout { public class GuiScrollableStackContainer : GuiSt...
280603b0180aec918cbd31c60a1516d53897c0bf
fix process delete logs
fix process delete logs
signumsoftware/framework,AlejandroCano/extensions,signumsoftware/extensions,MehdyKarimpour/extensions,AlejandroCano/extensions,signumsoftware/framework,signumsoftware/extensions,MehdyKarimpour/extensions,signumsoftware/framework
Signum.Engine.Extensions/Processes/ProcessLogic.cs
mit
1,592,845,813
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Engine.Maps; using Signum.Engine.DynamicQuery; using Signum.Entities.Processes; using Signum.Entities; using Signum.Engine.Operations; using Signum.Engine.Authorization; using Signum.Utilities; using System.Thr...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Engine.Maps; using Signum.Engine.DynamicQuery; using Signum.Entities.Processes; using Signum.Entities; using Signum.Engine.Operations; using Signum.Engine.Authorization; using Signum.Utilities; using System.Thr...
c9d9d9e6fd52f3990975229139a7938e1e8c5a66
There is a crash when a device is registered in FCM. 1. The user setup to receive push notifications. 2. The user doesn't want to receive push notifications (unregister him device from FCM) 3. And then the user tries to register again him device in FCM
There is a crash when a device is registered in FCM. 1. The user setup to receive push notifications. 2. The user doesn't want to receive push notifications (unregister him device from FCM) 3. And then the user tries to register again him device in FCM the pendingTopics stack has some values in null.
CrossGeeks/FirebasePushNotificationPlugin
Plugin.FirebasePushNotification/FirebasePushNotificationManager.ios.cs
mit
1,592,845,259
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Firebase.CloudMessaging; using Firebase.Core; using Firebase.InstanceID; using Foundation; using UIKit; using UserNotifications; namespace Plugin.FirebasePushNotification { /// <summary> /// Implementation ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Firebase.CloudMessaging; using Firebase.Core; using Firebase.InstanceID; using Foundation; using UIKit; using UserNotifications; namespace Plugin.FirebasePushNotification { /// <summary> /// Implementation ...
fdeaec726620132ed27c585aa6639999cb48d43f
Added min and max for exposure white balance and ISO to sample. Added voice commands for ISO to sample.
Added min and max for exposure white balance and ISO to sample. Added voice commands for ISO to sample.
jbienzms/Samples
HoloLens/EnviroLight/Unity/EnviroLight/Assets/MixedRealityToolkit.LightingTools/Examples/Scripts/LightPreviewController.cs
mit
1,592,843,120
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; using System.Reflection; using UnityEngine; #if UNITY_EDITOR || WINDOWS_UWP using UnityEngine.Windows.Speech; using UnityEngine.XR.WSA.Input; #endif n...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; using System.Reflection; using UnityEngine; #if UNITY_EDITOR || WINDOWS_UWP using UnityEngine.Windows.Speech; using UnityEngine.XR.WSA.Input; #endif n...
382c3b0e4234c5942a3b739fb38b0518ebdb259b
Update WalletWasabi.Gui/CrashReport/ViewModels/CrashReportWindowViewModel.cs
Update WalletWasabi.Gui/CrashReport/ViewModels/CrashReportWindowViewModel.cs Co-authored-by: yahiheb <1ef907ec03476373b9c05d7f089a7d2fed4d8ea8@users.noreply.github.com>
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/CrashReport/ViewModels/CrashReportWindowViewModel.cs
mit
1,592,842,443
using ReactiveUI; using Splat; using System; using System.Reactive; using System.Reactive.Linq; using WalletWasabi.Gui.Helpers; using WalletWasabi.Gui.ViewModels; using WalletWasabi.Logging; namespace WalletWasabi.Gui.CrashReport.ViewModels { public class CrashReportWindowViewModel : ViewModelBase { private bool _...
using ReactiveUI; using Splat; using System; using System.Reactive; using System.Reactive.Linq; using WalletWasabi.Gui.Helpers; using WalletWasabi.Gui.ViewModels; using WalletWasabi.Logging; namespace WalletWasabi.Gui.CrashReport.ViewModels { public class CrashReportWindowViewModel : ViewModelBase { private bool _...
4f3eff13a69b1a4e0e450fe9786f18866f47df61
Add Agent.OSVersion support of Mac OS X agents. (#3024)
Add Agent.OSVersion support of Mac OS X agents. (#3024) Add Agent.OSVersion support of Mac OS X agents. Add the information of the Agent.OSVersion when running on Mac OS X. This allows demands that check the version of the Darwin OS. This same logic is used in other Microsoft products such as donet and powershel...
Microsoft/vsts-agent,Microsoft/vsts-agent,Microsoft/vsts-agent,Microsoft/vsts-agent
src/Microsoft.VisualStudio.Services.Agent/Capabilities/AgentCapabilitiesProvider.cs
mit
1,592,842,273
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Agent.Sdk; using Microsoft.VisualStudio.Services.Agent.Util; using Microsoft.Win32; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Microsoft.VisualStudio.Services.Agent.Cap...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Agent.Sdk; using Microsoft.VisualStudio.Services.Agent.Util; using Microsoft.Win32; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Microsoft.VisualStudio.Services.Agent.Cap...
fe533854d6c6189e46f85e2341d4afef85df7f80
SqlJournal: Fixed updating the _persistenceIdSubscribers dictionary when adding a subscriber as described in #4485 (#4486)
SqlJournal: Fixed updating the _persistenceIdSubscribers dictionary when adding a subscriber as described in #4485 (#4486) Co-authored-by: Kevin Preller <711dea4644e04fe9b3b5c1f5c2b72e111c0ae0fe@wmit.biz>
simonlaroche/akka.net,simonlaroche/akka.net
src/contrib/persistence/Akka.Persistence.Sql.Common/Journal/SqlJournal.cs
apache-2.0
1,592,841,171
//----------------------------------------------------------------------- // <copyright file="SqlJournal.cs" company="Akka.NET Project"> // Copyright (C) 2009-2020 Lightbend Inc. <http://www.lightbend.com> // Copyright (C) 2013-2020 .NET Foundation <https://github.com/akkadotnet/akka.net> // </copyright> //---...
//----------------------------------------------------------------------- // <copyright file="SqlJournal.cs" company="Akka.NET Project"> // Copyright (C) 2009-2020 Lightbend Inc. <http://www.lightbend.com> // Copyright (C) 2013-2020 .NET Foundation <https://github.com/akkadotnet/akka.net> // </copyright> //---...
b3f15b6e4285d10bdaf7af29562fc85aba1228a1
[FastBuild] Activate Bff generation and FastBuild for XCode projects
[FastBuild] Activate Bff generation and FastBuild for XCode projects
ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake
Sharpmake.Generators/GeneratorManager.cs
apache-2.0
1,592,840,081
// Copyright (c) 2017 Ubisoft Entertainment // // 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 la...
// Copyright (c) 2017 Ubisoft Entertainment // // 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 la...
451f4c5ba66408a729274e3d29f49b923b8b66e6
Update MachineFrame.cs
Update MachineFrame.cs
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Construction/MachineFrame.cs
agpl-3.0
1,592,839,639
using System.Collections; using System.Collections.Generic; using UnityEngine; using Mirror; namespace Machines { [System.Serializable] public class AllowedTraitList { public AllowedTraitList() { } public AllowedTraitList(ItemTrait allowedTrait) { AllowedTrait = allowedTrait; } public ItemTrait ...
using System.Collections; using System.Collections.Generic; using UnityEngine; using Mirror; namespace Machines { [System.Serializable] public class AllowedTraitList { public AllowedTraitList() { } public AllowedTraitList(ItemTrait allowedTrait) { AllowedTrait = allowedTrait; } public ItemTrait ...
824b73fe1fb84f5b80bbc6cd06ca3cc0fc9f5f0b
Add `SubscriptionStartDate` to the Upcoming Invoice API
Add `SubscriptionStartDate` to the Upcoming Invoice API
stripe/stripe-dotnet
src/Stripe.net/Services/Invoices/UpcomingInvoiceOptions.cs
apache-2.0
1,592,839,639
namespace Stripe { using System; using System.Collections.Generic; using Newtonsoft.Json; using Stripe.Infrastructure; public class UpcomingInvoiceOptions : BaseOptions { /// <summary> /// The code of the coupon to apply. If <c>subscription</c> or <c>subscription_items</c> is ...
namespace Stripe { using System; using System.Collections.Generic; using Newtonsoft.Json; using Stripe.Infrastructure; public class UpcomingInvoiceOptions : BaseOptions { /// <summary> /// The code of the coupon to apply. If <c>subscription</c> or <c>subscription_items</c> is ...
341314067033d189af480c98dafc564fddefd384
Removed extra comment to match MRLT submission.
Removed extra comment to match MRLT submission.
jbienzms/Samples
HoloLens/EnviroLight/Unity/EnviroLight/Assets/MixedRealityToolkit.LightingTools/Examples/Scripts/LightPreviewController.cs
mit
1,592,839,549
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; using System.Reflection; using UnityEngine; #if UNITY_EDITOR || WINDOWS_UWP using UnityEngine.Windows.Speech; using UnityEngine.XR.WSA.Input; #endif n...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; using System.Reflection; using UnityEngine; #if UNITY_EDITOR || WINDOWS_UWP using UnityEngine.Windows.Speech; using UnityEngine.XR.WSA.Input; #endif n...
831e34341d01050ef477b8293967b935be3dd5a8
us/#105212 enabling TLS between Orleans silos
us/#105212 enabling TLS between Orleans silos
gigya/microdot
Gigya.Microdot.Orleans.Hosting/OrleansConfigurationBuilder.cs
apache-2.0
1,592,838,446
#region Copyright // Copyright 2017 Gigya 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 // // THIS SOFT...
#region Copyright // Copyright 2017 Gigya 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 // // THIS SOFT...
3ab41f7d1a7ddd8ccc385ba5ec06f471f2f697e7
Update Integrity.cs
Update Integrity.cs
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Health/Objects/Integrity.cs
agpl-3.0
1,592,837,536
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using Atmospherics; using DatabaseAPI; using UnityEngine; using UnityEngine.Events; using Mirror; using Tilemaps.Behaviours.Meta; using UnityEngine.Profiling; using Object = System.Object; using Random = Unit...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using Atmospherics; using DatabaseAPI; using UnityEngine; using UnityEngine.Events; using Mirror; using Tilemaps.Behaviours.Meta; using UnityEngine.Profiling; using Object = System.Object; using Random = Unit...
782dde1c619f86736ead712806af5d95a0cd4434
Ignoring BuildCPP() for now
Ignoring BuildCPP() for now
kenkendk/sme,kenkendk/sme,kenkendk/sme,kenkendk/sme
src/Examples/ColorBin/Program.cs
mit
1,592,837,531
using SME; namespace ColorBin { class MainClass { public static void Main(string[] args) { using (var sim = new Simulation()) { var tester = new ImageInputSimulator("input/image1.png"); var collector = new ColorBinCollector(); collector.In...
using SME; namespace ColorBin { class MainClass { public static void Main(string[] args) { using (var sim = new Simulation()) { var tester = new ImageInputSimulator("input/image1.png"); var collector = new ColorBinCollector(); ...
9cc2a80e5cf3b0d610f6778afb948d45459c4d31
Variables aren't getting typed right
Variables aren't getting typed right
kenkendk/sme,kenkendk/sme,kenkendk/sme,kenkendk/sme
src/SME.AST/ParseProcesses/ParseProcesses.cs
mit
1,592,837,506
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.MSBuild; namespace SME.AST { // This partial part of the parser deal...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.MSBuild; namespace SME.AST { // This partial part of the parser deal...
3aedfd6864e3a42565bfbee85335b3e28e8693b0
Handled exception from GetDeclaredSymbol and GetTypeInfo
Handled exception from GetDeclaredSymbol and GetTypeInfo
kenkendk/sme,kenkendk/sme,kenkendk/sme,kenkendk/sme
src/SME.AST/HelperMethods.cs
mit
1,592,837,492
using System; using System.Linq; using System.Collections.Generic; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace SME.AST { /// <summary> /// A collection of static extension methods /// </summary> public static class HelperMethods { pu...
using System; using System.Linq; using System.Collections.Generic; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace SME.AST { /// <summary> /// A collection of static extension methods /// </summary> public static class HelperMethods { pu...
c04ec35a5a1838ac99699d6c4ae6a044ed9181aa
Trying to use extension methods as much as possible
Trying to use extension methods as much as possible
kenkendk/sme,kenkendk/sme,kenkendk/sme,kenkendk/sme
src/SME.AST/ParseProcesses/ParseProcessesTypeResolve.cs
mit
1,592,837,462
using System; using System.Collections.Generic; using System.Linq; //using Mono.Cecil; //using Mono.Cecil.Rocks; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace SME.AST { // This partial part deals with finding the type from expressions public...
using System; using System.Collections.Generic; using System.Linq; //using Mono.Cecil; //using Mono.Cecil.Rocks; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace SME.AST { // This partial part deals with finding the type from expressions public...
8206dff4c1c08c02d9910d45cc6feb647acac182
Slightly improve session refresh
Slightly improve session refresh Previous solution of assuming that session is valid for at least N amount of seconds is pretty optimistic, too optimistic for real usage, instead, we won't assume anything like that and force every request to go through session refresh, but at the same time limit session refresh checks...
JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm
ArchiSteamFarm/ArchiWebHandler.cs
apache-2.0
1,592,836,849
// _ _ _ ____ _ _____ // / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ // / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ // / ___ \ | | | (__ | | | || | ___) || |_| __/| ...
// _ _ _ ____ _ _____ // / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ // / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ // / ___ \ | | | (__ | | | || | ___) || |_| __/| ...
95fefb917ed6c097d8e615deca0cfd45afcf35b3
cleanup benchmark results
cleanup benchmark results
dadhi/ImTools
playground/ImTools.Benchmarks/ImMapBenchmarks.cs
mit
1,592,836,827
using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using BenchmarkDotNet.Attributes; using ImTools; using ImTools.Experimental; using Microsoft.Collections.Extensions; using ImMapSlots = ImTools.ImMapSlots; namespace Playground { public cla...
using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using BenchmarkDotNet.Attributes; using ImTools; using ImTools.Experimental; using Microsoft.Collections.Extensions; using ImMapSlots = ImTools.ImMapSlots; namespace Playground { public cla...
556a264927e327483398af518e08b57b353bdf33
Mark DNS_QUERY_OPTIONS with Flags attribute (#133)
Mark DNS_QUERY_OPTIONS with Flags attribute (#133)
dahall/vanara
PInvoke/DnsApi/WinDns.cs
mit
1,592,836,825
using System; using System.Linq; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.InteropServices; using static Vanara.PInvoke.Ws2_32; using DNS_STATUS = Vanara.PInvoke.Win32Error; using IP4_ADDRESS = Vanara.PInvoke.Ws2_32.IN_ADDR; using IP6_ADDRESS = Vanara.PInvoke.Ws2_32.IN6_ADDR; namespa...
using System; using System.Linq; using System.Runtime.InteropServices; using Vanara.Extensions; using Vanara.InteropServices; using static Vanara.PInvoke.Ws2_32; using DNS_STATUS = Vanara.PInvoke.Win32Error; using IP4_ADDRESS = Vanara.PInvoke.Ws2_32.IN_ADDR; using IP6_ADDRESS = Vanara.PInvoke.Ws2_32.IN6_ADDR; namespa...
2774b0867f53f274b80ebf45cc9fa1b52cbd5f9d
Update VersionRepresentation.cs
Update VersionRepresentation.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Rest/NakedObjects.Rest.Snapshot/Representation/VersionRepresentation.cs
apache-2.0
1,592,836,812
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requir...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requir...
1cca606e4a2ec58d1cbf06fc0d73ab62d4db72ed
Fix - LogMatrix
Fix - LogMatrix
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.SignalR/Utility/CallMatrix.cs
agpl-3.0
1,592,836,125
using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Serilog; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; using SO115App.Models.Classi.Matrix; using SO115App.Models.Servizi.Infrastruttura.Notification.CallMatrix; ...
using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Serilog; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; using SO115App.Models.Classi.Matrix; using SO115App.Models.Servizi.Infrastruttura.Notification.CallMatrix; ...
1bf00e0c820c8c391a0b7574b8cfc28ea0374c43
Schedule continuation
Schedule continuation
peppy/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu
osu.Game/Screens/Ranking/Statistics/StatisticsPanel.cs
mit
1,592,835,769
// 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 System.Threading; using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework....
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using System.Threading; using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework....
f279cc3987b1006a1815790a5c4e8a458b0b9a6c
OrderBookIncrementBuilder performance improved.
OrderBookIncrementBuilder performance improved.
StockSharp/StockSharp
Algo/OrderBookIncrementBuilder.cs
apache-2.0
1,592,835,170
namespace StockSharp.Algo { using System; using System.Collections.Generic; using System.Linq; using Ecng.Collections; using StockSharp.Localization; using StockSharp.Logging; using StockSharp.Messages; using QuotesDict = System.Collections.Generic.SortedList<decimal, Messages.QuoteChange>; using QuotesByP...
namespace StockSharp.Algo { using System; using System.Collections.Generic; using System.Linq; using Ecng.Collections; using StockSharp.Localization; using StockSharp.Logging; using StockSharp.Messages; using QuotesDict = System.Collections.Generic.SortedDictionary<decimal, System.Tuple<decimal, int?, Messa...
1f43db486cc309e4d571409653b9de6637a3e37f
Update TaskService.cs
Update TaskService.cs
dn32/Fluent.Task
Fluent.Task/Controll/TaskService.cs
apache-2.0
1,592,834,989
using FluentTask.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace FluentTask { public class TaskScheduler : IDisposable { private List<Schedule> TaskList { get; set; } private Thread Process { get; set; } ...
using FluentTask.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace FluentTask { public class TaskScheduler : IDisposable { private List<Schedule> TaskList { get; set; } private Thread Process { get; set; } ...
40ed270ba75448ebadf3b995e73971cae4d47cba
Print the full test name when showing labels. (#19)
Print the full test name when showing labels. (#19) Printing just the test name is confusing, because there can be multiple tests with the same name.
mono/guiunit
src/framework/GuiUnit/TestRunner.cs
mit
1,592,834,582
// *********************************************************************** // Copyright (c) 2007 Charlie Poole // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, inclu...
// *********************************************************************** // Copyright (c) 2007 Charlie Poole // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, inclu...
b05141db875c695f0edb1d2bf67ae3f1fe1914c4
Print errors at the end. (#20)
Print errors at the end. (#20) This way I don't have to scroll over a potentially large list of tests that weren't run to find the tests I'm interested in.
mono/guiunit
src/framework/Runner/ResultReporter.cs
mit
1,592,834,539
// *********************************************************************** // Copyright (c) 2012 Charlie Poole // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, incl...
// *********************************************************************** // Copyright (c) 2012 Charlie Poole // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, incl...
564067405fdf31fed1977dc54e3207d5acc182ae
Remove unused code
Remove unused code
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Models/SerializableException.cs
mit
1,592,832,932
using Newtonsoft.Json; using System; using System.Text; namespace WalletWasabi.Models { [JsonObject(MemberSerialization.OptIn)] public class SerializableException { public SerializableException() { } public SerializableException(Exception ex) { if (ex.InnerException != null) { InnerException = ...
using Newtonsoft.Json; using System; using System.Text; namespace WalletWasabi.Models { [JsonObject(MemberSerialization.OptIn)] public class SerializableException { public SerializableException() { } public SerializableException(Exception ex) { if (ex.InnerException != null) { InnerException = ...
0160b7576f55180acbf22fd3b8a51f7fd325ede9
codesing => codesign
codesing => codesign
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Packager/MacSignTools.cs
mit
1,592,832,175
using System; using System.Diagnostics; using System.IO; using System.IO.Compression; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading; namespace WalletWasabi.Packager { public static class MacSignTools { public static void Sign() { if (!RuntimeInformation.IsO...
using System; using System.Diagnostics; using System.IO; using System.IO.Compression; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading; namespace WalletWasabi.Packager { public static class MacSignTools { public static void Sign() { if (!RuntimeInformation.IsO...
836386d03ba0da92f7b625d3cc361110512d15a8
removed duplicate lines
removed duplicate lines
smoogipooo/osu,peppy/osu,peppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu
osu.Game/Screens/Play/PauseOverlay.cs
mit
1,592,832,133
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using System.Runtime.CompilerServices; using Microsoft.CodeAnalysis.CSharp.Syntax; using NUnit.Framework.Internal; using osu.Framework.A...
// 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 System.Runtime.CompilerServices; using Microsoft.CodeAnalysis.CSharp.Syntax; using NUnit.Framework.Internal; using osu.Framework.A...
6fe7d11d54dfde4a736007a485649e98cb83b711
Fix battery barrel low energy ratio exception (#1187)
Fix battery barrel low energy ratio exception (#1187) Co-authored-by: Metal Gear Sloth <5a6002283f4d0ed17bed24ee1f9d131baf85176c@gmail.com>
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,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14
Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerBatteryBarrelComponent.cs
mit
1,592,831,941
using System; using System.Collections.Generic; using Content.Server.GameObjects.Components.Power; using Content.Server.GameObjects.Components.Projectiles; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Shared.GameObjects; using Content.Shared.GameObject...
using System; using System.Collections.Generic; using Content.Server.GameObjects.Components.Power; using Content.Server.GameObjects.Components.Projectiles; using Content.Server.GameObjects.Components.Sound; using Content.Server.GameObjects.EntitySystems; using Content.Shared.GameObjects; using Content.Shared.GameObject...
9c6e6cc0fed59767f1ed60138d739b7fd80d43e5
Allow browsing ConfigureAwait from AsyncLazy. #174
Allow browsing ConfigureAwait from AsyncLazy. #174 Remove EditorBrowsableState.Never from AsyncLazy.ConfigureAwait.
StephenCleary/AsyncEx,StephenCleary/AsyncEx
src/Nito.AsyncEx.Coordination/AsyncLazy.cs
mit
1,592,830,118
using System; using System.Threading.Tasks; using System.Diagnostics; using System.Runtime.CompilerServices; namespace Nito.AsyncEx { /// <summary> /// Flags controlling the behavior of <see cref="AsyncLazy{T}"/>. /// </summary> [Flags] public enum AsyncLazyFlags { /// <summary> ...
using System; using System.Threading.Tasks; using System.Diagnostics; using System.Runtime.CompilerServices; namespace Nito.AsyncEx { /// <summary> /// Flags controlling the behavior of <see cref="AsyncLazy{T}"/>. /// </summary> [Flags] public enum AsyncLazyFlags { /// <summary> ...
6f0d918a22d0ed584229569596bb7507a7b63549
Fixing Tabs
Fixing Tabs
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/UnitTests/GUI/CommandInterpreterTest.cs
mit
1,592,829,966
using Mono.Options; using System; using System.IO; using WalletWasabi.Gui.CommandLine; using WalletWasabi.Helpers; using WalletWasabi.Tests.Helpers; using Xunit; namespace WalletWasabi.Tests.UnitTests.GUI { public class CommandInterpreterTest { [Fact] public async void ShowsHelpAsync() { (StringWriter outW,...
using Mono.Options; using System; using System.IO; using WalletWasabi.Gui.CommandLine; using WalletWasabi.Helpers; using WalletWasabi.Tests.Helpers; using Xunit; namespace WalletWasabi.Tests.UnitTests.GUI { public class CommandInterpreterTest { [Fact] public async void ShowsHelpAsync() { (StringWriter outW,...
b875fc7c124e0aef97d1691854ba7b15b23e2bae
Fix - Matrix
Fix - Matrix
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.SignalR/Utility/CallMatrix.cs
agpl-3.0
1,592,829,895
using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Serilog; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; using SO115App.Models.Classi.Matrix; using SO115App.Models.Servizi.Infrastruttura.Notification.CallMatrix; ...
using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Serilog; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; using SO115App.Models.Classi.Matrix; using SO115App.Models.Servizi.Infrastruttura.Notification.CallMatrix; ...
8d4aba9734e5d136050261ac57a820b563b1343d
A bit of JSON for geo coordinates
A bit of JSON for geo coordinates
Vanaheimr/Styx
Styx/Aegir/GeoCoordinates/GeoCoordinate.cs
apache-2.0
1,592,829,860
/* * Copyright (c) 2010-2020, Achim 'ahzf' Friedland <achim.friedland@graphdefined.com> * This file is part of Aegir <http://www.github.com/Vanaheimr/Aegir> * * 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 co...
/* * Copyright (c) 2010-2020, Achim 'ahzf' Friedland <achim.friedland@graphdefined.com> * This file is part of Aegir <http://www.github.com/Vanaheimr/Aegir> * * 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 co...
7123747a4b4e78df408f9a4d8d2726bab304a92d
Enable nullable, and use expression bodied properties.
Enable nullable, and use expression bodied properties.
grokys/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,wie...
src/Avalonia.Controls/Primitives/HeaderedContentControl.cs
mit
1,592,829,849
using Avalonia.Controls.Presenters; using Avalonia.Controls.Templates; using Avalonia.LogicalTree; #nullable enable namespace Avalonia.Controls.Primitives { /// <summary> /// A <see cref="ContentControl"/> with a header. /// </summary> public class HeaderedContentControl : ContentControl, IHeadered ...
using Avalonia.Controls.Mixins; using Avalonia.Controls.Presenters; using Avalonia.Controls.Templates; using Avalonia.LogicalTree; namespace Avalonia.Controls.Primitives { /// <summary> /// A <see cref="ContentControl"/> with a header. /// </summary> public class HeaderedContentControl : ContentControl...
7145068863af654303551758a3c349e294b83948
Fix copy pasta error.
Fix copy pasta error.
jkoritzinsky/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,akrisiun/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Perspex,jkoritzinsky/Avalo...
src/Avalonia.Controls/Primitives/HeaderedContentControl.cs
mit
1,592,829,823
using Avalonia.Controls.Mixins; using Avalonia.Controls.Presenters; using Avalonia.Controls.Templates; using Avalonia.LogicalTree; namespace Avalonia.Controls.Primitives { /// <summary> /// A <see cref="ContentControl"/> with a header. /// </summary> public class HeaderedContentControl : ContentControl...
using Avalonia.Controls.Mixins; using Avalonia.Controls.Presenters; using Avalonia.Controls.Templates; using Avalonia.LogicalTree; namespace Avalonia.Controls.Primitives { /// <summary> /// A <see cref="ContentControl"/> with a header. /// </summary> public class HeaderedContentControl : ContentControl...
e9c2e634f8f8e11df01521f3200a6af663d5363c
Remove left-over class
Remove left-over class
EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,...
osu.Framework/Testing/TestBrowser.cs
mit
1,592,829,429
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using NUnit.Framework; using NUnit.Framework.Interna...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using NUnit.Framework; using NUnit.Framework.Interna...
f60a80b2635f4beb8d45f5a8432abbb2bf36e278
Fix animations and general code quality
Fix animations and general code quality
UselessToucan/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,ppy/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu-new,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,smoogipooo/osu
osu.Game/Screens/Menu/IntroWelcome.cs
mit
1,592,829,352
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework.Screens; using osu.Framework.Graphics; usin...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework.Screens; using osu.Framework.Graphics; usin...
1c7bbf2029a5f84d919b31b4d120d146f996c702
[Macrocompiler] Adjusted lexer to allow some exotic identifier characters. We have copied the rules from the Roslyn C# lexer.
[Macrocompiler] Adjusted lexer to allow some exotic identifier characters. We have copied the rules from the Roslyn C# lexer.
X-Sharp/XSharpPublic,X-Sharp/XSharpPublic,X-Sharp/XSharpPublic,X-Sharp/XSharpPublic
Runtime/MacroCompiler/Syntax/Lexer.cs
apache-2.0
1,592,829,302
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XSharp.MacroCompiler { using Syntax; using System.Globalization; using static Syntax.TokenAttr; partial class Lexer { // Input source string _Source; ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XSharp.MacroCompiler { using Syntax; using static Syntax.TokenAttr; partial class Lexer { // Input source string _Source; // Configuration Macr...
57ea1d502cc5ac75cc870e1f780ca36bf6afd4b0
Mark LayoutManager public functions as virtual so users can adjust the behavior.
Mark LayoutManager public functions as virtual so users can adjust the behavior.
Perspex/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,akrisiun/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,akrisiun/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/...
src/Avalonia.Layout/LayoutManager.cs
mit
1,592,829,205
using System; using System.Diagnostics; using Avalonia.Logging; using Avalonia.Threading; #nullable enable namespace Avalonia.Layout { /// <summary> /// Manages measuring and arranging of controls. /// </summary> public class LayoutManager : ILayoutManager { private readonly LayoutQueue<IL...
using System; using System.Diagnostics; using Avalonia.Logging; using Avalonia.Threading; #nullable enable namespace Avalonia.Layout { /// <summary> /// Manages measuring and arranging of controls. /// </summary> public class LayoutManager : ILayoutManager { private readonly LayoutQueue<IL...
d10f85f5504aba076f71a792c137112b411007dc
Fix - Matrix
Fix - Matrix
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.SignalR/Utility/CallMatrix.cs
agpl-3.0
1,592,829,118
using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Serilog; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; using SO115App.Models.Classi.Matrix; using SO115App.Models.Servizi.Infrastruttura.Notification.CallMatrix; ...
using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Serilog; using SO115App.API.Models.Servizi.CQRS.Queries.GestioneSoccorso.Shared.SintesiRichiestaAssistenza; using SO115App.Models.Classi.Matrix; using SO115App.Models.Servizi.Infrastruttura.Notification.CallMatrix; ...
0263da2cf288b155ca9b7917d5f9d91a81bd10a2
Update RestfulObjectsController.cs
Update RestfulObjectsController.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Template/Template.Server/Controllers/RestfulObjectsController.cs
apache-2.0
1,592,828,930
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requ...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requ...
cb03e6faa9cf975719a8d3753ca063bb986ed8bb
Improve visual display of arrow
Improve visual display of arrow
ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,peppy/osu-new,NeoAdonis/osu
osu.Game.Rulesets.Osu/Statistics/AccuracyHeatmap.cs
mit
1,592,827,787
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
9dea96e5fdff2a741af29b10948be6a65d63d634
added pause sound with fading
added pause sound with fading
smoogipooo/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu-new,smoogipoo/osu,peppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu
osu.Game/Screens/Play/PauseOverlay.cs
mit
1,592,827,341
// 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 System.Runtime.CompilerServices; using Microsoft.CodeAnalysis.CSharp.Syntax; using NUnit.Framework.Internal; using osu.Framework.A...
// 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.Game.Graphics; using osuTK.Graphics; namespace osu.Game.Screens.Play { public class Pause...
b3e200ee7face7f246ef82ee56faba604a216740
Re-invert test
Re-invert test
NeoAdonis/osu,peppy/osu,peppy/osu,ppy/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu
osu.Game.Rulesets.Osu.Tests/TestSceneAccuracyHeatmap.cs
mit
1,592,827,235
// 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 NUnit.Framework; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphic...
// 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 NUnit.Framework; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphic...
beb6e6ea88af3dbf213808accea49d247e358ce8
Buffer the accuracy heatmap for performance
Buffer the accuracy heatmap for performance
smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu-new,smoogipooo/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,ppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,peppy/osu,peppy/osu,ppy/osu
osu.Game.Rulesets.Osu/Statistics/AccuracyHeatmap.cs
mit
1,592,827,213
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
4502f2a1472b45c3d84859e748de1dbb53d97778
Use HEAD method instead of GET
Use HEAD method instead of GET
Deadpikle/NetSparkle
src/NetSparkle/Downloaders/WebClientFileDownloader.cs
mit
1,592,826,481
using NetSparkleUpdater.Interfaces; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Net; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace NetSparkleUpdater.Downloaders { /// <summary> /// Class that downloads files fro...
using NetSparkleUpdater.Interfaces; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Net; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace NetSparkleUpdater.Downloaders { /// <summary> /// Class that downloads files fro...
1aec1ea53fc9566e384f03fd96e5e5af72f3a2be
Fix off-by-one causing auto to not be centred
Fix off-by-one causing auto to not be centred
UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,ppy/osu,ppy/osu,peppy/osu
osu.Game.Rulesets.Osu/Statistics/AccuracyHeatmap.cs
mit
1,592,826,344
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
983f0ada2da68527f5892ffd6ff0202c05d1d439
Increase number of points to ensure there's a centre
Increase number of points to ensure there's a centre
smoogipoo/osu,ppy/osu,peppy/osu-new,peppy/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,smoogipooo/osu,peppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,peppy/osu
osu.Game.Rulesets.Osu/Statistics/AccuracyHeatmap.cs
mit
1,592,826,333
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
a4eb6c81c5a90b15d298fe705cc0699c98da1772
undid changes to the file
undid changes to the file
peppy/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu-new,UselessToucan/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,peppy/osu
osu.Game/Screens/Play/Player.cs
mit
1,592,826,031
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using System.Linq; using Humanizer; using osu.Framework.Allocation; using osu.Framework.Audio; 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.Collections.Generic; using System.IO; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.S...
6be8f90d7ebcdcb67a66daa166c0768ea6c3c9d1
fixed test for custom connector
fixed test for custom connector
jeffhollan/LogicAppTemplateCreator,jeffhollan/LogicAppTemplateCreator
LogicAppTemplate.Test/TemplateGeneratorTests.cs
mit
1,592,825,716
using Microsoft.VisualStudio.TestTools.UnitTesting; using LogicAppTemplate; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json.Linq; using System.Diagnostics; using System.IO; using Newtonsoft.Json; using LogicAppTemplate.Models; us...
using Microsoft.VisualStudio.TestTools.UnitTesting; using LogicAppTemplate; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json.Linq; using System.Diagnostics; using System.IO; using Newtonsoft.Json; using LogicAppTemplate.Models; us...
6afd6efdeba5fe08b9598c9de1c089a162bcc467
Return default beatmap if local beatmap can't be retrieved
Return default beatmap if local beatmap can't be retrieved
peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu
osu.Game/Beatmaps/BeatmapManager.cs
mit
1,592,825,588
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading; using System...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading; using System...
452c6c924ad82a448d80b55c04c08a0875f2e02d
add SetPasswordRequest to AuthController
add SetPasswordRequest to AuthController
signumsoftware/extensions,signumsoftware/framework,AlejandroCano/extensions,signumsoftware/framework,signumsoftware/extensions,AlejandroCano/extensions,signumsoftware/framework
Signum.React.Extensions/Authorization/AuthController.cs
mit
1,592,825,147
using System; using System.ComponentModel.DataAnnotations; using System.Linq; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Signum.Engine; using Signum.Engine.Authorization; using Signum.Engine.Mailing; using Signum.Engine.Operations; using Signum.Entities; using Signum.Entit...
using System; using System.ComponentModel.DataAnnotations; using System.Linq; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Signum.Engine; using Signum.Engine.Authorization; using Signum.Engine.Mailing; using Signum.Engine.Authorization; using Signum.Engine.Operations; usin...
e976bc04ba5d82580c5f1e63e11170430fbcefd0
Only add output assemblies for Unity solutions
Only add output assemblies for Unity solutions
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Debugger/Host/Rider/UnityDebuggerOutputAssembliesProviderHost.cs
apache-2.0
1,592,824,891
using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Debugger.Common.OutputAssemblies; using JetBrains.Application.Infra; using JetBrains.Debugger.Host.DebuggerOutputAssemblies; using JetBrains.Lifetimes; using JetBrains.Metadata.Utils; using JetBrains.ProjectModel; using JetBrains.R...
using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Debugger.Common.OutputAssemblies; using JetBrains.Application.Infra; using JetBrains.Debugger.Host.DebuggerOutputAssemblies; using JetBrains.Lifetimes; using JetBrains.Metadata.Utils; using JetBrains.ProjectModel; using JetBrains.R...
5c4df2e32c0a1cd8f79f8d5e1e99e9fef6bfd228
Cancel load on dispose
Cancel load on dispose
smoogipoo/osu,ppy/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,ppy/osu,ppy/osu,smoogipooo/osu,peppy/osu,ppy/osu,peppy/osu,UselessToucan/osu
osu.Game/Screens/Ranking/Statistics/StatisticsPanel.cs
mit
1,592,824,842
// 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 System.Threading; using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework....
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using System.Threading; using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework....
d198e3735f2fb3e6676e8eb06f07c1b94a84d3d6
Обновить список языков #1006 (#1007)
Обновить список языков #1006 (#1007)
vknet/vk
VkNet/Enums/Language.cs
mit
1,592,824,583
namespace VkNet.Enums { /// <summary> /// Язык /// </summary> public enum Language { /// <summary> /// Русский /// </summary> Ru = 0 , /// <summary> /// Украинский /// </summary> Ua = 1 , /// <summary> /// Белорусский /// </summary> Be = 2 , /// <summary> /// Английский /// </summ...
namespace VkNet.Enums { /// <summary> /// Язык /// </summary> public enum Language { /// <summary> /// Русский /// </summary> Ru = 0 , /// <summary> /// Украинский /// </summary> Ua = 1 , /// <summary> /// Белорусский /// </summary> Be = 2 , /// <summary> /// Английский /// </summ...
9d61854c550b84cac4bb4e1994238fb2433b6de8
Update UrlHelperTests.cs
Update UrlHelperTests.cs
Particular/SyncOMatic
src/Tests/UrlHelperTests.cs
mit
1,592,824,550
using System.Threading.Tasks; using VerifyXunit; using Xunit; [UsesVerify] public class UrlHelperTests { [Fact] public Task Company() { return Verifier.Verify(UrlHelper.GetCompany("https://github.com/org/repository")); } [Fact] public Task Project() { return Verifier.Verif...
using System.Threading.Tasks; using VerifyXunit; using Xunit; public class UrlHelperTests { [Fact] public Task Company() { return Verifier.Verify(UrlHelper.GetCompany("https://github.com/org/repository")); } [Fact] public Task Project() { return Verifier.Verify(UrlHelper.G...
9a731c01ba72e50d42112f621de35c3adfb4158b
Update PartsTests.cs
Update PartsTests.cs
Particular/SyncOMatic
src/Tests/PartsTests.cs
mit
1,592,824,527
using System; using System.Threading.Tasks; using GitHubSync; using VerifyXunit; using Xunit; using Xunit.Abstractions; [UsesVerify] public class PartsTests : XunitContextBase { [Fact] public Task Tree() { var parts = new Parts("SimonCropp/Fake", TreeEntryTargetType.Tree, "develop", "buildSupp...
using System; using System.Threading.Tasks; using GitHubSync; using VerifyXunit; using Xunit; using Xunit.Abstractions; public class PartsTests : XunitContextBase { [Fact] public Task Tree() { var parts = new Parts("SimonCropp/Fake", TreeEntryTargetType.Tree, "develop", "buildSupport"); ...
f2bccc6c4ef883af4341385f361b064ced26627a
Added right click handling to touch events
Added right click handling to touch events
peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,peppy/osu-...
osu.Framework.iOS/Input/IOSTouchHandler.cs
mit
1,592,824,274
// 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.Input.Handlers; using Foundation; using UIKit; using osu.Framework.Platform; using osu.Framework.Input.StateChanges; using osuTK; using osuTK.Input; ...
// 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.Input.Handlers; using Foundation; using UIKit; using osu.Framework.Platform; using osu.Framework.Input.StateChanges; using osuTK; using osuTK.Input; ...
3157a0d5cb9aca1aa187980b4376445cfc393c57
Exposed event object to touch handlers
Exposed event object to touch handlers
ppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framew...
osu.Framework.iOS/IOSGameView.cs
mit
1,592,824,256
// 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 Foundation; using ObjCRuntime; using UIKit; using System.Threading.Tasks; using osu.Framework.Gra...
// 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 Foundation; using ObjCRuntime; using UIKit; using System.Threading.Tasks; using osu.Framework.Gra...
d3a08719c52aa597acf466cf6b6668e2fbcb4c2c
Fix AnyVarDrawer element overlap
Fix AnyVarDrawer element overlap Change Drawer GetHeight to ask sub properties for their heights rather than assuming they are single line. Fix 844
snozbot/fungus
Assets/Fungus/Scripts/Editor/AnyVariableAndDataPairDrawer.cs
mit
1,592,824,202
// This code is part of the Fungus library (https://github.com/snozbot/fungus) // It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE) using UnityEditor; using UnityEngine; namespace Fungus.EditorUtils { /// <summary> /// Custom drawer for the AnyV...
// This code is part of the Fungus library (https://github.com/snozbot/fungus) // It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE) using UnityEditor; using UnityEngine; namespace Fungus.EditorUtils { /// <summary> /// Custom drawer for the AnyV...
a899c754f11942c8967ff78139ef7bb5433e1b8c
Remove whitespace at the end of xmldoc line
Remove whitespace at the end of xmldoc line
ppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,peppy/osu-new,NeoAdonis/osu
osu.Game/IO/MigratableStorage.cs
mit
1,592,823,804
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.IO; using System.Linq; using System.Threading; using osu.Framework.Platform; namespace osu.Game.IO { /// <summary> /// A <see cref="Wr...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.IO; using System.Linq; using System.Threading; using osu.Framework.Platform; namespace osu.Game.IO { /// <summary> /// A <see cref="Wr...
e0d5a9182e76eb44d9cf18ac6b2ba259316fbb9b
make tournament migration private
make tournament migration private
peppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,peppy/osu-new,NeoAdonis/osu,smoogipoo/osu,ppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,ppy/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu
osu.Game.Tournament/IO/TournamentStorage.cs
mit
1,592,823,596
// 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.Logging; using osu.Framework.Platform; using osu.Game.IO; using System.IO; using osu.Game.Tournament.Configuration; namespace osu.Game.Tournament.IO ...
// 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.Logging; using osu.Framework.Platform; using osu.Game.IO; using System.IO; using osu.Game.Tournament.Configuration; namespace osu.Game.Tournament.IO ...
a94dcc4923023d1322af32ed35ccb05f4ccfec57
Add xmldoc to MigratableStorage
Add xmldoc to MigratableStorage
smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipooo/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,peppy/osu-new,peppy/osu,UselessToucan/osu,smoogipoo/osu
osu.Game/IO/MigratableStorage.cs
mit
1,592,823,578
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.IO; using System.Linq; using System.Threading; using osu.Framework.Platform; namespace osu.Game.IO { /// <summary> /// A <see cref="Wr...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.IO; using System.Linq; using System.Threading; using osu.Framework.Platform; namespace osu.Game.IO { public abstract class MigratableStora...
4d30761ce3131eccaab114285018f5ab0cc54a79
Fix 1M score being possible with only GREATs in mania
Fix 1M score being possible with only GREATs in mania
peppy/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu-new
osu.Game.Rulesets.Mania/Judgements/ManiaJudgement.cs
mit
1,592,823,143
// 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.Game.Rulesets.Judgements; using osu.Game.Rulesets.Scoring; namespace osu.Game.Rulesets.Mania.Judgements { public class ManiaJudgement : Judgement { ...
// 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.Game.Rulesets.Judgements; using osu.Game.Rulesets.Scoring; namespace osu.Game.Rulesets.Mania.Judgements { public class ManiaJudgement : Judgement { ...
88dd9e7767970799561504f2b33a345ee158e31f
Mime NRE fix
Mime NRE fix
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Spells/Spell.cs
agpl-3.0
1,592,823,093
using System; using System.Collections; using System.Collections.Generic; using UnityEditor; using UnityEngine; /// <summary> /// Spell that can be cast via UI action button in top left /// </summary> [Serializable] [DisallowMultipleComponent] public class Spell : MonoBehaviour, IActionGUI { private SpellData spellD...
using System; using System.Collections; using System.Collections.Generic; using UnityEditor; using UnityEngine; /// <summary> /// Spell that can be cast via UI action button in top left /// </summary> [Serializable] [DisallowMultipleComponent] public class Spell : MonoBehaviour, IActionGUI { private SpellData spellD...
d2ded59b7af801d1d53a382abc9d4fb46d723372
CA-341576: Corrected title and button text.
CA-341576: Corrected title and button text. Signed-off-by: Konstantina Chremmou <a7d1f757a659045fb6db8c1e3849a1c8ad00b97a@citrix.com>
kc284/xenadmin,kc284/xenadmin,kc284/xenadmin,xenserver/xenadmin,kc284/xenadmin,xenserver/xenadmin,xenserver/xenadmin,kc284/xenadmin,xenserver/xenadmin,kc284/xenadmin
XenAdmin/Wizards/RollingUpgradeWizard/PlanActions/UpgradeManualHostPlanAction.cs
bsd-2-clause
1,592,822,762
/* Copyright (c) Citrix Systems, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * * * Redistributions of source code must retain the above * copyright notice...
/* Copyright (c) Citrix Systems, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * * * Redistributions of source code must retain the above * copyright notice...
77dcaa1cc0a4aaa31d1e3b588e5877d4cb466db9
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,592,822,489
#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-...
b4a190f2698acc79bb32f1482229f5ffbc3b0905
Clean a few things
Clean a few things
mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp
binding/Binding/SkiaApi.cs
mit
1,592,821,803
using System; namespace SkiaSharp { internal partial class SkiaApi { #if __TVOS__ && __UNIFIED__ private const string SKIA = "@rpath/libSkiaSharp.framework/libSkiaSharp"; #elif __WATCHOS__ && __UNIFIED__ private const string SKIA = "@rpath/libSkiaSharp.framework/libSkiaSharp"; #elif __IOS__ && __UNIFIED__ pri...
using System; namespace SkiaSharp { internal partial class SkiaApi { #if __TVOS__ && __UNIFIED__ private const string SKIA = "@rpath/libSkiaSharp.framework/libSkiaSharp"; #elif __WATCHOS__ && __UNIFIED__ private const string SKIA = "@rpath/libSkiaSharp.framework/libSkiaSharp"; #elif __IOS__ && __UNIFIED__ pri...
eec1e9ef4d660acf88de42ec6a814c96e2cf97cf
Remove unnecessary comments and added file check for tournament.ini on test start
Remove unnecessary comments and added file check for tournament.ini on test start
NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,peppy/osu-new,peppy/osu,UselessToucan/osu
osu.Game.Tournament.Tests/NonVisual/CustomTourneyDirectoryTest.cs
mit
1,592,821,379
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.IO; using System.Threading; using System.Threading.Tasks; using NUnit.Framework; using osu.Framework; using osu.Framework.Allocation; 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.IO; using System.Threading; using System.Threading.Tasks; using NUnit.Framework; using osu.Framework; using osu.Framework.Allocation; using osu...
115af28e8fb580c60bef269802b8f07e8ecccabf
Make propertyName public
Make propertyName public
google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf
csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
bsd-3-clause
1,592,821,014
#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the fol...
#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the fol...
257bef48f3d448082dc9bbfcbd8f2cab19256ed9
Allow deleting multiple characters at once
Allow deleting multiple characters at once
EVAST9919/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framewor...
osu.Framework/Graphics/UserInterface/TextBox.cs
mit
1,592,820,568
// 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.Caching; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Spr...
// 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.Caching; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Spr...
30aa6ec2d3ff6dc63c0bf9b3d33cb5aef820c35c
Don't consider slider tails in accuracy heatmap
Don't consider slider tails in accuracy heatmap
smoogipooo/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,peppy/osu,ppy/osu,peppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,smoogipoo/osu
osu.Game.Rulesets.Osu/Statistics/AccuracyHeatmap.cs
mit
1,592,820,341
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphi...
7b8e3fe258f2beabb262010840babb6f20215be1
Empty commit to test pipeline
Empty commit to test pipeline
smbc-digital/iag-webapp,smbc-digital/iag-webapp
src/StockportWebapp/Extensions/ApplicationBuilderExtensions.cs
mit
1,592,819,504
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Localization; namespace StockportWebapp.Extensions { public static class ApplicationBuilderExtensions { public sta...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Localization; namespace StockportWebapp.Extensions { public static class ApplicationBuilderExtensions { public sta...
5e2fe017bfa7f84a4065087600918638e6eb6f0d
宛先ドメインが多い場合の送信禁止を自動BCC変換より優先されるように修正。
宛先ドメインが多い場合の送信禁止を自動BCC変換より優先されるように修正。
t-miyake/OutlookOkan
OutlookOkan/Models/GenerateCheckList.cs
apache-2.0
1,592,818,727
using OutlookOkan.CsvTools; using OutlookOkan.Properties; using OutlookOkan.Types; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text.RegularExpressions; using System.Threading; using Outlook = Microsoft.Office.Interop.Ou...
using OutlookOkan.CsvTools; using OutlookOkan.Properties; using OutlookOkan.Types; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text.RegularExpressions; using System.Threading; using Outlook = Microsoft.Office.Interop.Ou...
ad4e8701ba9673a62e85d30d599efe9254f0683f
警告キーワードの警告文が空欄の際の送信禁止表示の修正。
警告キーワードの警告文が空欄の際の送信禁止表示の修正。
t-miyake/OutlookOkan
OutlookOkan/Models/GenerateCheckList.cs
apache-2.0
1,592,818,691
using OutlookOkan.CsvTools; using OutlookOkan.Properties; using OutlookOkan.Types; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text.RegularExpressions; using System.Threading; using Outlook = Microsoft.Office.Interop.Ou...
using OutlookOkan.CsvTools; using OutlookOkan.Properties; using OutlookOkan.Types; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text.RegularExpressions; using System.Threading; using Outlook = Microsoft.Office.Interop.Ou...
7faa8abab3d2e8a1f309828ebf6a5ddd1cf7ec1a
RF OrtbitalUtils: using Debug instead of Log
RF OrtbitalUtils: using Debug instead of Log
allista/AT_Utils
Orbital/OrbitalUtils.cs
mit
1,592,818,663
namespace AT_Utils { public static partial class Utils { public static Vector3d Orbital2NodeDeltaV(Orbit o, Vector3d orbitalDeltaV, double UT) { var norm = o.GetOrbitNormal().normalized; var prograde = o.getOrbitalVelocityAtUT(UT).normalized; var radial = Vect...
namespace AT_Utils { public static partial class Utils { public static Vector3d Orbital2NodeDeltaV(Orbit o, Vector3d orbitalDeltaV, double UT) { var norm = o.GetOrbitNormal().normalized; var prograde = o.getOrbitalVelocityAtUT(UT).normalized; var radial = Vect...