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 |
|---|---|---|---|---|---|---|---|---|
2e6d729e4a8e4b940692e162a50a955f4bf2a760 | Update Program.cs | Update Program.cs
| twilightgod/PlayLeetcode | 0133/Program.cs | apache-2.0 | 1,586,752,011 | using System;
using System.Collections.Generic;
namespace _0133
{
public class Node
{
public int val;
public IList<Node> neighbors;
public Node()
{
val = 0;
neighbors = new List<Node>();
}
public Node(int _val)
{
val... | using System;
using System.Collections.Generic;
namespace _0133
{
/**
* Definition for undirected graph. */
public class UndirectedGraphNode
{
public int label;
public IList<UndirectedGraphNode> neighbors;
public UndirectedGraphNode(int x) { label = x; neighbors = new List<Undirec... |
b8a6487454e4cc43d317fc31f104c14a7eecccad | Update auth.aspx.cs | Update auth.aspx.cs
| YAFNET/YAFNET,YAFNET/YAFNET,YAFNET/YAFNET | yafsrc/YetAnotherForum.NET/auth.aspx.cs | apache-2.0 | 1,586,751,862 | /* 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... |
aa360f4a5009b461c9f61d088abd5df9063fe9fb | updated build | updated build
| YAFNET/YAFNET,YAFNET/YAFNET,YAFNET/YAFNET | yafsrc/YAF.Utils/BoardInfo.cs | apache-2.0 | 1,586,751,625 | /* 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... |
77233c2680a5fdae4655f1b70acf4633bb0dfb13 | Fix edge effect exception happening one frame too late | Fix edge effect exception happening one frame too late
| ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framew... | osu.Framework/Graphics/Containers/CompositeDrawable_DrawNode.cs | mit | 1,586,751,493 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Graphics.OpenGL;
using osu.Framework.Graphics.Primitives;
using osu.Framework.Graphics.Shaders;
using osu.Framework... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Graphics.OpenGL;
using osu.Framework.Graphics.Primitives;
using osu.Framework.Graphics.Shaders;
using osu.Framework... |
f6b0be72829ab3ef885d820e710227261dcd9554 | Fix a bug that effekseer fails to run if it runs from other directory | Fix a bug that effekseer fails to run if it runs from other directory
| effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer | Dev/Editor/Effekseer/Program.cs | mit | 1,586,750,974 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Reflection;
using System.Runtime.ExceptionServices;
using EfkN = Effekseer.swig.EffekseerNative;
namespace Effekseer
{
class Program
{
/// <summary>
/// Starting dire... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Reflection;
using System.Runtime.ExceptionServices;
using EfkN = Effekseer.swig.EffekseerNative;
namespace Effekseer
{
class Program
{
/// <summary>
/// Starting dire... |
55191bf0da1488bdb21d9fe289a6eaf91ee30482 | IR-1538 Withdrawal Limits Api (Comments) | IR-1538 Withdrawal Limits Api (Comments)
| independentreserve/dotNetApiClient,independentreserve/dotNetApiClient | src/DotNetClientApi/Data/Limits/DepositLimit.cs | apache-2.0 | 1,586,748,708 | namespace IndependentReserve.DotNetClientApi.Data.Limits
{
public class DepositLimit : TransactionLimit
{
/// <summary>
/// Deposits up to this amount made during a "Period" will be processed and credited to your account instantly
/// </summary>
public decimal Deposited { get; s... | namespace IndependentReserve.DotNetClientApi.Data.Limits
{
public class DepositLimit : TransactionLimit
{
public decimal Deposited { get; set; }
}
}
|
4adcadb6a80120e3c0e827f9d36d1234f79885f0 | Update ModuleWeaver.cs | Update ModuleWeaver.cs
| Fody/Obsolete | Obsolete.Fody/ModuleWeaver.cs | mit | 1,586,748,618 | using System.Collections.Generic;
using Fody;
public partial class ModuleWeaver :
BaseModuleWeaver
{
public SemanticVersion assemblyVersion;
public override void Execute()
{
ReadConfig();
FindEditorBrowsableTypes();
FindObsoleteType();
assemblyVersion = VersionReader.... | using System.Collections.Generic;
using Fody;
public partial class ModuleWeaver:BaseModuleWeaver
{
public SemanticVersion assemblyVersion;
public override void Execute()
{
ReadConfig();
FindEditorBrowsableTypes();
FindObsoleteType();
assemblyVersion = VersionReader.Read(M... |
a42ba5642184ac556af05bb4655de92b9e01cd3e | redundant if | redundant if
| Fody/Obsolete | Obsolete.Fody/ConfigReader.cs | mit | 1,586,748,610 | using System;
using System.Linq;
using Fody;
public partial class ModuleWeaver
{
public string TreatAsErrorFormat = "Will be treated as an error from version {0}. ";
public StepType StepType = StepType.Major;
public string RemoveInVersionFormat = "Will be removed in version {0}.";
public string ThrowsN... | using System;
using System.Linq;
using Fody;
public partial class ModuleWeaver
{
public string TreatAsErrorFormat = "Will be treated as an error from version {0}. ";
public StepType StepType = StepType.Major;
public string RemoveInVersionFormat = "Will be removed in version {0}.";
public string ThrowsN... |
9c00b67e7fa525b9cb0c305b38fb0550e35f2deb | Fix: indent and name of param | Fix: indent and name of param
| NIFTYCloud-mbaas/ncmb_unity,NIFTYCloud-mbaas/ncmb_unity,NIFTYCloud-mbaas/ncmb_unity | ncmb_unity/Assets/NCMB/Script/NCMBUser.cs | apache-2.0 | 1,586,747,922 | /*******
Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED 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 require... | /*******
Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED 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 require... |
4b192774512e384d3be8bfde44374cb844f0b93f | Minor formatting before re-write | Minor formatting before re-write
| Willster419/RelhaxModpack,Willster419/RelicModManager | RelhaxModpack/RelhaxModpack/Windows/ModSelectionList.xaml.cs | apache-2.0 | 1,586,747,864 | 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... |
a56d4e89bb021f36127e61f7f2d529e1debe450b | Fix: wrong parameter | Fix: wrong parameter
| NIFTYCloud-mbaas/ncmb_unity,NIFTYCloud-mbaas/ncmb_unity,NIFTYCloud-mbaas/ncmb_unity | ncmb_unity/Assets/PlayModeTest/NCMBUserTest.cs | apache-2.0 | 1,586,747,404 | using UnityEngine;
using UnityEngine.TestTools;
using NUnit.Framework;
using NCMB;
using System.Reflection;
using System;
using MiniJSON;
using System.Collections.Generic;
using System.Collections;
public class NCMBUserTest
{
public static DateTime dummyDate = new DateTime (2017, 2, 7, 1, 2, 3, 4);
// facebookのダミ... | using UnityEngine;
using UnityEngine.TestTools;
using NUnit.Framework;
using NCMB;
using System.Reflection;
using System;
using MiniJSON;
using System.Collections.Generic;
using System.Collections;
public class NCMBUserTest
{
public static DateTime dummyDate = new DateTime (2017, 2, 7, 1, 2, 3, 4);
// facebookのダミ... |
9774d9b317cdb0cd215bafb3aba783bcc0173620 | Update Snippets.cs | Update Snippets.cs
| toddams/RazorLight | tests/RazorLight.Tests/Snippets/Snippets.cs | apache-2.0 | 1,586,745,507 | using System.Threading.Tasks;
using Microsoft.VisualStudio.TestPlatform.TestHost;
using RazorLight;
using Xunit;
public class Snippets
{
public class ViewModel
{
public string Name { get; set; }
}
[Fact]
public async Task Simple()
{
#region Simple
var engine = new RazorLightEngineBuilder()
// required... | using System.Threading.Tasks;
using Microsoft.VisualStudio.TestPlatform.TestHost;
using RazorLight;
using Xunit;
public class Snippets
{
public class ViewModel
{
public string Name { get; set; }
}
[Fact]
public async Task Simple()
{
#region Simple
var engine = new RazorLightEngineBuilder()
// required... |
c9c417413908e4387ba39af300ef474939738601 | Added a Generic Access Check Result which just takes the Enum as a type parameter. | Added a Generic Access Check Result which just takes the Enum as a type parameter.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtApiDotNet/AccessCheckResult.cs | apache-2.0 | 1,586,744,184 | // Copyright 2020 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 2020 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... |
5ad27816dbaecfe8d554620296ae2f82b4ddc962 | fix the TestThreadsafe ou put error | fix the TestThreadsafe ou put error
| b3b00/csly | samples/ParserExample/Program.cs | mit | 1,586,742,314 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading;
using csly.whileLang.compiler;
using csly.whileLang.interpreter;
using csly.whileLang.model;
using csly.whileLang.parser;
using expressionparser;
using GenericLexerWithCallbacks;
using ... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading;
using csly.whileLang.compiler;
using csly.whileLang.interpreter;
using csly.whileLang.model;
using csly.whileLang.parser;
using expressionparser;
using GenericLexerWithCallbacks;
using ... |
d86e9814736af7fd27e40741fc2baf5b78d44749 | Refactor MonitorDecisionMaking() for readability | Refactor MonitorDecisionMaking() for readability
| fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/NPC/AI/MobAgent.cs | agpl-3.0 | 1,586,741,450 | using UnityEngine;
using MLAgents;
/// <summary>
/// Handles the underlying logic for
/// the Mob[Brain] behaviours
/// </summary>
[RequireComponent(typeof(CustomNetTransform))]
[RequireComponent(typeof(RegisterObject))]
public class MobAgent : Agent
{
protected CustomNetTransform cnt;
protected RegisterObject regi... | using UnityEngine;
using MLAgents;
/// <summary>
/// Handles the underlying logic for
/// the Mob[Brain] behaviours
/// </summary>
[RequireComponent(typeof(CustomNetTransform))]
[RequireComponent(typeof(RegisterObject))]
public class MobAgent : Agent
{
protected CustomNetTransform cnt;
protected RegisterObject regi... |
0dc2e3c9fc8cb5615f019ecf82439d485aa41965 | execute async delegates asynchronously instead of synchronously #758 | execute async delegates asynchronously instead of synchronously #758
| louthy/language-ext,StanJav/language-ext | LanguageExt.Core/DataTypes/Task/Task.Extensions.cs | mit | 1,586,741,230 | using LanguageExt;
using LanguageExt.ClassInstances;
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Reflection;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
using static LanguageExt.Prelude;
namespace LanguageExt
{
publi... | using LanguageExt;
using LanguageExt.ClassInstances;
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Reflection;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
using static LanguageExt.Prelude;
namespace LanguageExt
{
publi... |
30cf16a06023ad3d3d37410639174bd851cf0750 | added failing tests related to issue #758 | added failing tests related to issue #758
| louthy/language-ext,StanJav/language-ext | LanguageExt.Tests/TaskTests.cs | mit | 1,586,740,219 | using System;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using LanguageExt;
using LanguageExt.ClassInstances;
using Xunit;
using static LanguageExt.Prelude;
namespace LanguageExt.Tests
{
public class TaskTests
{
[Fact]
public void TaskLINQTest1()
{
... | using System;
using System.Net.Http;
using System.Threading.Tasks;
using LanguageExt.ClassInstances;
using Xunit;
using static LanguageExt.Prelude;
namespace LanguageExt.Tests
{
public class TaskTests
{
[Fact]
public void TaskLINQTest1()
{
var computation = from x in Acti... |
e33254c14aef2675c94d6b688b7489ea8589a0c8 | Consolidate subnet building code | Consolidate subnet building code
| NRules/NRules,NRules/NRules | src/NRules/NRules/Rete/ReteBuilder.cs | mit | 1,586,738,989 | using System;
using System.Collections.Generic;
using System.Linq;
using NRules.Aggregators;
using NRules.RuleModel;
using NRules.Utilities;
namespace NRules.Rete
{
internal interface IReteBuilder
{
IEnumerable<ITerminalNode> AddRule(IRuleDefinition rule);
INetwork Build();
}
internal... | using System;
using System.Collections.Generic;
using System.Linq;
using NRules.Aggregators;
using NRules.RuleModel;
using NRules.Utilities;
namespace NRules.Rete
{
internal interface IReteBuilder
{
IEnumerable<ITerminalNode> AddRule(IRuleDefinition rule);
INetwork Build();
}
internal... |
eec6e6c367cd0c8b326158a013f44f75e064db8e | remove/sort usings | remove/sort usings
| StanJav/language-ext,louthy/language-ext | LanguageExt.Tests/TaskTests.cs | mit | 1,586,738,604 | using System;
using System.Net.Http;
using System.Threading.Tasks;
using LanguageExt.ClassInstances;
using Xunit;
using static LanguageExt.Prelude;
namespace LanguageExt.Tests
{
public class TaskTests
{
[Fact]
public void TaskLINQTest1()
{
var computation = from x in Acti... | using System;
using System.Threading.Tasks;
using Xunit;
using static LanguageExt.Prelude;
using LanguageExt.ClassInstances;
using LanguageExt;
using System.Net.Http;
using Nito.AsyncEx;
namespace LanguageExt.Tests
{
public class TaskTests
{
[Fact]
public void TaskLINQTest1()
{
... |
5ad6f58676a89b01146332cf5f97d1e539ccdcd3 | New clientlib ver | New clientlib ver
| kaltura/KalturaGeneratedAPIClientsCsharp | KalturaClient/Client.cs | agpl-3.0 | 1,586,736,998 | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | // ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... |
eee775c582ad9106b18a0caf886b2215fa3ccd36 | Use TryAdd to register services | Use TryAdd to register services | domaindrivendev/Ahoy,domaindrivendev/Swashbuckle.AspNetCore,domaindrivendev/Ahoy,domaindrivendev/Ahoy,domaindrivendev/Swashbuckle.AspNetCore | src/Swashbuckle.AspNetCore.SwaggerGen/Application/SwaggerGenServiceCollectionExtensions.cs | mit | 1,586,736,403 | using System;
using System.Text.Json;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.ApiDescriptions;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Options;
using Swashbuckle.AspNetCore.Swagger;
using Swashbuckle.AspNetCore.SwaggerGen;
namespace Microsoft.Extensions... | using System;
using System.Text.Json;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.ApiDescriptions;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Options;
using Swashbuckle.AspNetCore.Swagger;
using Swashbuckle.AspNetCore.SwaggerGen;
namespace Microsoft.Extensions... |
9a0a54fc480cc98dbf8be713c392c425058fcc1a | Implemented ToString in managed code. | Implemented ToString in managed code.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtApiDotNet/Sid.cs | apache-2.0 | 1,586,735,763 | // 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... |
f69500586194d51b91423bd8de35f00778e66be3 | fix clown not having a sound for stepping on bananium | fix clown not having a sound for stepping on bananium
| fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Managers/SoundManager.cs | agpl-3.0 | 1,586,735,559 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEngine;
using Mirror;
using Random = UnityEngine.Random;
using UnityEngine.Audio;
using UnityEngine.SceneManagement;
public class SoundManager : MonoBehaviour
{
public AudioMixerGroup DefaultMixer;
p... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEngine;
using Mirror;
using Random = UnityEngine.Random;
using UnityEngine.Audio;
using UnityEngine.SceneManagement;
public class SoundManager : MonoBehaviour
{
public AudioMixerGroup DefaultMixer;
p... |
f09ec766cd7c2c92ee72bcf4c24e9628917374b8 | metabolis now uses playMove method to change speed | metabolis now uses playMove method to change speed
| fomalsd/unitystation,krille90/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Health/BloodHealth/MetabolismSystem.cs | agpl-3.0 | 1,586,734,568 | using Mirror;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Used by the Metabolism class to apply the desired effects. Substances are applied evenly over the duration of the effect.
/// </summary>
public struct MetabolismEffect
{
public int totalNutrients;
public i... | using Mirror;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Used by the Metabolism class to apply the desired effects. Substances are applied evenly over the duration of the effect.
/// </summary>
public struct MetabolismEffect
{
public int totalNutrients;
public i... |
b4b94c0fe40d00e9a1aae1dcb83e9516776be851 | Fix for hostile AI going braindead when they spot a player | Fix for hostile AI going braindead when they spot a player
| krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/NPC/AI/MobAgent.cs | agpl-3.0 | 1,586,733,833 | using UnityEngine;
using MLAgents;
/// <summary>
/// Handles the underlying logic for
/// the Mob[Brain] behaviours
/// </summary>
[RequireComponent(typeof(CustomNetTransform))]
[RequireComponent(typeof(RegisterObject))]
public class MobAgent : Agent
{
protected CustomNetTransform cnt;
protected RegisterObject regi... | using UnityEngine;
using MLAgents;
/// <summary>
/// Handles the underlying logic for
/// the Mob[Brain] behaviours
/// </summary>
[RequireComponent(typeof(CustomNetTransform))]
[RequireComponent(typeof(RegisterObject))]
public class MobAgent : Agent
{
protected CustomNetTransform cnt;
protected RegisterObject regi... |
dbaa60d732dcbff3a05853fc31e325f73cde5326 | reduce code needed for autosplitservice | reduce code needed for autosplitservice
| Zutatensuppe/DiabloInterface,Zutatensuppe/DiabloInterface,Zutatensuppe/DiabloInterface | src/DiabloInterface.Business/Services/AutoSplitService.cs | mit | 1,586,733,260 | namespace Zutatensuppe.DiabloInterface.Business.Services
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Windows.Forms;
using Zutatensuppe.D2Reader;
using Zutatensuppe.D2Reader.Models;
using Zutatensuppe.D... | namespace Zutatensuppe.DiabloInterface.Business.Services
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Windows.Forms;
using Zutatensuppe.D2Reader;
using Zutatensuppe.D2Reader.Models;
using Zutatensuppe.D... |
23f87feddb1ddb77d7d73282e6bc21b9a697028c | mini code format | mini code format
| Zutatensuppe/DiabloInterface,Zutatensuppe/DiabloInterface,Zutatensuppe/DiabloInterface | src/DiabloInterface/Gui/SettingsWindow.cs | mit | 1,586,733,148 | namespace Zutatensuppe.DiabloInterface.Gui
{
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
using Zutatensuppe.DiabloInterface.Business;
using Zutatensuppe.DiabloInterface... | namespace Zutatensuppe.DiabloInterface.Gui
{
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
using Zutatensuppe.DiabloInterface.Business;
using Zutatensuppe.DiabloInterface... |
356d9db1a87df58c2e2febedca3ab45778499db0 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,586,732,215 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "af97c1b4d5dbe23792cceb7967c513c9a672cd6c";
public static string Version = "1.2";
public static string Build = "3323";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "f862d12a9cbc43386480eeeeff3bd5f5094a4631";
public static string Version = "1.2";
public static string Build = "3322";
... |
9191835b638ec1b1c9927734d1fc39f65933c391 | Fixed possible error with a property list changing mid loop. | Fixed possible error with a property list changing mid loop.
| vchelaru/FlatRedBall,vchelaru/FlatRedBall,vchelaru/FlatRedBall,vchelaru/FlatRedBall,vchelaru/FlatRedBall | FRBDK/Glue/GlueCommon/SaveClasses/PropertySave.cs | mit | 1,586,731,988 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using System.Drawing;
using GlueSaveClasses;
namespace FlatRedBall.Glue.SaveClasses
{
public class PropertySave
{
public string Name;
[XmlElement("ValueAsString", typeof(stri... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using System.Drawing;
using GlueSaveClasses;
namespace FlatRedBall.Glue.SaveClasses
{
public class PropertySave
{
public string Name;
[XmlElement("ValueAsString", typeof(stri... |
d0ea3a16eccce9bdfd92c97ca866d7972cfb756e | Added DelegateCollisionRElationshipBase to fix source | Added DelegateCollisionRElationshipBase to fix source
| vchelaru/FlatRedBall,vchelaru/FlatRedBall,vchelaru/FlatRedBall,vchelaru/FlatRedBall,vchelaru/FlatRedBall | FRBDK/Glue/OfficialPlugins/CollisionPlugin/Controllers/CollisionRelationshipViewModelController.cs | mit | 1,586,731,845 | using FlatRedBall.Glue.Elements;
using FlatRedBall.Glue.Plugins.ExportedImplementations;
using FlatRedBall.Glue.SaveClasses;
using FlatRedBall.Utilities;
using OfficialPlugins.CollisionPlugin.Managers;
using OfficialPlugins.CollisionPlugin.ViewModels;
using System;
using System.Collections.Generic;
using System.Compon... | using FlatRedBall.Glue.Elements;
using FlatRedBall.Glue.Plugins.ExportedImplementations;
using FlatRedBall.Glue.SaveClasses;
using FlatRedBall.Utilities;
using OfficialPlugins.CollisionPlugin.Managers;
using OfficialPlugins.CollisionPlugin.ViewModels;
using System;
using System.Collections.Generic;
using System.Compon... |
901c5290d76fb292a45e919c5f1ab803286294e4 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,LtRipley36706/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,586,731,779 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "f862d12a9cbc43386480eeeeff3bd5f5094a4631";
public static string Version = "1.2";
public static string Build = "3322";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "4a24710f4e84a4ebcd084c30f48a152a7d7af013";
public static string Version = "1.2";
public static string Build = "3321";
... |
30021a24a463dca41442b53fc2f028a4a608edc8 | Fixed broken unit test after a foolish global search and replace | Fixed broken unit test after a foolish global search and replace
| bijington/expressive,bijington/expressive | Source/CSharp/Expressive/Expressive.Tests/ExpressionTests.cs | mit | 1,586,731,347 | using Expressive.Exceptions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
namespace Expressive.Tests
{
[TestClass]
public class ExpressionTests
{
#region Operators
#region Plus Opera... | using Expressive.Exceptions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
namespace Expressive.Tests
{
[TestClass]
public class ExpressionTests
{
#region Operators
#region Plus Opera... |
4e408130fb4b0c587dc88fca2a4554180385c03a | Add unit test | Add unit test
| fredatgithub/UsefulFunctions | UnitTestUsefullFunctions/UnitTestFunctionsPrimes.cs | mit | 1,586,730,452 | using FonctionsUtiles.Fred.Csharp;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Numerics;
namespace UnitTestUsefullFunctions
{
[TestClass]
public class UnitTestFunctionsPrimes
{
[TestMethod]
public void TestMethod_BigInteger_substring()... | using FonctionsUtiles.Fred.Csharp;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Numerics;
namespace UnitTestUsefullFunctions
{
[TestClass]
public class UnitTestFunctionsPrimes
{
[TestMethod]
public void TestMethod_BigInteger_substring()... |
b12e0691bfd204c802633f4476c6ecb8fea3e826 | Support value types in Caching Compiling Evaluator | Support value types in Caching Compiling Evaluator
| mindbox-moscow/expressions | Mindbox.Expressions/Evaluators/Caching/CachingCompilingExpressionEvaluator.cs | mit | 1,586,729,171 | using System;
using System.Collections.Concurrent;
using System.Linq.Expressions;
using System.Resources;
namespace Mindbox.Expressions
{
public class CachingCompilingExpressionEvaluator : IExpressionEvaluator
{
private CachingCompilingExpressionEvaluator()
{
}
private readonly ConcurrentDictionary<stri... | using System;
using System.Collections.Concurrent;
using System.Linq.Expressions;
using System.Resources;
namespace Mindbox.Expressions
{
public class CachingCompilingExpressionEvaluator : IExpressionEvaluator
{
private CachingCompilingExpressionEvaluator()
{
}
private readonly ConcurrentDictionary<stri... |
006aa8c8fe4dced1194bd1c8c2395ab587ba33ca | Added a GenericAccess property. | Added a GenericAccess property.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtObjectManager/Cmdlets/Object/GetNtGrantedAccessCmdlet.cs | apache-2.0 | 1,586,728,676 | // 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... |
73652ec0502f0c502ba4afb4be385fe21e4aa27c | strict ToDouble argument passing | strict ToDouble argument passing
| iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept | src/Peachpie.Runtime/Conversions.cs | apache-2.0 | 1,586,728,139 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Pchp.Core.Reflection;
using Pchp.Core.Text;
namespace Pchp.Core
{
#region IPhpConvertible
/// <summary>
... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Pchp.Core.Reflection;
using Pchp.Core.Text;
namespace Pchp.Core
{
#region IPhpConvertible
/// <summary>
... |
19196c1a70fb283616d27d18bb4e9d2141fb2084 | gd2 arguments passing cleanup | gd2 arguments passing cleanup
| iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept | src/Peachpie.Library.Graphics/PhpGd2.cs | apache-2.0 | 1,586,728,111 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... |
1d20d22893457bd966be35adeedca9780e0280b5 | SampleRealTimeEmulation. Fix closing app. | SampleRealTimeEmulation. Fix closing app.
| StockSharp/StockSharp | Samples/Testing/SampleRealTimeEmulation/MainWindow.xaml.cs | apache-2.0 | 1,586,726,341 | #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... |
5a49fa33e9b8abf22ae2d9c70c1f25e6e7b3d976 | code format | code format
| peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie | src/Peachpie.Library.Graphics/PhpGd2.cs | apache-2.0 | 1,586,726,281 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... |
0a419bf598eb7248fe838775336a18a57be160d4 | imageaffine implementation | imageaffine implementation
| peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept | src/Peachpie.Library.Graphics/PhpGd2.cs | apache-2.0 | 1,586,726,190 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Drawing;
using SixLabors.ImageSharp.Drawing.P... |
a68c0ecf41e78ce8d0607e5e20d59cf1a919aa29 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,586,725,424 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "4a24710f4e84a4ebcd084c30f48a152a7d7af013";
public static string Version = "1.2";
public static string Build = "3321";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "05e497815e4c6e2fd2e8a0b416a852b137612470";
public static string Version = "1.2";
public static string Build = "3320";
... |
cbc26d36b053d002fabf476807c0d5402b4be99b | wearable armor styling | wearable armor styling
| fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/Scripts/Clothing/WearableArmor.cs | agpl-3.0 | 1,586,725,188 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
/// <summary>
/// allows clothing to add its armor values to the creature wearing it
/// </summary>
[RequireComponent(typeof(Integrity))]
public class WearableArmor : MonoBehaviour, IServerInventoryMove
{
... | using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// allows clothing to add its armor values to the creature wearing it
/// </summary>
[RequireComponent(typeof(Integrity))]
public class WearableArmor : MonoBehaviour, IServerInventoryMove
{
[SerializeField]
[... |
f8b79f545f247a46fe0190c4d3ba96e96ff3a1cb | prev commit fix. | prev commit fix.
| StockSharp/StockSharp | Samples/Testing/SampleHistoryTesting/MainWindow.xaml.cs | apache-2.0 | 1,586,725,104 | #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... |
913b40f6d1db0f16271388ff011a9c4fe7f842de | Fix save as texture | Fix save as texture
| SteamDatabase/ValveResourceFormat | GUI/Forms/Texture.cs | mit | 1,586,724,476 | using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Windows.Forms;
namespace GUI.Forms
{
public partial class Texture : UserControl
{
private string name;
public Texture()
{
InitializeComponent();
}
public void SetImage(Bitmap ... | using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Windows.Forms;
namespace GUI.Forms
{
public partial class Texture : UserControl
{
private string name;
public Texture()
{
InitializeComponent();
}
public void SetImage(Bitmap ... |
35528eb05b904b664fef0fd3c3fc956c2ae47d71 | Fix save as texture | Fix save as texture
| SteamDatabase/ValveResourceFormat | GUI/Forms/Texture.cs | mit | 1,586,724,461 | using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Windows.Forms;
namespace GUI.Forms
{
public partial class Texture : UserControl
{
private string name;
public Texture()
{
InitializeComponent();
}
public void SetImage(Bitmap ... | using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Windows.Forms;
namespace GUI.Forms
{
public partial class Texture : UserControl
{
private string name;
public Texture()
{
InitializeComponent();
}
public void SetImage(Bitmap ... |
e9a42e15a00fca3de3175d48e36e1aabc4db452d | Fix UnaryExpression.Convert to string format | Fix UnaryExpression.Convert to string format
| mindbox-moscow/expressions | Mindbox.Expressions/Evaluators/Caching/MindboxExpressionStringBuilder.cs | mit | 1,586,724,309 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Dynamic;
using System.Globalization;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
namespace Mindbox.Expressions
{
public sealed class MindboxExpressionStringBuil... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Dynamic;
using System.Globalization;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
namespace Mindbox.Expressions
{
public sealed class MindboxExpressionStringBuil... |
6b8a1924756150bf1e1409a5f44f72f10fdd1422 | UnaryExpression tests | UnaryExpression tests
| mindbox-moscow/expressions | Mindbox.Expressions.Tests/EvaluationScopeTests.cs | mit | 1,586,724,309 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq.Expressions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Mindbox.Expressions.Tests
{
[TestClass]
public class EvaluationScopeTests
{
class Holder
{
public byte Property => 2;
public static short... | using System;
using System.Linq.Expressions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Mindbox.Expressions.Tests
{
[TestClass]
public class EvaluationScopeTests
{
class Holder
{
public byte Property => 2;
public static short StaticProperty => 4;
public int Field = 8;
public s... |
5d25a202ff0e0d0bb55c7a3c9bf7b4638b667689 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,586,722,798 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "05e497815e4c6e2fd2e8a0b416a852b137612470";
public static string Version = "1.2";
public static string Build = "3320";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "69c8d96024156b4fb8368f5397b40fcb89e130f2";
public static string Version = "1.2";
public static string Build = "3315";
... |
05e497815e4c6e2fd2e8a0b416a852b137612470 | fixing bug with marketplace recall (#2924) | fixing bug with marketplace recall (#2924)
| LtRipley36706/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,ACEmulator/ACE | Source/ACE.Server/WorldObjects/Player_Location.cs | agpl-3.0 | 1,586,722,658 | using System;
using System.Collections.Generic;
using System.Numerics;
using System.Linq;
using ACE.Common;
using ACE.Database;
using ACE.DatLoader;
using ACE.DatLoader.FileTypes;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Serv... | using System;
using System.Collections.Generic;
using System.Numerics;
using System.Linq;
using ACE.Common;
using ACE.Database;
using ACE.DatLoader;
using ACE.DatLoader.FileTypes;
using ACE.Entity;
using ACE.Entity.Enum;
using ACE.Entity.Enum.Properties;
using ACE.Entity.Models;
using ACE.Server.Entity;
using ACE.Serv... |
d0e422079b2c251409e814023547066971f41a64 | adding support for abdomen armor to Monster_Inventory (#2922) | adding support for abdomen armor to Monster_Inventory (#2922)
| ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE | Source/ACE.Server/WorldObjects/Monster_Inventory.cs | agpl-3.0 | 1,586,722,637 | using System;
using System.Collections.Generic;
using System.Linq;
using ACE.Common;
using ACE.Common.Extensions;
using ACE.Database;
using ACE.Database.Models.World;
using ACE.Entity.Enum;
namespace ACE.Server.WorldObjects
{
partial class Creature
{
/// <summary>
/// Determines the monster in... | using System;
using System.Collections.Generic;
using System.Linq;
using ACE.Common;
using ACE.Common.Extensions;
using ACE.Database;
using ACE.Database.Models.World;
using ACE.Entity.Enum;
namespace ACE.Server.WorldObjects
{
partial class Creature
{
/// <summary>
/// Determines the monster in... |
10534f895ce345b1aa6a0d2fbe7715610aea3d15 | improving monster sticky melee -- moving sticky update before position / distance check (#2921) | improving monster sticky melee -- moving sticky update before position / distance check (#2921)
| LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE | Source/ACE.Server/WorldObjects/Monster_Tick.cs | agpl-3.0 | 1,586,722,624 | using System;
using System.Diagnostics;
using ACE.Entity.Enum;
namespace ACE.Server.WorldObjects
{
partial class Creature
{
protected const double monsterTickInterval = 0.2;
public double NextMonsterTickTime;
private bool firstUpdate = true;
/// <summary>
/// Primary... | using System;
using System.Diagnostics;
using ACE.Entity.Enum;
namespace ACE.Server.WorldObjects
{
partial class Creature
{
protected const double monsterTickInterval = 0.2;
public double NextMonsterTickTime;
private bool firstUpdate = true;
/// <summary>
/// Primary... |
69c3fafcd97e287012f5253fbd597f41dfa93aad | fixed using wrong XmlUtils methods | fixed using wrong XmlUtils methods
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/DatabaseUpdater.xaml.cs | apache-2.0 | 1,586,722,458 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Net;
using System.IO;
using Microsoft.Win32;
using System.Xml;
namespace RelhaxM... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Net;
using System.IO;
using Microsoft.Win32;
using System.Xml;
namespace RelhaxM... |
e7dbb7963ca3688cac3e9165fad32d9dd0ae1180 | added some utility methods | added some utility methods
| Willster419/RelhaxModpack,Willster419/RelicModManager | RelhaxModpack/RelhaxModpack/Windows/DatabaseEditor.xaml.cs | apache-2.0 | 1,586,722,286 | using Microsoft.Win32;
using RelhaxModpack.DatabaseComponents;
using RelhaxModpack.UIComponents;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Sys... | using Microsoft.Win32;
using RelhaxModpack.DatabaseComponents;
using RelhaxModpack.UIComponents;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Sys... |
d6a65dc1bd1707b2a20e08e0b8a4a30873005e67 | finish Magboot update | finish Magboot update
| krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/ItemMagBoots.cs | agpl-3.0 | 1,586,722,273 | using System;
using System.Collections;
using System.Collections.Generic;
using Atmospherics;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using System.Linq;
using UnityEngine.UI;
public class ItemMagBoots : NetworkBehaviour,
IServerActionGUI, IClientInventoryMove,IServerInventoryMove
{
[SyncVar(hook =... | using System;
using System.Collections;
using System.Collections.Generic;
using Atmospherics;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using System.Linq;
using UnityEngine.UI;
public class ItemMagBoots : NetworkBehaviour,
IServerActionGUI, IClientInventoryMove,IServerInventoryMove
{
[SyncVar(hook =... |
0784c515beea23acf261a737f6e2bc3dbb6354fe | rewrite Magboots part 2 | rewrite Magboots part 2
| fomalsd/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation | UnityProject/Assets/ItemMagBoots.cs | agpl-3.0 | 1,586,721,704 | using System;
using System.Collections;
using System.Collections.Generic;
using Atmospherics;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using System.Linq;
using UnityEngine.UI;
public class ItemMagBoots : NetworkBehaviour,
IServerActionGUI, IClientInventoryMove,IServerInventoryMove
{
[SyncVar(hook ... | using System;
using System.Collections;
using System.Collections.Generic;
using Atmospherics;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using System.Linq;
using UnityEngine.UI;
public class ItemMagBoots : NetworkBehaviour,
IServerActionGUI, IClientInventoryMove,IServerInventoryMove
{
[SyncVar(hook ... |
9a06d290b14a29e7c650cc8e2e699e1a0a1ff702 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,586,721,269 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "69c8d96024156b4fb8368f5397b40fcb89e130f2";
public static string Version = "1.2";
public static string Build = "3315";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "a566e0353a7cd03f203bc78ce950aca4d046b2b5";
public static string Version = "1.2";
public static string Build = "3314";
... |
a6b1d9ffb9580a576eb58d7de42dc40b361a000c | Update Offset and Zoom property on touch input | Update Offset and Zoom property on touch input
| wieslawsoltes/MatrixPanAndZoomDemo,PanAndZoom/PanAndZoom,wieslawsoltes/PanAndZoom,wieslawsoltes/PanAndZoom,wieslawsoltes/PanAndZoom,PanAndZoom/PanAndZoom,wieslawsoltes/MatrixPanAndZoomDemo,PanAndZoom/PanAndZoom | src/Wpf.Controls.PanAndZoom/ZoomBorder.cs | mit | 1,586,720,911 | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using PanAndZo... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using PanAndZo... |
9dc53e99732cb3f016c499760dd75bdff374b0b5 | added generation of UID to editor for add/copy buttons | added generation of UID to editor for add/copy buttons
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/DatabaseEditor.xaml.cs | apache-2.0 | 1,586,720,895 | using Microsoft.Win32;
using RelhaxModpack.DatabaseComponents;
using RelhaxModpack.UIComponents;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Sys... | using Microsoft.Win32;
using RelhaxModpack.DatabaseComponents;
using RelhaxModpack.UIComponents;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Sys... |
3760b03e70bcf761780fe1357db17cbfe2720970 | logging and spacing | logging and spacing
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/DatabaseEditor.xaml.cs | apache-2.0 | 1,586,720,749 | using Microsoft.Win32;
using RelhaxModpack.DatabaseComponents;
using RelhaxModpack.UIComponents;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Sys... | using Microsoft.Win32;
using RelhaxModpack.DatabaseComponents;
using RelhaxModpack.UIComponents;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Sys... |
2a0835fe9f9d287dc1a258bb2a02c04250d9b483 | un-comment/added UID usage | un-comment/added UID usage
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/DatabaseComponents/DatabasePackage.cs | apache-2.0 | 1,586,720,681 | 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... |
827e6c7163ab93840d42b048a454c26d270fa9df | add done for end of progress | add done for end of progress
| Willster419/RelicModManager,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Windows/DatabaseUpdater.xaml.cs | apache-2.0 | 1,586,720,616 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Net;
using System.IO;
using Microsoft.Win32;
using System.Xml;
namespace RelhaxM... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Net;
using System.IO;
using Microsoft.Win32;
using System.Xml;
namespace RelhaxM... |
ec64354dd014b057dc01ffc58aab38f329519410 | Changed MapType to MapGeneric. | Changed MapType to MapGeneric.
| googleprojectzero/sandbox-attacksurface-analysis-tools,googleprojectzero/sandbox-attacksurface-analysis-tools | NtObjectManager/Cmdlets/Object/NewNtSecurityDescriptorCmdlet.cs | apache-2.0 | 1,586,720,510 | // 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... |
acfd4e89445a329ae365f62e77c007021675fe0c | Ignore native binaries for symbol validation | Ignore native binaries for symbol validation
Fixes #936
| campersau/NuGetPackageExplorer,campersau/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer | PackageViewModel/SymbolValidation/SymbolValidator.cs | mit | 1,586,720,352 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using AuthenticodeExaminer;
using NuGet.Packag... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using AuthenticodeExaminer;
using NuGet.Packa... |
f17ad669a8b401c9ce7dfb68b92ae93a60d8c440 | Added 8ball | Added 8ball
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/FunModule.cs | agpl-3.0 | 1,586,720,003 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
namespace SoraBot.Bot.Modules
{
[Name("Fun")]
[Summary("A bunch of fun and useless commands.")]
public class FunModule : SoraSocketCommandModule
{
[Command("ruined"), Ali... | using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
namespace SoraBot.Bot.Modules
{
[Name("Fun")]
[Summary("A bunch of fun and useless commands.")]
public class FunModule : SoraSocketCommandModule
{
[Command("ruined")]
[Alias("d... |
49f27b093caf3e4f1a1c645547b078c2de5c9193 | Added $wagggg | Added $wagggg
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/FunModule.cs | agpl-3.0 | 1,586,718,655 | using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
namespace SoraBot.Bot.Modules
{
[Name("Fun")]
[Summary("A bunch of fun and useless commands.")]
public class FunModule : SoraSocketCommandModule
{
[Command("ruined")]
[Alias("d... | using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using SoraBot.Common.Extensions.Modules;
namespace SoraBot.Bot.Modules
{
[Name("Fun")]
[Summary("A bunch of fun and useless commands.")]
public class FunModule : SoraSocketCommandModule
{
[Command("ruined")]
[Alias("d... |
b1b1a376c8cff4bf1cc519e04e502a2baaf0d682 | Fix a crash on Imgd for palettes different than 16 or 256 | Fix a crash on Imgd for palettes different than 16 or 256
| Xeeynamo/KingdomHearts | OpenKh.Kh2/Imgd.cs | mit | 1,586,718,199 | using OpenKh.Common;
using OpenKh.Imaging;
using System;
using System.Drawing;
using System.IO;
using System.Linq;
namespace OpenKh.Kh2
{
public partial class Imgd : IImageRead
{
private const uint MagicCode = 0x44474D49U;
private const short Format32bpp = 0x00;
private const short Format8bpp =... | using OpenKh.Common;
using OpenKh.Imaging;
using System;
using System.Drawing;
using System.IO;
using System.Linq;
namespace OpenKh.Kh2
{
public partial class Imgd : IImageRead
{
private const uint MagicCode = 0x44474D49U;
private const short Format32bpp = 0x00;
private const short Format8bpp =... |
04b00ef2a205dc7649cea9dc46c8687ecc03facd | fixed small warning | fixed small warning
| Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2 | SoraBot/SoraBot.Bot/Modules/CoinModule.cs | agpl-3.0 | 1,586,717,589 | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Humanizer;
using Humanizer.Localisation;
using SoraBot.Common.Extensions.Modules;
using SoraBot.Common.Utils;
using SoraBot.Data.Models.SoraDb;
using SoraBot.Data.Repositories.Interfaces;
namespace SoraBot.Bot.Modules
{
[Name... | using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Humanizer;
using Humanizer.Localisation;
using SoraBot.Common.Extensions.Modules;
using SoraBot.Common.Utils;
using SoraBot.Data.Models.SoraDb;
using SoraBot.Data.Repositories.Interfaces;
namespace SoraBot.Bot.Modules
{
[Name... |
60d0cc6b0085e05197fb8511a3fa07f2ab9648e1 | Update: use interlock to prevent timer conflict. | Update: use interlock to prevent timer conflict.
| bitdust/EarthLiveSharp | EarthLiveSharp/mainForm.cs | mit | 1,586,715,629 | using System;
using System.Drawing;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;
namespace EarthLiveSharp
{
public partial class mainForm : Form
{
bool serviceRunning = false;
MenuItem startService = new MenuItem("Start Service");
MenuItem s... | using System;
using System.Drawing;
using System.Windows.Forms;
using System.Diagnostics;
namespace EarthLiveSharp
{
public partial class mainForm : Form
{
bool serviceRunning = false;
MenuItem startService = new MenuItem("Start Service");
MenuItem stopService = new MenuItem... |
02fcf0b648a52c894aa86b7560368c405e5b970f | fixing warnings | fixing warnings
| larsbrubaker/MatterControl,jlewin/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl | MatterControlLib/PrinterCommunication/Io/WaitForTempStream.cs | bsd-2-clause | 1,586,715,198 | /*
Copyright (c) 2014, Lars Brubaker
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the followi... | /*
Copyright (c) 2014, Lars Brubaker
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the followi... |
047fc7d71a3e0e8c78d3fecbc2051ef683d72fe3 | stupid indentation | stupid indentation
| fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Player/PlayerMove.cs | agpl-3.0 | 1,586,714,893 | using System;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using UnityEngine.Serialization;
/// <summary>
/// Player move queues the directional move keys
/// to be processed along with the server.
/// It also changes the sprite direction and
/// handles... | using System;
using System.Collections.Generic;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using UnityEngine.Serialization;
/// <summary>
/// Player move queues the directional move keys
/// to be processed along with the server.
/// It also changes the sprite direction and
/// handles... |
7d7f97a92e3a2c63cf008dcd692afe6544b19da7 | SoundManager clean up | SoundManager clean up
| fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,krille90/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Managers/SoundManager.cs | agpl-3.0 | 1,586,714,860 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEngine;
using Mirror;
using Random = UnityEngine.Random;
using UnityEngine.Audio;
using UnityEngine.SceneManagement;
public class SoundManager : MonoBehaviour
{
public AudioMixerGroup DefaultMixer;
p... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEngine;
using Mirror;
using Random = UnityEngine.Random;
using UnityEngine.Audio;
using UnityEngine.SceneManagement;
public class SoundManager : MonoBehaviour
{
public AudioMixerGroup DefaultMixer;
p... |
db5b8c2f8ab1207ee8f86161edce6c2dd09aa74c | fix respawns and clones not updating steptype | fix respawns and clones not updating steptype
| fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation | UnityProject/Assets/Scripts/Lifecycle/PlayerSpawn.cs | agpl-3.0 | 1,586,714,840 | using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using UnityEngine;
using Mirror;
/// <summary>
/// Main API for dealing with spawning players and related things.
/// For spawning of non-player things, see Spawn.
/// </summary>
public static class PlayerSpawn
{
/// <summary>
... | using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using UnityEngine;
using Mirror;
/// <summary>
/// Main API for dealing with spawning players and related things.
/// For spawning of non-player things, see Spawn.
/// </summary>
public static class PlayerSpawn
{
/// <summary>
... |
f4e6f2e7b17ddd40313b49b19e1a234a0ad79710 | clean up magboots | clean up magboots
| krille90/unitystation,krille90/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation | UnityProject/Assets/ItemMagBoots.cs | agpl-3.0 | 1,586,714,797 | using System;
using System.Collections;
using System.Collections.Generic;
using Atmospherics;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using System.Linq;
using UnityEngine.UI;
public class ItemMagBoots : NetworkBehaviour,
IServerActionGUI, IClientInventoryMove,IServerInventoryMove
{
[SyncVar(hook ... | using System;
using System.Collections;
using System.Collections.Generic;
using Atmospherics;
using UnityEngine;
using Mirror;
using UnityEngine.Events;
using System.Linq;
using UnityEngine.UI;
public class ItemMagBoots : NetworkBehaviour,
IServerActionGUI, IClientInventoryMove,IServerInventoryMove
{
[SyncVar(hook ... |
6fa03ccf84d1318bc06d4a8171fd6a5ab6fd339e | FILTER_FLAG_STRIP_BACKTICK, FILTER_SANITIZE_ENCODED | FILTER_FLAG_STRIP_BACKTICK, FILTER_SANITIZE_ENCODED
| peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept | src/Peachpie.Library/Filter.cs | apache-2.0 | 1,586,713,893 | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... |
3efb4aba25803c36a2f50401808a389f3b082f29 | Use BindTarget | Use BindTarget
| NeoAdonis/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,smoogipooo/osu,smoogipoo/osu,EVAST9919/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,EVAST9919/osu,ppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,UselessTouc... | osu.Game/Overlays/BeatmapSet/Header.cs | mit | 1,586,713,695 | // 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.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using os... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using os... |
b475316a4e0a34161450ab8eed126d4087866cab | Simplify and comment | Simplify and comment
| smoogipoo/osu,NeoAdonis/osu,peppy/osu-new,NeoAdonis/osu,UselessToucan/osu,ppy/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu | osu.Game/Screens/Select/BeatmapCarousel.cs | mit | 1,586,713,208 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osuTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Game.Con... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osuTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Game.Con... |
04470be74e9e7ef271225d2c6b60fd4571a402d8 | FILTER_VALIDATE_DOMAIN | FILTER_VALIDATE_DOMAIN
| iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie | src/Peachpie.Library/Filter.cs | apache-2.0 | 1,586,713,155 | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... |
d09834b40408a5a422e8fb908a35434f21f604d2 | FILTER_VALIDATE_MAC | FILTER_VALIDATE_MAC
| peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie | src/Peachpie.Library/Filter.cs | apache-2.0 | 1,586,713,026 | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... |
7aa11036e24761954e6c5c3ffcd7292049970102 | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information | [ci skip] Updating ServerBuildInfo_Dynamic with latest build and version information
| ACEmulator/ACE,ACEmulator/ACE,LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE | Source/ACE.Server/ServerBuildInfo_Dynamic.cs | agpl-3.0 | 1,586,712,785 |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "a566e0353a7cd03f203bc78ce950aca4d046b2b5";
public static string Version = "1.2";
public static string Build = "3314";
... |
namespace ACE.Server
{
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "17b6dd8621e5d65660a8135ffae3ad54cdbb7068";
public static string Version = "1.2";
public static string Build = "3313";
... |
f53e8e60c511eb0d791aa1162639d847410225ba | Stopped WorkItemGroup logging enhanchement (#6483) | Stopped WorkItemGroup logging enhanchement (#6483)
| jason-bragg/orleans,waynemunro/orleans,veikkoeeva/orleans,amccool/orleans,yevhen/orleans,jthelin/orleans,galvesribeiro/orleans,amccool/orleans,ibondy/orleans,ibondy/orleans,ReubenBond/orleans,waynemunro/orleans,dotnet/orleans,hoopsomuah/orleans,yevhen/orleans,benjaminpetit/orleans,yevhen/orleans,ElanHasson/orleans,hoop... | src/Orleans.Runtime/Scheduler/WorkItemGroup.cs | mit | 1,586,712,000 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Orleans.Configuration;
using Or... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Orleans.Configuration;
using Orleans.Internal;
namespac... |
6697855206301d291049cd012a67d747abf8cd75 | FILTER_SANITIZE_FULL_SPECIAL_CHARS | FILTER_SANITIZE_FULL_SPECIAL_CHARS
| peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept | src/Peachpie.Library/Filter.cs | apache-2.0 | 1,586,711,547 | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... |
94382f24a7f9772ba2c7acede3fb97a57201166f | FILTER_SANITIZE_ADD_SLASHES | FILTER_SANITIZE_ADD_SLASHES
| iolevel/peachpie,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie | src/Peachpie.Library/Filter.cs | apache-2.0 | 1,586,711,195 | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... |
1cf240b5fff1c269f9e668970a4046d963521b41 | Test new predicate behaviour | Test new predicate behaviour
| smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,EVAST9919/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu-new,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,EVAST9919/osu,peppy/osu,ppy/osu,ppy/osu,EVAST9919/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,smoogipo... | osu.Game.Tests/Visual/Navigation/TestScenePresentBeatmap.cs | mit | 1,586,711,065 | // 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.Screens;
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
u... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Screens;
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
u... |
c8fb9d2fda3a39a3646ade9de6c93994190ffed0 | simplified filter_var for emails | simplified filter_var for emails
| peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie | src/Peachpie.Library/Filter.cs | apache-2.0 | 1,586,710,775 | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... | #nullable enable
using System;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
using Pchp.Core;
namespace Pchp.Library
{
[PhpExtension("filter")]
public static class Filter
{
#region Constants
[PhpHidden]
public enum ... |
2b542efd2d01a6ef16bec650e3f7a8292d1dd29b | Fix construction of container uri so that account is not lost from the path | Fix construction of container uri so that account is not lost from the path
| MassTransit/MassTransit,phatboyg/MassTransit,phatboyg/MassTransit,MassTransit/MassTransit,MassTransit/MassTransit,phatboyg/MassTransit | src/Persistence/MassTransit.Azure.Storage/MessageData/AzureStorageMessageDataRepository.cs | apache-2.0 | 1,586,710,385 | namespace MassTransit.Azure.Storage.MessageData
{
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Context;
using MassTransit.MessageData;
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Auth;
using Microsoft.Azure.Storage.Blob;
... | namespace MassTransit.Azure.Storage.MessageData
{
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Context;
using MassTransit.MessageData;
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Auth;
using Microsoft.Azure.Storage.Blob;
... |
ed28e8c8f5f6d92f7f06034800fd9df82f688ef7 | Rename param | Rename param
| EVAST9919/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,ppy/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,EVAST9919/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,EVAST9919/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,peppy/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdon... | osu.Game/OsuGame.cs | mit | 1,586,709,489 | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using osu.Framework.Configuration;
using osu.Framework.Screens;
using osu.Game.Configuration;
us... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using osu.Framework.Configuration;
using osu.Framework.Screens;
using osu.Game.Configuration;
us... |
a0350276805a31f6c6a10144e2e4a89d96a70d9b | Refactoring | Refactoring
| secana/PeNet | src/PeNet/PeFile.cs | apache-2.0 | 1,586,708,110 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using PeNet.FileParser;
using PeNet.Header.Authenticode;
using PeNet.Header.ImpHash;
using PeNet.Header.Net;
using PeNet.Header... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using PeNet.FileParser;
using PeNet.Header.Authenticode;
using PeNet.Header.ImpHash;
using PeNet.Header.Net;
using PeNet.Header... |
6e646df6f7f058b3ac3053b3ec0135027aac3871 | FIX node constraint evaluation logics | FIX node constraint evaluation logics
| mdesalvo/RDFSharp | RDFSharp/Model/Validation/Abstractions/Constraints/RDFNodeConstraint.cs | apache-2.0 | 1,586,707,657 | /*
Copyright 2012-2020 Marco De Salvo
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to... | /*
Copyright 2012-2020 Marco De Salvo
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to... |
59e29daf94036df1930f2e60a1888f457de78821 | More stable "Remove Section" | More stable "Remove Section"
| secana/PeNet | src/PeNet/PeFile.cs | apache-2.0 | 1,586,706,948 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using PeNet.FileParser;
using PeNet.Header.Authenticode;
using PeNet.Header.ImpHash;
using PeNet.Header.Net;
using PeNet.Header... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using PeNet.FileParser;
using PeNet.Header.Authenticode;
using PeNet.Header.ImpHash;
using PeNet.Header.Net;
using PeNet.Header... |
fd719787a57e8998095b186ae76c1d79931abe43 | imageaffine implementation | imageaffine implementation
| iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie-concept,iolevel/peachpie,peachpiecompiler/peachpie,iolevel/peachpie,iolevel/peachpie-concept,iolevel/peachpie-concept,peachpiecompiler/peachpie,iolevel/peachpie-concept | src/Peachpie.Library.Graphics/PhpGd2.cs | apache-2.0 | 1,586,705,917 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.B... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Numerics;
using Pchp.Core;
using Pchp.Library.Streams;
using SixLabors.Fonts;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.B... |
dab5aa1832919b1a48b02bb0ed2d3f23a19e01da | Add skip reason | Add skip reason
Add a reason for the test being skipped.
| martincostello/sqllocaldb,martincostello/sqllocaldb | samples/TodoApp.Tests/TodoRepositoryTests.cs | apache-2.0 | 1,586,703,642 | // Copyright (c) Martin Costello, 2012-2018. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using MartinCostello.Sq... | // Copyright (c) Martin Costello, 2012-2018. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using MartinCostello.Sq... |
bc5d7e1effc5e71c92d4f8d4289245537cef907a | Avoid exceptions on very long flight plans. | Avoid exceptions on very long flight plans.
| pleroy/Principia,pleroy/Principia,pleroy/Principia,pleroy/Principia,pleroy/Principia,mockingbirdnest/Principia,mockingbirdnest/Principia,mockingbirdnest/Principia,mockingbirdnest/Principia,mockingbirdnest/Principia | ksp_plugin_adapter/flight_planner.cs | mit | 1,586,703,058 | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
namespace principia {
namespace ksp_plugin_adapter {
class FlightPlanner : SupervisedWindowRenderer {
public FlightPlanner(PrincipiaPluginAdapter adapter) : base(adapter) {
adapt... | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
namespace principia {
namespace ksp_plugin_adapter {
class FlightPlanner : SupervisedWindowRenderer {
public FlightPlanner(PrincipiaPluginAdapter adapter) : base(adapter) {
adapt... |
cdbdad63c21fbb7152d82d887e41427fd7475758 | always append prefix and suffix when building relative urls | always append prefix and suffix when building relative urls
| volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity | Serenity.Web/Mvc/CssBundleManager.cs | mit | 1,586,702,220 | using Serenity.ComponentModel;
using Serenity.Configuration;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Hosting;
namespace Serenity.Web
{
public class CssBundleManager
{
[Set... | using Serenity.ComponentModel;
using Serenity.Configuration;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Hosting;
namespace Serenity.Web
{
public class CssBundleManager
{
[Set... |
81489557a82bf10b6760548ac326c17e3b19afc4 | fix css bundle ignoring usemincss if the included file already has .min.css extension | fix css bundle ignoring usemincss if the included file already has .min.css extension
| volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity | Serenity.Web/Mvc/CssBundleManager.cs | mit | 1,586,700,554 | using Serenity.ComponentModel;
using Serenity.Configuration;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Hosting;
namespace Serenity.Web
{
public class CssBundleManager
{
[Set... | using Serenity.ComponentModel;
using Serenity.Configuration;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Hosting;
namespace Serenity.Web
{
public class CssBundleManager
... |
a93ce766b360f79f21f54eee6d7b03fff9990520 | Refactor : use ReadShort() from Utils class | Refactor : use ReadShort() from Utils class
| tigrouind/LifeDISA,tigrouind/LifeDISA | LifeDISA/LifeDISA/Program.cs | mit | 1,586,699,143 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Shared;
namespace LifeDISA
{
class Program
{
static int pos;
static byte[] allBytes;
static bool isCDROMVersion;
static readonly Dictionary<int, strin... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Shared;
namespace LifeDISA
{
class Program
{
static int pos;
static byte[] allBytes;
static short ReadShort (byte a, byte b)
{
unchecked
{
re... |
c51e8856af454d9289758d472da14ca89a534926 | Added "ActiveCount" to pooled list | Added "ActiveCount" to pooled list
| spriest487/spacetrader-utils | PooledList.cs | mit | 1,586,698,667 | #pragma warning disable 0649
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
using Object = UnityEngine.Object;
namespace SpaceTrader.Util {
[Serializable]
public abstract class PooledList<TData, TComponent, TSender> :
... | #pragma warning disable 0649
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
using Object = UnityEngine.Object;
namespace SpaceTrader.Util {
[Serializable]
public abstract class PooledList<TData, TComponent, TSender> :
... |
31a7d68b3e8a950c25ee7e383d1fcae86d29c251 | Registers an EmptyConsumer by default for the IConsumer<>. Other components such as RabbitMQ will have the responsibility to override this. | Registers an EmptyConsumer by default for the IConsumer<>. Other components such as RabbitMQ will have the responsibility to override this.
| Elders/Cronus,Elders/Cronus | src/Elders.Cronus/Discoveries/InMemoryPublisherDiscovery.cs | apache-2.0 | 1,586,697,997 | using System.Collections.Generic;
using Elders.Cronus.AtomicAction;
using Elders.Cronus.AtomicAction.InMemory;
using Elders.Cronus.InMemory;
using Microsoft.Extensions.DependencyInjection;
namespace Elders.Cronus.Discoveries
{
public class InMemoryDiscovery : DiscoveryBase<IPublisher<IMessage>>
{
prot... | using System.Collections.Generic;
using Elders.Cronus.AtomicAction;
using Elders.Cronus.AtomicAction.InMemory;
using Elders.Cronus.InMemory;
using Microsoft.Extensions.DependencyInjection;
namespace Elders.Cronus.Discoveries
{
public class InMemoryDiscovery : DiscoveryBase<IPublisher<IMessage>>
{
prot... |
736f23a8ac244959e6dd1b2b755c5f0e4368c202 | Adds EmptyConsumer type which does nothing | Adds EmptyConsumer type which does nothing
| Elders/Cronus,Elders/Cronus | src/Elders.Cronus/IConsumer.cs | apache-2.0 | 1,586,697,997 | using Microsoft.Extensions.Logging;
namespace Elders.Cronus
{
public interface IConsumer<T>
{
void Start();
void Stop();
}
public class EmptyConsumer<T> : IConsumer<T>
{
// Adds tracing once we have the logger in the IOC
//private readonly ILogger<EmptyConsumer<T>>... | namespace Elders.Cronus
{
public interface IConsumer<T>
{
void Start();
void Stop();
}
interface IInMemoryConsumer<T> : IConsumer<T>
{
}
}
|
c382d3e36438aed40b34ba407ff3d3e1370805ec | Makes sure that the internal support registrations are added to the services. | Makes sure that the internal support registrations are added to the services.
| Elders/Cronus,Elders/Cronus | src/Elders.Cronus/Hosting/CronusServiceCollectionExtensions.cs | apache-2.0 | 1,586,697,997 | using System;
using System.Collections.Concurrent;
using System.Linq;
using Elders.Cronus.Discoveries;
using Elders.Cronus.EventStore.Index;
using Elders.Cronus.MessageProcessing;
using Elders.Cronus.Multitenancy;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft... | using System;
using System.Collections.Concurrent;
using System.Linq;
using Elders.Cronus.Discoveries;
using Elders.Cronus.EventStore.Index;
using Elders.Cronus.MessageProcessing;
using Elders.Cronus.Multitenancy;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft... |
6159d1a9181eb58887347340e8c89714187826ab | Improved thread tick generator in playback tests | Improved thread tick generator in playback tests
| melanchall/drywetmidi,melanchall/drywetmidi,melanchall/drymidi,melanchall/drywetmidi | DryWetMidi.Tests/Devices/Playback/PlaybackTests.TickGenerator.cs | mit | 1,586,697,435 | using System;
using System.Linq;
using System.Threading;
using Melanchall.DryWetMidi.Common;
using Melanchall.DryWetMidi.Devices;
using Melanchall.DryWetMidi.Core;
using NUnit.Framework;
using System.Diagnostics;
namespace Melanchall.DryWetMidi.Tests.Devices
{
[TestFixture]
public sealed partial class Playbac... | using System;
using System.Linq;
using System.Threading;
using Melanchall.DryWetMidi.Common;
using Melanchall.DryWetMidi.Devices;
using Melanchall.DryWetMidi.Core;
using NUnit.Framework;
using System.Diagnostics;
namespace Melanchall.DryWetMidi.Tests.Devices
{
[TestFixture]
public sealed partial class Playbac... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.