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 |
|---|---|---|---|---|---|---|---|---|
981f73d592658b8bc9b94cb00d536406afb45a63 | Added more DotaHeroAbilityBehaviorType values | Added more DotaHeroAbilityBehaviorType values
| babelshift/SteamWebAPI2 | src/Steam.Models/DOTA2/DotaHeroAbilityBehaviorType.cs | mit | 1,588,095,863 | namespace Steam.Models.DOTA2
{
public sealed class DotaHeroAbilityBehaviorType : DotaEnumType
{
public static readonly DotaHeroAbilityBehaviorType UNKNOWN = new DotaHeroAbilityBehaviorType("DOTA_ABILITY_BEHAVIOR_UNKNOWN", "Unknown", "This behavior could not be found.");
public static readonly D... | namespace Steam.Models.DOTA2
{
public sealed class DotaHeroAbilityBehaviorType : DotaEnumType
{
public static readonly DotaHeroAbilityBehaviorType UNKNOWN = new DotaHeroAbilityBehaviorType("DOTA_ABILITY_BEHAVIOR_UNKNOWN", "Unknown", "This behavior could not be found.");
public static readonly D... |
ab9eb475d055582d108a3aff47d575c0523ee3b3 | Added IOperationInfo.InvokeAsync() extension method, which knows to await for returned tasks. | Added IOperationInfo.InvokeAsync() extension method, which knows to await for returned tasks.
| quartz-software/kephas,quartz-software/kephas,quartz-software/kephas | src/Kephas.Core/Reflection/IOperationInfo.cs | mit | 1,588,095,637 | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="IMethodInfo.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="IMethodInfo.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... |
04d4cf8ecbdaf2e7fb04520eb7d2b95dc407027c | Fixed RuntimeTypeInfo.CreateInstance with mismatched arguments. | Fixed RuntimeTypeInfo.CreateInstance with mismatched arguments.
| quartz-software/kephas,quartz-software/kephas,quartz-software/kephas | src/Kephas.Core/Runtime/RuntimeTypeInfo.cs | mit | 1,588,095,326 | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="RuntimeTypeInfo.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the projec... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="RuntimeTypeInfo.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the projec... |
dc75009dd5141817bac5aa3bbdade3c18156d137 | Clean up setup execution method (#1013) | Clean up setup execution method (#1013)
* Missing `invocation.Return()` for `void` methods
`Invocation` expects to be "terminated" by a call to any of its
`Return` methods, yet that currently never happens for `void` methods
that have a setup but no further behavior configured.
Add the missing call.
The nec... | Moq/moq4 | src/Moq/MethodCall.cs | bsd-3-clause | 1,588,095,187 | // Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD.
// All rights reserved. Licensed under the BSD 3-Clause License; see License.txt.
using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Reflectio... | // Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD.
// All rights reserved. Licensed under the BSD 3-Clause License; see License.txt.
using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Reflectio... |
9d712410eeafe4fac119f24808c9a970f4d883bb | Added IOperation.ExecuteAsync() extension for net461 | Added IOperation.ExecuteAsync() extension for net461
| quartz-software/kephas,quartz-software/kephas,quartz-software/kephas | src/Kephas.Core/Operations/IOperation.cs | mit | 1,588,095,163 | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="IOperation.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project roo... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="IOperation.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project roo... |
cb3360d232e982512f1a4a7a9fc030ab12a230a5 | GraphsonJsonSerializer: Convert child tokens in map-values. | GraphsonJsonSerializer: Convert child tokens in map-values.
| ExRam/ExRam.Gremlinq | ExRam.Gremlinq.Core/ExecutionPipelines/GraphsonDeserialization/GraphsonJsonSerializer.cs | mit | 1,588,095,077 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Xml;
using ExRam.Gremlinq.Core.GraphElements;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json.Linq;
using System.Linq;
namespace ExRam.Gremlinq.Core
{
internal sealed c... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Xml;
using ExRam.Gremlinq.Core.GraphElements;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json.Linq;
using System.Linq;
namespace ExRam.Gremlinq.Core
{
internal sealed c... |
1af2060d53503eb1448051b9f3b3e45f6415cc8e | [Fixes dotnet/aspnetcore-tooling#17233 dotnet/aspnetcore-tooling#18543 dotnet/aspnetcore-tooling#18707 dotnet/aspnetcore-tooling#18561][Static web assets] Improve test reliability (dotnet/aspnetcore-tooling#1844) | [Fixes dotnet/aspnetcore-tooling#17233 dotnet/aspnetcore-tooling#18543 dotnet/aspnetcore-tooling#18707 dotnet/aspnetcore-tooling#18561][Static web assets] Improve test reliability (dotnet/aspnetcore-tooling#1844)
* Improves the reliability of the affected tests with retries
* Pack and restore fail/hang in some occasio... | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/StaticWebAssetsIntegrationTest.cs | apache-2.0 | 1,588,094,749 | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Run... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Run... |
402ce8b17f7141cb47a3e32480c10384d6c6236c | add back GetOption tests | add back GetOption tests
| 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.Test/Reflection/CustomOptionsTest.cs | bsd-3-clause | 1,588,094,706 | #region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 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 fo... | #region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 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 fo... |
4e8099942745615708a4b207a13e5d27743b87e8 | fix conflict | fix conflict
| KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog | src/StructuredLogViewer.Core/SearchResult.cs | mit | 1,588,094,269 | using System;
using System.Collections.Generic;
using Microsoft.Build.Logging.StructuredLogger;
namespace StructuredLogViewer
{
public class SearchResult
{
public BaseNode Node { get; }
public List<(string field, string match)> WordsInFields = new List<(string, string)>();
... | using System;
using System.Collections.Generic;
using Microsoft.Build.Logging.StructuredLogger;
namespace StructuredLogViewer
{
public class SearchResult
{
public BaseNode Node { get; }
public List<(string field, string match)> WordsInFields = new List<(string, string)>();
... |
69a7df6d0a0ae7bb84f88aa8b9edb86ff81a5a39 | Protect against empty type going into Log Processor. | Protect against empty type going into Log Processor.
| xibosignage/xibo-dotnetclient,dasgarner/xibo-dotnetclient | XmdsAgents/LogAgent.cs | agpl-3.0 | 1,588,094,107 | /**
* Copyright (C) 2020 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either ver... | /**
* Copyright (C) 2020 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either ver... |
854ab9536dff44d903924d25c417306971caf8d5 | Fixed issue with duplicates by only grabbing first value's field. | Fixed issue with duplicates by only grabbing first value's field.
| dahall/vanara | PInvoke/Shared/FieldValueHash.cs | mit | 1,588,093,275 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Vanara.PInvoke
{
/// <summary>Gets a static field's name from its value and caches the list for faster lookups.</summary>
public class StaticFieldValueHash
{
private static Dictionary<(Type, Type), IDictionary<i... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Vanara.PInvoke
{
/// <summary>Gets a static field's name from its value and caches the list for faster lookups.</summary>
public class StaticFieldValueHash
{
private static Dictionary<(Type, Type), IDictionary<i... |
c6f14a9bc483f516eabff106ae71f072005ed2f4 | Fixed IsNotActive message. | Fixed IsNotActive message.
| daryllabar/XrmUnitTest | DLaB.Xrm.Test.Base/AssertCrm.cs | mit | 1,588,092,935 | using System;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Query;
using System.Diagnostics;
using static System.String;
namespace DLaB.Xrm.Test
{
/// <summary>
/// CRM Assertion helper class.
/// </summary>
public class AssertCrm
{
#region Properties
private IOrganizationServi... | using System;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Query;
using System.Diagnostics;
using static System.String;
namespace DLaB.Xrm.Test
{
/// <summary>
/// CRM Assertion helper class.
/// </summary>
public class AssertCrm
{
#region Properties
private IOrganizationServi... |
1ee5d5b45a10184ba7dd308a0094f625ae87f1e6 | Remove restriction of devenv on SetAdditionalVCTargetsPath | Remove restriction of devenv on SetAdditionalVCTargetsPath
| ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake | Sharpmake/MSBuildGlobalSettings.cs | apache-2.0 | 1,588,092,850 | // 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 law... | // 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 law... |
b7c6dd3b9108d24338f15e0ccca1a7c6f3aaa276 | [Android] Fix the post import section, was written more than necessary | [Android] Fix the post import section, was written more than necessary
| ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake | Sharpmake.Platforms/Sharpmake.CommonPlatforms/Android/AndroidPlatform.cs | apache-2.0 | 1,588,092,771 | // 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 law o... | // 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 law o... |
82d0983fd6c90f5899e382244bd86c8b4cea55cc | Use existing property | Use existing property
| killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Core/Utilities/Editor/SpatializerUtilities.cs | mit | 1,588,092,131 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Utilities.Editor
{
/// <summary>
/// Collection of utilities to manage the configured audio... | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Utilities.Editor
{
/// <summary>
/// Collection of utilities to manage the configured audio... |
63aee1841b6d95b27564c3d43696e8b9c019194f | Formatting | Formatting
| killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Core/Utilities/Editor/SpatializerUtilities.cs | mit | 1,588,092,118 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Utilities.Editor
{
/// <summary>
/// Collection of utilities to manage the configured audio... | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Utilities.Editor
{
/// <summary>
/// Collection of utilities to manage the configured audio... |
ad79865aef18b987341b0a259b0deef9e831419f | Update documentation | Update documentation
| DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Core/Utilities/Editor/Preferences/MixedRealityProjectPreferences.cs | mit | 1,588,091,917 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System.Collections.Generic;
using Microsoft.MixedReality.Toolkit.Utilities.Editor;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Tool... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System.Collections.Generic;
using Microsoft.MixedReality.Toolkit.Utilities.Editor;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Tool... |
ca0a37d88c7f9820945c9f47cd31d5d7cf353166 | Refactor out const None | Refactor out const None
| DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Core/Inspectors/Setup/MixedRealityProjectConfiguratorWindow.cs | mit | 1,588,091,917 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Compilation;
using UnityEngine;
using MRConfig = ... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Compilation;
using UnityEngine;
using MRConfig = ... |
d95b87a4717dd66ec8daaee1ea66917ae8f16c8c | Quick bugfix | Quick bugfix
| yasirkula/UnityGridFramework | Plugins/SimpleGridFramework/Editor/GridEditor.cs | mit | 1,588,091,674 | using UnityEngine;
using UnityEditor;
namespace SimpleGridFramework
{
public class GridEditor : EditorWindow
{
public enum GridAlignment { XZ = 0, XY = 1, YZ = 2 };
private const string PREF_ENABLED = "SGF_Enabled";
private const string PREF_SHOW_GRIDS = "SGF_ShowGrids";
private const string PREF_SNAP_TO_G... | using UnityEngine;
using UnityEditor;
namespace SimpleGridFramework
{
public class GridEditor : EditorWindow
{
public enum GridAlignment { XZ = 0, XY = 1, YZ = 2 };
private const string PREF_ENABLED = "SGF_Enabled";
private const string PREF_SHOW_GRIDS = "SGF_ShowGrids";
private const string PREF_SNAP_TO_G... |
2ee7d3e846672a8f2b4c212980f80a09abdd0667 | Update Assets/MRTK/Core/Inspectors/Setup/MixedRealityProjectConfiguratorWindow.cs | Update Assets/MRTK/Core/Inspectors/Setup/MixedRealityProjectConfiguratorWindow.cs
Co-Authored-By: Will <03f7414553f4a516a3c3f51b46f4027c16f58f76@microsoft.com> | killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity | Assets/MRTK/Core/Inspectors/Setup/MixedRealityProjectConfiguratorWindow.cs | mit | 1,588,091,455 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Compilation;
using UnityEngine;
using MRConfig = ... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Editor;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Compilation;
using UnityEngine;
using MRConfig = ... |
a6c1a8391fa1126a07c114cfddd6688fa8231dac | Removing user dialog for batch mode | Removing user dialog for batch mode
| killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/SDK/Features/Utilities/Migration/Tools/MigrationTool.cs | mit | 1,588,091,337 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.using System;
#if UNITY_EDITOR
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEditor;
using UnityEditor.SceneManagement;
using UnityEngine;
using UnityEngine.SceneManagement;
... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.using System;
#if UNITY_EDITOR
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEditor;
using UnityEditor.SceneManagement;
using UnityEngine;
using UnityEngine.SceneManagement;
... |
82d4b9046125487f700757897f15a6af27046f9a | hyperlink input | hyperlink input
| predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus | Sensus.Shared/UI/Inputs/HyperlinkInput.cs | apache-2.0 | 1,588,091,265 | using Sensus.UI.UiProperties;
using Xamarin.Forms;
namespace Sensus.UI.Inputs
{
public class HyperlinkInput : Input
{
public override object Value
{
get
{
return null;
}
}
public override bool Enabled { get; set; }
public override string DefaultName => "Hyperlink";
[EntryStringUiProperty... | using Sensus.UI.UiProperties;
using Xamarin.Forms;
namespace Sensus.UI.Inputs
{
public class HyperlinkInput : Input
{
public override object Value
{
get
{
return null;
}
}
public override bool Enabled { get; set; }
public override string DefaultName => "Hyperlink";
[EntryStringUiProperty... |
f2dc07d9819e9743d543bac88502b96cb85b50e6 | support NHibernate proxies from v5.2 | support NHibernate proxies from v5.2
| mvbalaw/Mapper | src/MvbaMapper/SimpleMapper.cs | mit | 1,588,091,016 | // * **************************************************************************
// * Copyright (c) McCreary, Veselka, Bragg & Allen, P.C.
// * This source code is subject to terms and conditions of the MIT License.
// * A copy of the license can be found in the License.txt file
// * at the root of this distributi... | // * **************************************************************************
// * Copyright (c) McCreary, Veselka, Bragg & Allen, P.C.
// * This source code is subject to terms and conditions of the MIT License.
// * A copy of the license can be found in the License.txt file
// * at the root of this distributi... |
99c6229fb0402ea1a07c21cce34840764a0eb96d | Fix text execution order | Fix text execution order
| mganss/XmlSchemaClassGenerator | XmlSchemaClassGenerator.Tests/XmlTests.cs | apache-2.0 | 1,588,090,207 | using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using ... | using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using ... |
30ec03edf0dfc5027bdb3b58ab9540527990660f | Working script | Working script
| fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Gateway/MobSpawnControlScript.cs | agpl-3.0 | 1,588,090,055 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class MobSpawnControlScript : NetworkBehaviour
{
public List<GameObject> MobSpawners;
public bool DetectViaMatrix;
private bool SpawnedMobs;
private float timeElapsedServer = 0;
private const float PlayerCheck... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class MobSpawnControlScript : NetworkBehaviour
{
public List<GameObject> MobSpawners;
public bool DetectViaMatrix;
private bool SpawnedMobs;
private float timeElapsedServer = 0;
private const float PlayerCheck... |
cf6d95cba11f4247f45fc711e7e7a1035da0faf8 | Rename some methods to be more .NET (#1255) | Rename some methods to be more .NET (#1255)
| mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp | binding/Binding/SKRotationScaleMatrix.cs | mit | 1,588,089,920 | using System;
namespace SkiaSharp
{
public unsafe partial struct SKRotationScaleMatrix
{
public static readonly SKRotationScaleMatrix Empty;
public static readonly SKRotationScaleMatrix Identity = new SKRotationScaleMatrix (1, 0, 0, 0);
public SKRotationScaleMatrix (float scos, float ssin, float tx, float t... | using System;
namespace SkiaSharp
{
public unsafe partial struct SKRotationScaleMatrix
{
public static readonly SKRotationScaleMatrix Empty;
public static readonly SKRotationScaleMatrix Identity = new SKRotationScaleMatrix (1, 0, 0, 0);
public SKRotationScaleMatrix (float scos, float ssin, float tx, float t... |
86c57c7b099d41675f1a45936217872b1dcb43e3 | Get COLUMN_TYPE with FillDataTable | Get COLUMN_TYPE with FillDataTable
Signed-off-by: mitchydeath <3bf997fdb0f25e7cfcf43053eba962a9b720e5de@gmail.com>
| mysql-net/MySqlConnector,mysql-net/MySqlConnector,mysql-net/MySqlConnector | src/MySqlConnector/Core/SchemaProvider.cs | mit | 1,588,089,639 | #if !NETSTANDARD1_3
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using MySql.Data.MySqlClient;
namespace MySqlConnector.Core
{
internal sealed class SchemaProvider
{
public SchemaProvider(MySqlConnection connection)
{
m_connection = connection... | #if !NETSTANDARD1_3
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using MySql.Data.MySqlClient;
namespace MySqlConnector.Core
{
internal sealed class SchemaProvider
{
public SchemaProvider(MySqlConnection connection)
{
m_connection = connection... |
18be72c43a0fafb295241f82a0d1804cf7dc77de | This might fix our IHost problem. we'll see | This might fix our IHost problem. we'll see
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.WebApi/Program.cs | agpl-3.0 | 1,588,089,615 | using System;
using Microsoft.AspNetCore.Hosting;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Serilog;
using Serilog.Events;
using SoraBot.Data;
using SoraBot.Services.Utils;
namespace SoraBot.WebApi
{
public class Program
{
... | using System;
using Microsoft.AspNetCore.Hosting;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Serilog;
using Serilog.Events;
using SoraBot.Data;
using SoraBot.Services.Utils;
namespace SoraBot.WebApi
{
public class Program
{
... |
d9caa9f7b40adddd5292357776e39ae7c1356453 | Fix element order in collection assertions | Fix element order in collection assertions
| mganss/XmlSchemaClassGenerator | XmlSchemaClassGenerator.Tests/XmlTests.cs | apache-2.0 | 1,588,089,410 | using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using ... | using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using ... |
b5eb002ae9400b580912575982ec0b85d915700c | Getting rid of 2 useless enumerations | Getting rid of 2 useless enumerations
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Services/Waifu/WaifuServiceUnboxing.cs | agpl-3.0 | 1,588,089,281 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using SoraBot.Data.Models.SoraDb;
using SoraBot.Data.Repositories.Interfaces;
using SoraBot.Services.Cache;
using SoraBot.Services.Utils;
using WaifuDbo = SoraBot.Data.Models.SoraDb.Waifu;
namespace SoraBot.Services.Waif... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using SoraBot.Data.Models.SoraDb;
using SoraBot.Data.Repositories.Interfaces;
using SoraBot.Services.Cache;
using SoraBot.Services.Utils;
using WaifuDbo = SoraBot.Data.Models.SoraDb.Waifu;
namespace SoraBot.Services.Waif... |
7cc93b3e5e57a28a110cebebbaa287c81e0896fe | Updates to builder extension methods | Updates to builder extension methods
| exceptionless/Foundatio,FoundatioFx/Foundatio,exceptionless/Foundatio,FoundatioFx/Foundatio | src/Foundatio.DataProtection/Extensions/DataProtectionBuilderExtensions.cs | apache-2.0 | 1,588,089,142 | using System;
using Foundatio.Storage;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.DataProtection.KeyManagement;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace Foundatio.DataProtection {
public static class... | using System;
using Foundatio.Storage;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.DataProtection.KeyManagement;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace Foundatio.DataProtection {
public static class... |
bed6c9920a31f358959fdea0ae0d17a12f447f0c | ACTUAL performance improvement not like the shit i did before lel | ACTUAL performance improvement not like the shit i did before lel
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/WaifuModule/WaifuModuleMisc.cs | agpl-3.0 | 1,588,089,135 | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Bot.Models;
using SoraBot.Common.Utils;
using SoraBot.Data.Models.SoraDb;
namespace SoraBot.Bot.Modules.WaifuModule
{
public partial class WaifuModule
{
[Command("waifustats"), Alias("ws... | using System;
using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Bot.Models;
using SoraBot.Common.Utils;
using SoraBot.Data.Models.SoraDb;
namespace SoraBot.Bot.Modules.WaifuModule
{
public partial class WaifuModule
{
[Command("waifustats"), Alias("ws... |
88ae3d24123077d249cfa8dcefd3b4961dc12099 | added extension method to get storage from di | added extension method to get storage from di
| exceptionless/Foundatio,FoundatioFx/Foundatio,FoundatioFx/Foundatio,exceptionless/Foundatio | src/Foundatio.DataProtection/Extensions/DataProtectionBuilderExtensions.cs | apache-2.0 | 1,588,089,134 | using System;
using Foundatio.Storage;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.DataProtection.KeyManagement;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace Foundatio.DataProtection {
public static class... | using System;
using Foundatio.Storage;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.DataProtection.KeyManagement;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace Foundatio.DataProtection {
public static class... |
9b87172c57ddf435eaaa8c231cf27acebb703b1d | decrement socket queue count when freeing sockets (#158) | decrement socket queue count when freeing sockets (#158)
| SteveSyfuhs/Kerberos.NET | Kerberos.NET/Client/Transport/SocketPool.cs | mit | 1,588,088,919 | using System;
using System.Collections.Concurrent;
using System.Linq;
using System.Net.Sockets;
using System.Threading;
using System.Threading.Tasks;
using Kerberos.NET.Dns;
namespace Kerberos.NET.Client
{
internal class SocketPool : ISocketPool
{
private readonly ConcurrentDictionary<string, NamedPoo... | using System;
using System.Collections.Concurrent;
using System.Linq;
using System.Net.Sockets;
using System.Threading;
using System.Threading.Tasks;
using Kerberos.NET.Dns;
namespace Kerberos.NET.Client
{
internal class SocketPool : ISocketPool
{
private readonly ConcurrentDictionary<string, NamedPoo... |
8b91c944d11ee2d35e161be85b9dda60146df1ab | #15 Do not format null content in HtmlTag.ToPlainTextCore. | #15 Do not format null content in HtmlTag.ToPlainTextCore.
| CXuesong/MwParserFromScratch | MwParserFromScratch/Nodes/Inline.cs | apache-2.0 | 1,588,088,901 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace MwParserFromScratch.Nodes
{
public abstract class InlineNode : Node
{
... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace MwParserFromScratch.Nodes
{
public abstract class InlineNode : Node
{
... |
221a96b815ad2e7824ecd017c1c6ab88b547ab56 | Null out the field when disposing. Fixes #960 (#1256) | Null out the field when disposing. Fixes #960 (#1256)
Not sure why iOS is drawing a disposed object, but just be safe. | mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp | source/SkiaSharp.Views/SkiaSharp.Views.AppleiOS/SKCanvasView.cs | mit | 1,588,088,648 | #if !__WATCHOS__
using System;
using System.ComponentModel;
using CoreGraphics;
using Foundation;
using UIKit;
#if __TVOS__
namespace SkiaSharp.Views.tvOS
#elif __IOS__
namespace SkiaSharp.Views.iOS
#endif
{
[Register(nameof(SKCanvasView))]
[DesignTimeVisible(true)]
public class SKCanvasView : UIView, IComponent
... | #if !__WATCHOS__
using System;
using System.ComponentModel;
using CoreGraphics;
using Foundation;
using UIKit;
#if __TVOS__
namespace SkiaSharp.Views.tvOS
#elif __IOS__
namespace SkiaSharp.Views.iOS
#endif
{
[Register(nameof(SKCanvasView))]
[DesignTimeVisible(true)]
public class SKCanvasView : UIView, IComponent
... |
6a2d2ed80c54647ba2739c987521ce5f31ba1279 | No need to allocate on disposal (#1257) | No need to allocate on disposal (#1257)
| mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp,mono/SkiaSharp | binding/Binding/SKObject.cs | mit | 1,588,088,460 | using System;
using System.Collections.Concurrent;
using System.Runtime.InteropServices;
using System.Threading;
namespace SkiaSharp
{
public abstract class SKObject : SKNativeObject
{
private readonly object locker = new object ();
private ConcurrentDictionary<IntPtr, SKObject> ownedObjects;
private Concurr... | using System;
using System.Collections.Concurrent;
using System.Runtime.InteropServices;
using System.Threading;
namespace SkiaSharp
{
public abstract class SKObject : SKNativeObject
{
private readonly object locker = new object ();
private ConcurrentDictionary<IntPtr, SKObject> ownedObjects;
private Concurr... |
3e72f3b10f27b7aec5e2f76ca91a94ab837d3578 | Added some package constants. | Added some package constants.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtApiDotNet/Win32/LogonUtils.cs | apache-2.0 | 1,588,088,406 | // Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applica... | // Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applica... |
92f55a0ba2d9f80d86490d626ac511c1cbec8fb3 | Improve TimerClock tests | Improve TimerClock tests
| NimaAra/Easy.Common | Easy.Common.Tests.Unit/TimerAndClockTests/TimerClockTests.cs | mit | 1,588,088,191 | namespace Easy.Common.Tests.Unit.TimerAndClockTests
{
using System.Threading;
using Easy.Common.Extensions;
using NUnit.Framework;
using Shouldly;
[TestFixture]
public sealed class TimerClockTests
{
[Test]
public void When_scheduling_an_action_to_execute_at_every_interval()... | namespace Easy.Common.Tests.Unit.TimerAndClockTests
{
using System.Threading;
using Easy.Common.Extensions;
using NUnit.Framework;
using Shouldly;
[TestFixture]
public sealed class TimerClockTests
{
[Test]
public void When_scheduling_an_action_to_execute_at_every_interval()... |
655b0d38493703c9c4982e02a3ea4ff70b1b6273 | Corrected typo in XML comment for JwtSecurityToken | Corrected typo in XML comment for JwtSecurityToken
"represnts" -> "represents" | AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet,AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet,AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet,AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet | src/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.cs | mit | 1,588,087,959 | //------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
// All rights reserved.
//
// This code is licensed under the MIT License.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated do... | //------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
// All rights reserved.
//
// This code is licensed under the MIT License.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated do... |
9732b7048ee5354a3bc9ea7df751084e28beef49 | CoreRT update (#5670) | CoreRT update (#5670)
| MTDdk/FrameworkBenchmarks,greenlaw110/FrameworkBenchmarks,martin-g/FrameworkBenchmarks,jaguililla/FrameworkBenchmarks,greenlaw110/FrameworkBenchmarks,martin-g/FrameworkBenchmarks,jamming/FrameworkBenchmarks,MTDdk/FrameworkBenchmarks,sagenschneider/FrameworkBenchmarks,jamming/FrameworkBenchmarks,martin-g/FrameworkBenchm... | frameworks/CSharp/aspnetcore-corert/PlatformBenchmarks/BenchmarkApplication.cs | bsd-3-clause | 1,588,087,157 | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Buffers.Binary;
using System.Buffers.Text;
using System.IO.Pipelines;
using System.Threading.Tasks;
using Microsoft.AspNetCo... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Buffers.Text;
using System.IO.Pipelines;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Server.Kestrel.Core.Intern... |
dd2bbce3f9c42935b6e3d10faa88b62dd6fc46b9 | Update MobSpawnControlScript.cs | Update MobSpawnControlScript.cs
| fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Gateway/MobSpawnControlScript.cs | agpl-3.0 | 1,588,087,147 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class MobSpawnControlScript : NetworkBehaviour
{
public List<GameObject> MobSpawners;
public bool DetectViaMatrix;
private bool SpawnedMobs;
private float timeElapsedServer = 0;
private const float PlayerCheck... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class MobSpawnControlScript : NetworkBehaviour
{
public List<GameObject> MobSpawners;
public bool DetectViaMatrix;
private bool SpawnedMobs;
private float timeElapsedServer = 0;
[Server]
public void SpawnMobs... |
a0bd4b7d1bb10e15082bfcf1c2977a70ccc352e4 | Update MobSpawnControlScript.cs | Update MobSpawnControlScript.cs
| krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Gateway/MobSpawnControlScript.cs | agpl-3.0 | 1,588,086,168 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class MobSpawnControlScript : NetworkBehaviour
{
public List<GameObject> MobSpawners;
public bool DetectViaMatrix;
private bool SpawnedMobs;
private float timeElapsedServer = 0;
[Server]
public void SpawnMobs... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
public class MobSpawnControlScript : NetworkBehaviour
{
public List<GameObject> MobSpawners;
public bool DetectViaMatrix;
private bool SpawnedMobs;
private float timeElapsedServer = 0;
[Server]
public void SpawnMobs... |
078c10533b125f3d4809f968b513402ecba58d77 | Adding even more HLVR entity keys (#243) | Adding even more HLVR entity keys (#243)
| SteamDatabase/ValveResourceFormat | ValveResourceFormat/Utils/EntityLumpKnownKeys.cs | mit | 1,588,086,068 | using System.Collections.Generic;
namespace ValveResourceFormat.Utils
{
public class EntityLumpKnownKeys
{
public Dictionary<uint, string> Fields { get; } = new Dictionary<uint, string>();
public EntityLumpKnownKeys()
{
// grep -Eohr "^\s*([a-zA-Z0-9\w_-]+)\s*\(" **/*.fgd |... | using System.Collections.Generic;
namespace ValveResourceFormat.Utils
{
public class EntityLumpKnownKeys
{
public Dictionary<uint, string> Fields { get; } = new Dictionary<uint, string>();
public EntityLumpKnownKeys()
{
// grep -Eohr "^\s*([a-zA-Z0-9\w_-]+)\s*\(" **/*.fgd |... |
1825e4165bb025120d7600a5d9288ef9a3c7606f | fix: refactor and fix personalization inserts/updates (#993) | fix: refactor and fix personalization inserts/updates (#993)
| sendgrid/sendgrid-csharp,sendgrid/sendgrid-csharp,dubrovkinmaxim/sendgrid-csharp,dubrovkinmaxim/sendgrid-csharp | src/SendGrid/Helpers/Mail/SendGridMessage.cs | mit | 1,588,086,038 | // <copyright file="SendGridMessage.cs" company="Twilio SendGrid">
// Copyright (c) Twilio SendGrid. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// </copyright>
using Newtonsoft.Json;
using SendGrid.Helpers.Mail.Model;
using System;
using ... | // <copyright file="SendGridMessage.cs" company="Twilio SendGrid">
// Copyright (c) Twilio SendGrid. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// </copyright>
using Newtonsoft.Json;
using SendGrid.Helpers.Mail.Model;
using System;
using ... |
a4dc08171d0442ad425d090da52e55bdf24e5b60 | Fixed: XML serialization should write relation_type as lower-case string | Fixed: XML serialization should write relation_type as lower-case string
Since xml deserialization handles empty string, I've added it to the json deserialization as well.
| zapadi/redmine-net-api | src/redmine-net-api/Types/IssueRelation.cs | apache-2.0 | 1,588,085,531 | /*
Copyright 2011 - 2019 Adrian Popescu.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... | /*
Copyright 2011 - 2019 Adrian Popescu.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... |
6da054d0542a2b095780f499a0848ffbbe97ab55 | AzureBlobStoragebFileTypeAlgorithm fix for Open inline files | AzureBlobStoragebFileTypeAlgorithm fix for Open inline files
| MehdyKarimpour/extensions,AlejandroCano/extensions,signumsoftware/framework,AlejandroCano/extensions,signumsoftware/framework,signumsoftware/extensions,MehdyKarimpour/extensions,signumsoftware/framework,signumsoftware/extensions | Signum.Engine.Extensions/Files/AzureBlobStoragebFileTypeAlgorithm.cs | mit | 1,588,085,264 |
using Azure;
using Azure.Storage.Blobs;
using Signum.Entities.Files;
using Signum.Utilities;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace Signum.Engine.Files
{
public static class BlobContainerClientPool
{
... |
using Azure;
using Azure.Storage.Blobs;
using Signum.Entities.Files;
using Signum.Utilities;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace Signum.Engine.Files
{
public static class BlobContainerClientPool
{
... |
ab7e4df86e44c7ca31aaeefc67914e41f6d98bb6 | 配列のインデックスの挙動確認 | 配列のインデックスの挙動確認
| zenuas/Roku,zenuas/Roku | test/ListsTest.cs | mit | 1,588,085,030 | using Extensions;
using NUnit.Framework;
using System;
namespace Roku.Tests
{
public class ListsTest
{
[Test]
public void SequenceTest()
{
var xs = Lists.Sequence(1);
var ys = Lists.RangeTo('a', 'f');
var zs = xs.Zip(ys);
var (a, b) = zs.... | using Extensions;
using NUnit.Framework;
using System;
namespace Roku.Tests
{
public class ListsTest
{
[Test]
public void SequenceTest()
{
var xs = Lists.Sequence(1);
var ys = Lists.RangeTo('a', 'f');
var zs = xs.Zip(ys);
var (a, b) = zs.... |
ca4938342506b0bbb2fb4f5008863fc5ee422d23 | define GenericParameters | define GenericParameters
| WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common | src/WeihanLi.Common/Aspect/ProxyUtils.cs | mit | 1,588,084,677 | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using WeihanLi.Extensions;
namespace WeihanLi.Common.Aspect
{
internal static class ProxyUtils
{
private const string ProxyAssemblyName = "Weih... | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using WeihanLi.Extensions;
namespace WeihanLi.Common.Aspect
{
internal static class ProxyUtils
{
private const string ProxyAssemblyName = "Weih... |
4f5544a9b7dcde4beba6d7320c0bd17fbd4af8b2 | fixed saving all to csv (missing other columns) | fixed saving all to csv (missing other columns)
| ZmorzynskiK/stalion | src/Stalion/Services/EditableStringServiceBase.cs | mit | 1,588,084,139 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Stalion.Extensions;
using Stalion.Models;
namespace Stalion.Services
{
/// <summary>
/// This is a sample, base implementation for editable string service.
/// You can use ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Stalion.Extensions;
using Stalion.Models;
namespace Stalion.Services
{
/// <summary>
/// This is a sample, base implementation for editable string service.
/// You can use ... |
62128f0605ec042c7f2ee734b057a87d6322eb6c | better defaults for SafeDefaults | better defaults for SafeDefaults
| signumsoftware/framework,signumsoftware/framework,AlejandroCano/framework,AlejandroCano/framework,signumsoftware/framework,AlejandroCano/framework | Signum.Engine/BulkInserter.cs | mit | 1,588,083,149 | using Signum.Engine.Maps;
using Signum.Entities;
using Signum.Entities.Reflection;
using Signum.Utilities;
using Signum.Utilities.ExpressionTrees;
using Signum.Utilities.Reflection;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using... | using Signum.Engine.Maps;
using Signum.Entities;
using Signum.Entities.Reflection;
using Signum.Utilities;
using Signum.Utilities.ExpressionTrees;
using Signum.Utilities.Reflection;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using... |
82ae0308c1914c21c3591c07612eca3118964c61 | Fix ParsedTreeExecutor not ignoring case properly | Fix ParsedTreeExecutor not ignoring case properly
Caused SaveLoader to not load daemons properly :/
| Arkhist/Hacknet-Pathfinder,Arkhist/Hacknet-Pathfinder,Arkhist/Hacknet-Pathfinder,Arkhist/Hacknet-Pathfinder | Pathfinder/Util/XML/ParsedTreeExecutor.cs | mit | 1,588,083,031 | using System;
using System.Linq;
using System.Collections.Generic;
namespace Pathfinder.Util.XML {
public class ParsedTreeExecutor : IExecutor {
internal Dictionary<string, Tuple<ReadExecution, bool>> delegateData = new Dictionary<string, Tuple<ReadExecution, bool>>();
public bool Ignore... | using System;
using System.Linq;
using System.Collections.Generic;
namespace Pathfinder.Util.XML {
public class ParsedTreeExecutor : IExecutor {
internal Dictionary<string, Tuple<ReadExecution, bool>> delegateData = new Dictionary<string, Tuple<ReadExecution, bool>>();
public bool Ignore... |
3d5ffcc9ddae66a194f6594898a1d90b1a2bc73a | Fixed json serialization of `IssueRelation.Type` | Fixed json serialization of `IssueRelation.Type`
| zapadi/redmine-net-api | src/redmine-net-api/Types/IssueRelation.cs | apache-2.0 | 1,588,082,977 | /*
Copyright 2011 - 2019 Adrian Popescu.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... | /*
Copyright 2011 - 2019 Adrian Popescu.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... |
bc7e44713193ab66f8ed11d6a92b7daa925f7349 | Revert "remove a suppression no longer needed" | Revert "remove a suppression no longer needed"
This reverts commit dababde0a8b99a4c01cc9ed4a232e1b5f82e25bc.
| acple/ParsecSharp | ParsecSharp/GlobalSuppressions.cs | mit | 1,588,082,767 | using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("Style", "IDE0071:Simplify interpolation", Justification = "IDE0071 considerably decreases the performance of string construction")]
[assembly: SuppressMessage("Style", "IDE0071WithoutSuggestion")]
| using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("Style", "IDE0071:Simplify interpolation", Justification = "IDE0071 considerably decreases the performance of string construction")]
|
dcc55170b69fb8ef32626ee3a5285762c6bc968b | Remove rogue Debug.Assert | Remove rogue Debug.Assert
| tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools | src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs | agpl-3.0 | 1,588,082,384 | using Byond.TopicSender;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Api.Models.Internal;
using Tgstation.Serve... | using Byond.TopicSender;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Tgstation.Server.Api.Models;
using Tgstation.Server.Api.Models.Inter... |
4a035a116719a593d786e326bf7405fccb8815e6 | Changes generated by 8cceaedf351a0e57793cb47afc985344b8f75819 | Changes generated by 8cceaedf351a0e57793cb47afc985344b8f75819
| gocardless/gocardless-dotnet | GoCardless.Tests/ErrorTests.cs | mit | 1,588,081,961 | using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using NUnit.Framework;
using GoCardless.Errors;
using GoCardless.Exceptions;
namespace GoCardless.Tests
{
public class ErrorTests
{
private GoCardlessClient client;
public MockHttp mockHttp;
... | using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using NUnit.Framework;
using GoCardless.Errors;
using GoCardless.Exceptions;
namespace GoCardless.Tests
{
public class ErrorTests
{
private GoCardlessClient client;
public MockHttp mockHttp;
... |
bcae2cca1d0f00fc92c17d3f9b924f07fa57f198 | method organization. no real code changes. | method organization. no real code changes.
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/ModSelectionList.xaml.cs | apache-2.0 | 1,588,081,684 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using System.Net;
using System.IO;
using Microsoft.Win32;
using RelhaxModpack.UIComponents;
usi... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using System.Net;
using System.IO;
using Microsoft.Win32;
using RelhaxModpack.UIComponents;
usi... |
0e75e066462cdd114905b20772cb91b9d7cdd83e | re-worked dependency saving to be based on dependency calculation | re-worked dependency saving to be based on dependency calculation
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/ModSelectionList.xaml.cs | apache-2.0 | 1,588,081,407 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using System.Net;
using System.IO;
using Microsoft.Win32;
using RelhaxModpack.UIComponents;
usi... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml;
using System.Net;
using System.IO;
using Microsoft.Win32;
using RelhaxModpack.UIComponents;
usi... |
a1a82e45d4d7c226ff0db2c1bed74328edb684ab | add saving and loading of enabled property | add saving and loading of enabled property
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/DatabaseComponents/DatabasePackage.cs | apache-2.0 | 1,588,081,358 | using RelhaxModpack.DatabaseComponents;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
namespace RelhaxModpack
{
/// <summary>
/// A database component is the base class for all other packages
/// </summary>
public class DatabasePackage : IDatabaseCom... | using RelhaxModpack.DatabaseComponents;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
namespace RelhaxModpack
{
/// <summary>
/// A database component is the base class for all other packages
/// </summary>
public class DatabasePackage : IDatabaseCom... |
9e6df606a539d95b9469a91de81dc07dee82aaf9 | Get MessageId from sendGridResponse | Get MessageId from sendGridResponse
| lukencode/FluentEmail | src/Senders/FluentEmail.SendGrid/SendGridSender.cs | mit | 1,588,081,328 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using FluentEmail.Core;
using FluentEmail.Core.Interfaces;
using FluentEmail.Core.Models;
using SendGrid;
using SendGrid.Helpers.Mail;
using SendGridAttachment = SendGrid.Helpers.Ma... | using System;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using FluentEmail.Core;
using FluentEmail.Core.Interfaces;
using FluentEmail.Core.Models;
using SendGrid;
using SendGrid.Helpers.Mail;
using SendGridAttachment = SendGrid.Helpers.Mail.Attachment;
namespace FluentEm... |
9823248ef4aa7af0f4680b8b43f41b2475396811 | Fix DNS client lookup bugs | Fix DNS client lookup bugs
| Vanaheimr/Hermod | Hermod/DNS/DNSClient.cs | apache-2.0 | 1,588,081,298 | /*
* Copyright (c) 2010-2020, Achim 'ahzf' Friedland <achim.friedland@graphdefined.com>
* This file is part of Vanaheimr Hermod <http://www.github.com/Vanaheimr/Hermod>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may... | /*
* Copyright (c) 2010-2020, Achim 'ahzf' Friedland <achim.friedland@graphdefined.com>
* This file is part of Vanaheimr Hermod <http://www.github.com/Vanaheimr/Hermod>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may... |
92c2a7d74888faf2c1f83b70a5694b8f35bd10df | Do not close when user is busy with walletmanager | Do not close when user is busy with walletmanager
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Tabs/WalletManager/LoadWallets/LoadWalletViewModel.cs | mit | 1,588,081,219 | using Avalonia;
using DynamicData;
using DynamicData.Binding;
using ReactiveUI;
using Splat;
using System;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reactive;
using System.Reactive.Concurrency;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using System.React... | using Avalonia;
using DynamicData;
using DynamicData.Binding;
using ReactiveUI;
using Splat;
using System;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reactive;
using System.Reactive.Concurrency;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using System.React... |
63f8eb9af5c20f89773f73443ef3632ce76c1aa7 | Setup Geo data | Setup Geo data
| Backendless/.NET-SDK,Backendless/.NET-SDK | Projects/GeometryTestProject/UnitTest1.cs | apache-2.0 | 1,588,081,022 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using BackendlessAPI;
using BackendlessAPI.Persistence;
using System;
using System.Collections.Generic;
using System.Linq;
using BackendlessAPI.Async;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net.Http.Headers;
using BackendlessAPI.Exception;
u... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using BackendlessAPI;
using BackendlessAPI.Persistence;
using System;
using System.Collections.Generic;
using System.Linq;
using BackendlessAPI.Async;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net.Http.Headers;
using BackendlessAPI.Exception;
... |
af6c5560eef367e5b4c95e1d17139f2aa3e73bc1 | #496 Domain - Entity - Id cannot be null | #496 Domain - Entity - Id cannot be null
| optivem/optivem-commons-cs,optivem/immerest | src/Core/Domain/Entity.cs | apache-2.0 | 1,588,080,793 | using System;
using System.Collections.Generic;
namespace Optivem.Atomiv.Core.Domain
{
public class Entity<TIdentity> : IReadonlyEntity<TIdentity>
where TIdentity : IComparable<TIdentity> //, IEquatable<TIdentity>
{
private TIdentity _id;
private List<Event> _events;
public E... | using System;
using System.Collections.Generic;
namespace Optivem.Atomiv.Core.Domain
{
public class Entity<TIdentity> : IReadonlyEntity<TIdentity>
where TIdentity : IComparable<TIdentity> //, IEquatable<TIdentity>
{
private List<Event> _events;
public Entity(TIdentity id)
{
... |
16e9f843d255db5452679cef1b3ef6a13d2fa287 | Added MutexAccessRule to Shared mode mutex | Added MutexAccessRule to Shared mode mutex
| mbdavid/LiteDB | LiteDB/Client/Shared/SharedEngine.cs | mit | 1,588,080,706 | using LiteDB.Engine;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Threading;
#if NETFRAMEWORK
using System.Security.AccessControl;
using System.Security.Principal;
#endif
namespace LiteDB
{
public class SharedEngine : ILiteEngine
... | using LiteDB.Engine;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Threading;
namespace LiteDB
{
public class SharedEngine : ILiteEngine
{
private readonly EngineSettings _settings;
private readonly Mutex _mutex;... |
b88d58ed2f7ed80fd2ff62bc625ba43e5279d0d0 | Fix #263 | Fix #263
Consider generalizing deserialization of enums
| zapadi/redmine-net-api | src/redmine-net-api/Types/IssueRelation.cs | apache-2.0 | 1,588,080,010 | /*
Copyright 2011 - 2019 Adrian Popescu.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... | /*
Copyright 2011 - 2019 Adrian Popescu.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... |
c1f94709949a0d53af4a53f9b0cc5b36c22e0a1e | Added Any key held evaluatable | Added Any key held evaluatable
| antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora | Project-Aurora/Project-Aurora/Settings/Overrides/Logic/Boolean/Boolean_PeripheralInput.cs | mit | 1,588,078,256 | using Aurora.Profiles;
using Aurora.Utils;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media;
using Keys = System.Windows.Forms.Keys;
namespace Aurora.Settings.Overri... | using Aurora.Profiles;
using Aurora.Utils;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media;
using Keys = System.Windows.Forms.Keys;
namespace Aurora.Settings.Overri... |
2abf84a7cf207fd2634412074cde89774777603c | removed invalid comment | removed invalid comment
| OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | src/OmniSharp.Roslyn.CSharp/Services/Decompilation/DecompilationExternalSourceService.cs | mit | 1,588,077,651 | using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Host;
using Microsoft.Extensions.Logging;
using OmniSharp.Extensions;
using OmniSharp.Services;
using OmniSharp.Utilities;
using System;
using System.Collections.Generic;
using System.Composition;
using System.IO;
using System.Linq;
using System.Reflection;
us... | using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Host;
using Microsoft.Extensions.Logging;
using OmniSharp.Extensions;
using OmniSharp.Services;
using OmniSharp.Utilities;
using System;
using System.Collections.Generic;
using System.Composition;
using System.IO;
using System.Linq;
using System.Reflection;
us... |
d8bc78c5769dd55a3a9d9faa66514b1eb230a6e9 | Crop mode should always be "crop" | Crop mode should always be "crop"
"pad" doesn't actually crop the image, so information about the focal point is not included in the URL.
| skybrud/Skybrud.ImagePicker,skybrud/Skybrud.ImagePicker | src/Skybrud.ImagePicker/Models/ImagePickerImage.cs | mit | 1,588,077,451 | using Newtonsoft.Json;
using Umbraco.Core;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Web;
using Umbraco.Web.Models;
namespace Skybrud.ImagePicker.Models {
public class ImagePickerImage {
[JsonProperty("id")]
public int Id { get; }
[JsonProperty("width")]
public i... | using Newtonsoft.Json;
using Umbraco.Core;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Web;
using Umbraco.Web.Models;
namespace Skybrud.ImagePicker.Models {
public class ImagePickerImage {
[JsonProperty("id")]
public int Id { get; }
[JsonProperty("width")]
public i... |
236b8e8a2d06057eee252c5c2d360040ba54a768 | Add warning message. | Add warning message.
| nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Controls/WalletExplorer/SendTabViewModel.cs | mit | 1,588,077,047 | using Avalonia.Controls.Notifications;
using NBitcoin;
using NBitcoin.Payment;
using ReactiveUI;
using System;
using System.Collections.Generic;
using System.Reactive;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Blockchain.Transactions;
usi... | using NBitcoin;
using NBitcoin.Payment;
using ReactiveUI;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using WalletWasabi.Blockchain.TransactionBuilding;
using WalletWasabi.Blockchain.Transactions;
using WalletWasabi.Gui.Models.StatusBarStatuses;
using WalletWasa... |
cd1c2c2dfb1a6e46b475d63b5b58c02fa9833dfb | add test to access keyst from disco response | add test to access keyst from disco response
| IdentityModel/IdentityModelv2,IdentityModel/IdentityModel,IdentityModel/IdentityModel,IdentityModel/IdentityModel,IdentityModel/IdentityModel2,IdentityModel/IdentityModel2,IdentityModel/IdentityModelv2,IdentityModel/IdentityModel2,IdentityModel/IdentityModelv2 | test/UnitTests/HttpClientExtensions/HttpClientDiscoveryExtensionsTests.cs | apache-2.0 | 1,588,076,587 | // 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 FluentAssertions;
using IdentityModel.Client;
using Newtonsoft.Json;
using System;
using System.IO;
using System.Linq;
using System.Net;... | // 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 FluentAssertions;
using IdentityModel.Client;
using Newtonsoft.Json;
using System;
using System.IO;
using System.Linq;
using System.Net;... |
fee946ef19ef34f7fb5565ca68e41aa428ea4741 | test stuff | test stuff
| Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TCC.Core/Test/Tester.cs | mit | 1,588,076,250 | using Newtonsoft.Json.Linq;
using Nostrum;
using Nostrum.Extensions;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
using TCC.Data;
using TCC.Data.Databases;
using TCC.... | using Newtonsoft.Json.Linq;
using Nostrum;
using Nostrum.Extensions;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
using TCC.Data;
using TCC.Data.Databases;
using TCC.... |
f6f05111b99028604ec42e2b8e939d2533282119 | sdk: $(ComposerIncludeDevPackages), $(ComposerIncludeSuggestPackages) | sdk: $(ComposerIncludeDevPackages), $(ComposerIncludeSuggestPackages)
| peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept | src/Peachpie.NET.Sdk/ComposerTask.cs | apache-2.0 | 1,588,076,198 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using SimpleJSON;
namespace Peachpie.NET.Sdk.Tools
{
/// <summary>
/// Task that processes <c>composer.json</c> file... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using SimpleJSON;
namespace Peachpie.NET.Sdk.Tools
{
/// <summary>
/// Task that processes <c>composer.json</c> file... |
6261a2ea1fcb1adbdfe0f71e7a1bb222dd3b7e56 | Convert if to switch statements | Convert if to switch statements
| dannycabrera/Get-iOS-Model | iOSHardware.cs | mit | 1,588,076,127 | using Foundation;
namespace Xamarin.iOS
{
[Preserve(AllMembers = true)]
class iOSHardware
{
private readonly iOSChipTypeMap _chipTypeMap;
public iOSHardware()
{
_chipTypeMap = new iOSChipTypeMap();
}
public iOSChipType GetChipType(string hardware) =>
... | using Foundation;
namespace Xamarin.iOS
{
[Preserve(AllMembers = true)]
class iOSHardware
{
private readonly iOSChipTypeMap _chipTypeMap;
public iOSHardware()
{
_chipTypeMap = new iOSChipTypeMap();
}
public iOSChipType GetChipType(string hardware) =>
... |
6b84d5def9b5adebd996c9184fb248ee07bf141f | remove debug code. | remove debug code.
| SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,grokys/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,Perspex/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,Perspex/Pe... | samples/ControlCatalog/MainWindow.xaml.cs | mit | 1,588,076,101 | using System;
using System.Runtime.InteropServices;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Notifications;
using Avalonia.Input;
using Avalonia.Markup.Xaml;
using ControlCatalog.ViewModels;
namespace ControlCatalog
{
public class MainWindow : Window
{
private WindowNotification... | using System;
using System.Runtime.InteropServices;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Notifications;
using Avalonia.Input;
using Avalonia.Markup.Xaml;
using ControlCatalog.ViewModels;
namespace ControlCatalog
{
public class MainWindow : Window
{
private WindowNotification... |
0f4c48a09f145a4c2871c8b0df14c2036178328c | sort CU guilds by hp too | sort CU guilds by hp too
| Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TCC.Core/ViewModels/Widgets/CivilUnrestViewModel.cs | mit | 1,588,076,101 | using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Nostrum;
using Nostrum.Factories;
using TCC.Analysis;
using TCC.Settings.WindowSettings;
using TCC.UI;
using TCC.Utils;
using TeraDataLite;
using TeraPacketParser.Messages;
namespace TCC.ViewMod... | using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Nostrum;
using Nostrum.Factories;
using TCC.Analysis;
using TCC.Settings.WindowSettings;
using TCC.UI;
using TCC.Utils;
using TeraDataLite;
using TeraPacketParser.Messages;
namespace TCC.ViewMod... |
c730831f8402c0166b6b27c9b404fc75eb03456a | sdk: process composer.json "require-dev" and "suggest" dependencies | sdk: process composer.json "require-dev" and "suggest" dependencies
| iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie | src/Peachpie.NET.Sdk/ComposerTask.cs | apache-2.0 | 1,588,076,082 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using SimpleJSON;
namespace Peachpie.NET.Sdk.Tools
{
/// <summary>
/// Task that processes <c>composer.json</c> file... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using SimpleJSON;
namespace Peachpie.NET.Sdk.Tools
{
/// <summary>
/// Task that processes <c>composer.json</c> file... |
f6f4e4955717e37bfea26a8d1c735c84f2ce4a94 | update S_PLAYER_STAT_UPDATE to p93 | update S_PLAYER_STAT_UPDATE to p93
| Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TeraPacketParser/Messages/S_PLAYER_STAT_UPDATE.cs | mit | 1,588,076,059 |
namespace TeraPacketParser.Messages
{
public class S_PLAYER_STAT_UPDATE : ParsedMessage
{
public long CurrentHP { get; }
public int CurrentMP { get; }
public int CurrentST { get; }
public long MaxHP { get; }
public int MaxMP { get; }
public int BonusHP { get; ... |
namespace TeraPacketParser.Messages
{
public class S_PLAYER_STAT_UPDATE : ParsedMessage
{
public int CurrentHP { get; }
public int CurrentMP { get; }
public int CurrentST { get; }
public int MaxHP { get; }
public int MaxMP { get; }
public int BonusHP { get; }
... |
f4ff22026bca244fe557736d5c5c2e04c31d939b | add a few more tests | add a few more tests
| 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.Test/Reflection/CustomOptionsTest.cs | bsd-3-clause | 1,588,075,194 | #region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 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 fo... | #region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 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 fo... |
7868c0dad5cff824fe5bf7c90c0a8d4dea71d5eb | Fix test case failures | Fix test case failures
| ppy/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,peppy/osu-new | osu.Game.Rulesets.Mania.Tests/TestSceneManiaHitObjectComposer.cs | mit | 1,588,072,556 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framewo... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framewo... |
16dcad72953b0d3ba7885f5b22b2991dd7267b17 | BasketMessageAdapter. Check subscription adapter supports MarketDataMessage. | BasketMessageAdapter. Check subscription adapter supports MarketDataMessage.
| StockSharp/StockSharp | Algo/BasketMessageAdapter.cs | apache-2.0 | 1,588,071,451 | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... | #region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/St... |
cef995f54dd15fa192d1781e0606d85a40c5a347 | fixed: comment out OverridePoint.cs EndPointSelector example code hits error for unused purchase lib. | fixed: comment out OverridePoint.cs EndPointSelector example code hits error for unused purchase lib.
| sassembla/Autoya,sassembla/Autoya | Assets/Autoya/Backyard/OverridePoints.cs | mit | 1,588,071,391 | using System;
using System.Collections;
using System.Collections.Generic;
using AutoyaFramework.AssetBundles;
using AutoyaFramework.Purchase;
using AutoyaFramework.Representation.Base64;
using AutoyaFramework.Settings.AssetBundles;
using AutoyaFramework.Settings.Auth;
using UnityEngine;
using AutoyaFramework.Settings.A... | using System;
using System.Collections;
using System.Collections.Generic;
using AutoyaFramework.AssetBundles;
using AutoyaFramework.Purchase;
using AutoyaFramework.Representation.Base64;
using AutoyaFramework.Settings.AssetBundles;
using AutoyaFramework.Settings.Auth;
using UnityEngine;
using AutoyaFramework.Settings.A... |
0f22224c37ca12d6b60e695a8b5407f557c77e44 | WPF Example - Readd Legacy Binding | WPF Example - Readd Legacy Binding
if CefSharpSettings.LegacyJavascriptBindingEnabled then register bound and boundAsync objects
| Livit/CefSharp,Livit/CefSharp,Livit/CefSharp,Livit/CefSharp | CefSharp.Wpf.Example/Views/BrowserTabView.xaml.cs | bsd-3-clause | 1,588,071,262 | // Copyright © 2013 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using ... | // Copyright © 2013 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using ... |
d74fe553b96a4279ad00f0f27face27b3b51996e | [Modify] Remove it | [Modify] Remove it
| sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Net/WebHeaderCollection.cs | mit | 1,588,071,001 | #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-... |
9720ae41c2c25b56290fb02ed6908277d60db2be | adjust CustomOptionsTest.cs | adjust CustomOptionsTest.cs
| 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.Test/Reflection/CustomOptionsTest.cs | bsd-3-clause | 1,588,070,969 | #region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 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 fo... | #region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 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 fo... |
3a67f11992d81f623f5087967c8adc7e09a8f4ce | Used DownloadFileAsync instead of stream copying | Used DownloadFileAsync instead of stream copying
| noobot/SlackConnector | src/SlackConnector/Connections/Clients/File/FlurlFileClient.cs | mit | 1,588,070,303 | using System.IO;
using System.Threading.Tasks;
using Flurl;
using Flurl.Http;
using Newtonsoft.Json;
using SlackConnector.Connections.Responses;
using SlackConnector.Models;
namespace SlackConnector.Connections.Clients.File
{
internal class FlurlFileClient : IFileClient
{
private readonly IResponseVer... | using System.IO;
using System.Threading.Tasks;
using Flurl;
using Flurl.Http;
using Newtonsoft.Json;
using SlackConnector.Connections.Responses;
using SlackConnector.Models;
namespace SlackConnector.Connections.Clients.File
{
internal class FlurlFileClient : IFileClient
{
private readonly IResponseVer... |
3ee93f7f8b3109a0ddd09840d044b12d653c00b3 | Update CustomerInvoice.cs | Update CustomerInvoice.cs
| ON-IT/Visma.Net,ON-IT/Visma.Net | Visma.net/Models/CustomerInvoice.cs | mit | 1,588,070,226 | using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using ONIT.VismaNetApi.Interfaces;
using ONIT.VismaNetApi.Lib;
using ONIT.VismaNetApi.Models.CustomDto;
using ONIT.VismaNetApi.Models.Enums;
namespace ONIT.VismaNetApi.Models
{
public class Custom... | using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using ONIT.VismaNetApi.Interfaces;
using ONIT.VismaNetApi.Lib;
using ONIT.VismaNetApi.Models.CustomDto;
using ONIT.VismaNetApi.Models.Enums;
namespace ONIT.VismaNetApi.Models
{
public class Custom... |
3075be69d23112aa8a12bb949d42bbfe6b27d60a | fixed: test fail by unexpected execution order. | fixed: test fail by unexpected execution order.
| sassembla/Autoya,sassembla/Autoya | Assets/AutoyaTests/Tests/Backyard/PurchaseImplementsTests.cs | mit | 1,588,069,404 | using System;
using System.Collections;
using System.IO;
using AutoyaFramework;
using AutoyaFramework.Settings.Auth;
using Miyamasu;
using UnityEngine;
/**
test for purchase via Autoya.
*/
public class PurchaseImplementationTests : MiyamasuTestRunner
{
private void DeleteAllData(string path)
{
if (Dir... | using System;
using System.Collections;
using System.IO;
using AutoyaFramework;
using AutoyaFramework.Settings.Auth;
using Miyamasu;
using UnityEngine;
/**
test for purchase via Autoya.
*/
public class PurchaseImplementationTests : MiyamasuTestRunner
{
private void DeleteAllData(string path)
{
if (Dir... |
6c6c4baf35d6ed600ce98febf37d4ee89cf9ae04 | removed not used functions | removed not used functions
| YAFNET/YAFNET,YAFNET/YAFNET,YAFNET/YAFNET | yafsrc/YAF.Core/Model/GroupRepositoryExtensions.cs | apache-2.0 | 1,588,068,952 | /* Yet Another Forum.NET
* Copyright (C) 2003-2005 Bjørnar Henden
* Copyright (C) 2006-2013 Jaben Cargman
* Copyright (C) 2014-2020 Ingo Herbote
* https://www.yetanotherforum.net/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* dis... | /* Yet Another Forum.NET
* Copyright (C) 2003-2005 Bjørnar Henden
* Copyright (C) 2006-2013 Jaben Cargman
* Copyright (C) 2014-2020 Ingo Herbote
* https://www.yetanotherforum.net/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* dis... |
a07c529e9c11f6a6f067b6fefe4e5ad03540e042 | Fixed crash when trying to remove a null sequence from the layer editor. | Fixed crash when trying to remove a null sequence from the layer editor.
| antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora | Project-Aurora/Project-Aurora/Controls/KeySequence.xaml.cs | mit | 1,588,068,704 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace Aurora.Controls
{
public partial class KeySequence : UserControl
{
[DesignerSerializationVisibility(DesignerSeriali... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace Aurora.Controls
{
public partial class KeySequence : UserControl
{
[DesignerSerializationVisibility(DesignerSeriali... |
ff3928465c06a7e578afe1088a9b0a045ea2eca7 | Add xmldoc | Add xmldoc
| smoogipooo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,peppy/osu,ppy/osu,peppy/osu,peppy/osu-new,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu | osu.Game.Rulesets.Mania/UI/ManiaPlayfield.cs | mit | 1,588,067,909 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;... |
a3b413ca06cc5ff690a438185e1f4a0a83129718 | fixed: test fail by unexpected status. | fixed: test fail by unexpected status.
| sassembla/Autoya,sassembla/Autoya | Assets/AutoyaTests/Tests/Backyard/AuthenticatedHTTPImplementationTests.cs | mit | 1,588,067,789 | using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using AutoyaFramework;
using AutoyaFramework.Settings.Auth;
using Miyamasu;
using UnityEngine;
/**
tests for Autoya Authenticated HTTP.
Autoya strongly handle these server-related errors which comes from game-server.
these t... | using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using AutoyaFramework;
using AutoyaFramework.Settings.Auth;
using Miyamasu;
using UnityEngine;
/**
tests for Autoya Authenticated HTTP.
Autoya strongly handle these server-related errors which comes from game-server.
these t... |
ff24a15760167b1db112239b6c3418870654f5a1 | Fix vertical drag in down-scroll scenarios | Fix vertical drag in down-scroll scenarios
| peppy/osu,smoogipooo/osu,peppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,ppy/osu | osu.Game.Rulesets.Mania/Edit/ManiaHitObjectComposer.cs | mit | 1,588,066,584 | // 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.Beatmaps;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Edit.Tools;
using osu.Game.Rulesets.Mania.Objects;
using System.Collections.Generic;
using... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Edit.Tools;
using osu.Game.Rulesets.Mania.Objects;
using System.Collections.Generic;
using... |
f93291e25b4967edd658d3e309d33905684d5343 | Remove unused override | Remove unused override
| UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu-new,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,ppy/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu | osu.Game.Rulesets.Mania/Edit/Blueprints/ManiaSelectionBlueprint.cs | mit | 1,588,066,522 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects.Drawables;
using osu.Game.Rulesets.Objec... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects.Drawables;
using osu.Game.Rulesets.Objec... |
a7a680b4862e5adf6d0579b81534f07b169488c4 | Fix horizontal drag not working | Fix horizontal drag not working
| NeoAdonis/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,peppy/osu,smoogipooo/osu,smoogipoo/osu | osu.Game.Rulesets.Mania/UI/ManiaPlayfield.cs | mit | 1,588,066,495 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;... |
e5131400e77d7ba9c213259ad883fc715206b9f7 | Remove now unnecessary position manipulation | Remove now unnecessary position manipulation
| smoogipoo/osu,peppy/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipooo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,peppy/osu,peppy/osu-new,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,ppy/osu | osu.Game.Rulesets.Mania/Edit/ManiaSelectionHandler.cs | mit | 1,588,066,479 | // 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.Rulesets.Mania.Edit.Blueprints;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rule... | // 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.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Edit.Blueprints;
using osu.Game.Rulesets.Mani... |
1f3571f6110474529ba3540b3f0d1e2c497115d4 | shell func refined | shell func refined
- shell_exec and exec sanitizes arguments
- code cleanup, nullable
| iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie | src/Peachpie.Library/Shell.cs | apache-2.0 | 1,588,066,369 | #nullable enable
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Pchp.Core;
using Pchp.Core.Utilities;
namespace Pchp.Library
{
[PhpExtension("standard")]
public static class Shell
{
... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Pchp.Core;
using Pchp.Core.Utilities;
namespace Pchp.Library
{
[PhpExtension("standard")]
public static class Shell
{
#region getenv,... |
ce0ac94845c1de79e311363d5202d875ce818e06 | Version 1.9.102 | Version 1.9.102
| Arkitektum/GIS.Lib.MetadataCSW | Properties/AssemblyInfo.cs | bsd-2-clause | 1,588,065,538 | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ar... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ar... |
4a433ba64a44015d0bc389093754343232ed2302 | Fix namespace for Record | Fix namespace for Record
| Arkitektum/GIS.Lib.MetadataCSW | MetadataCSW.cs | bsd-2-clause | 1,588,065,267 | //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18034
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18034
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... |
073d3d2f7a6713cf2cf97b03618cb0805e1e834a | #18 add test for localdev in url | #18 add test for localdev in url
| samwa/loconomics,samwa/loconomics,samwa/loconomics | web/App_Code/LcUrl.cs | mpl-2.0 | 1,588,065,136 | using System;
using System.Collections.Generic;
using System.Web;
/// <summary>
/// The only recommended way to create URLs safety for all the
/// site and communications.
/// Use *Path Properties for pages and *Url for communications.
/// </summary>
public static class LcUrl
{
/// <summary>
/// Get the Site Roo... | using System;
using System.Collections.Generic;
using System.Web;
/// <summary>
/// The only recommended way to create URLs safety for all the
/// site and communications.
/// Use *Path Properties for pages and *Url for communications.
/// </summary>
public static class LcUrl
{
/// <summary>
/// Get the Site Roo... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.