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
8d70e756b6f0dc53022a3507baaad16aaaa866f9
#116 - No fucking idea why all of this boilerplate oop shit is needed just to say that the authentication succeeded
#116 - No fucking idea why all of this boilerplate oop shit is needed just to say that the authentication succeeded
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Extensions/Authentication/ApiKeyAuthenticationHandler.cs
agpl-3.0
1,590,435,075
using System.Collections.Generic; using System.Security.Claims; using System.Text.Encodings.Web; using System.Text.Json; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensio...
using System.Security.Claims; using System.Text.Encodings.Web; using System.Text.Json; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using SoraBot.Data.Con...
5215a769feb593d4675d832e112618a581912cf8
Added unit test that fails before PR and succeeds after PR
Added unit test that fails before PR and succeeds after PR
madsoulswe/Umbraco-CMS,dawoe/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,dawoe/Umbraco-CMS,mattbrailsford/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,bjarnef/Umbraco-CMS,leekelleher/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,abryukhov/Umbraco-CMS,marcemarc/Umbraco-CMS,hfloyd/Umbraco-CMS,tcmorris/Umbraco-CMS,abjerner/U...
src/Umbraco.Tests/Composing/ContainerConformingTests.cs
mit
1,590,435,056
using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using Umbraco.Core; using Umbraco.Core.Composing; namespace Umbraco.Tests.Composing { [TestFixture] public class ContainerConformingTests { // tests that a container conforms private IRegister GetReg...
using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using Umbraco.Core; using Umbraco.Core.Composing; namespace Umbraco.Tests.Composing { [TestFixture] public class ContainerConformingTests { // tests that a container conforms private IRegister GetReg...
ea28e0aea1a0ac4d3e24d6f19b415997caab79b1
#116 - Getting rid of more stupidity
#116 - Getting rid of more stupidity
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Extensions/ServiceCollectionExtensions.cs
agpl-3.0
1,590,434,513
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using SoraBot.Data.Configurations; namespace SoraBot.WebApi.Extensions { public static class ServiceCollectionExtensions { public static IServiceCollection AddConfigurations(this IServiceCollection services, ...
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using SoraBot.Data.Configurations; namespace SoraBot.WebApi.Extensions { public static class ServiceCollectionExtensions { public static IServiceCollection AddConfigurations(this IServiceCollection services, ...
9e615ad05030c2494de152b8d67144fec0226351
#116 - Got rid of stupidity
#116 - Got rid of stupidity
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Startup.cs
agpl-3.0
1,590,434,319
using System; using System.Collections.Generic; using System.IO; using System.Reflection; using AutoMapper; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Mi...
using System; using System.Collections.Generic; using System.IO; using System.Reflection; using AutoMapper; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Mi...
1d6cf14d29acc2449e5da75547cd6229118230b1
#116 - Added missing authentication middleware
#116 - Added missing authentication middleware
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Startup.cs
agpl-3.0
1,590,434,121
using System; using System.Collections.Generic; using System.IO; using System.Reflection; using AutoMapper; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Mi...
using System; using System.Collections.Generic; using System.IO; using System.Reflection; using AutoMapper; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsof...
c5dde36144c13a0b2445d2c931254ba18642f784
Missing RunContinuationsAsynchronously
Missing RunContinuationsAsynchronously
micdenny/EasyNetQ,EasyNetQ/EasyNetQ
Source/EasyNetQ/Internals/AsyncQueue.cs
mit
1,590,433,859
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace EasyNetQ.Internals { /// <summary> /// This is an internal API that supports the EasyNetQ infrastructure and not subject to /// the same compatibility as public APIs. It may be changed or...
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace EasyNetQ.Internals { /// <summary> /// This is an internal API that supports the EasyNetQ infrastructure and not subject to /// the same compatibility as public APIs. It may be changed or...
cb6b3d9f1ccad7f5e97e16c131c42239b7174463
#116 - Got rid of useless variable and imports
#116 - Got rid of useless variable and imports
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Controllers/RequestsController.cs
agpl-3.0
1,590,433,776
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Dtos; using SoraBot.Data.Models.SoraDb; using SoraBot.Data.Repositories.In...
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Configurations; using SoraBot.Data.Dto...
26928bf48c3b087208d33ad35b83acf2fd82e892
#116 - Got rid of useless import
#116 - Got rid of useless import
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Controllers/WaifusController.cs
agpl-3.0
1,590,433,733
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AutoMapper; using Microsoft.AspNetCore.Mvc; using SoraBot.Data.Models.SoraDb; using SoraBot.Services.Users; using SoraBot.Services.Waifu; using SoraBot.WebApi.Dtos; namespace SoraBot.WebApi.Controllers { [Route(...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AutoMapper; using Microsoft.AspNetCore.Mvc; using Microsoft.OpenApi.Extensions; using SoraBot.Data.Models.SoraDb; using SoraBot.Services.Users; using SoraBot.Services.Waifu; using SoraBot.WebApi.Dtos; namespace Sora...
349c16d04fb8cbd37c0d137379e3c0a757cb4d94
Update Program.cs
Update Program.cs Eigenen Namen hinzugefügt.
LMStudent/hallo-github
HalloGitHub/Program.cs
cc0-1.0
1,590,432,007
using System; using System.IO; using System.Net; namespace HalloGitHub { class Program { private static readonly string octocatAsciiArtUrl = @"https://raw.githubusercontent.com/pi314/ascii-arts/master/octocat.asciiart"; static void Main(string[] args) { Console.WriteLine("...
using System; using System.IO; using System.Net; namespace HalloGitHub { class Program { private static readonly string octocatAsciiArtUrl = @"https://raw.githubusercontent.com/pi314/ascii-arts/master/octocat.asciiart"; static void Main(string[] args) { Console.WriteLine("...
abd581d4f1ebc7fff3fab1897f6369d3a11c2325
Update FrameworkFacade.cs
Update FrameworkFacade.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Facade/NakedObjects.Facade.Impl/Facade/FrameworkFacade.cs
apache-2.0
1,590,431,375
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // Unless requ...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // Unless requ...
4db1f994a90fd96ceeaa5fed6482a4666e51d520
#434: Fix 'ArgumentNullException' if validation skipped
#434: Fix 'ArgumentNullException' if validation skipped
Sitecore/Sitecore-Instance-Manager,Sitecore/Sitecore-Instance-Manager
src/SIM.Tool.Windows/UserControls/Install/Instance9Validation.xaml.cs
mit
1,590,431,261
using SIM.Sitecore9Installer; using SIM.Tool.Base; using SIM.Tool.Base.Pipelines; using SIM.Tool.Base.Wizards; using SIM.Tool.Windows.UserControls.Install.Validation; using Sitecore.Diagnostics.Base; using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Media; us...
using SIM.Sitecore9Installer; using SIM.Tool.Base; using SIM.Tool.Base.Pipelines; using SIM.Tool.Base.Wizards; using SIM.Tool.Windows.UserControls.Install.Validation; using Sitecore.Diagnostics.Base; using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Media; us...
685522e13bfaba85e5a472ce914421ea99580218
#116 - Got rid of warning
#116 - Got rid of warning
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Extensions/Authentication/ApiKeyAuthenticationHandler.cs
agpl-3.0
1,590,430,873
using System.Security.Claims; using System.Text.Encodings.Web; using System.Text.Json; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using SoraBot.Data.Con...
using System.Security.Claims; using System.Text.Encodings.Web; using System.Text.Json; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using SoraBot.Data.Con...
748f7fcd8b914ff7e84d0f29463142b18a6b244d
Rename constants
Rename constants
peppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,ppy/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,NeoAdonis/osu
osu.Game.Tournament/Screens/SetupScreen.cs
mit
1,590,430,826
// 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.Drawing; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.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.Drawing; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Configuration; us...
9ffe87a4e3eca74ee14872a1ecc240a67af61dc1
Fix ObjectDisposedException when CTRL+C (https://github.com/dgarage/NBXplorer/issues/261)
Fix ObjectDisposedException when CTRL+C (https://github.com/dgarage/NBXplorer/issues/261)
dgarage/NBXplorer,dgarage/NBXplorer,dgarage/NBXplorer
NBXplorer/BitcoinDWaiter.cs
mit
1,590,430,754
using NBitcoin.RPC; using Microsoft.Extensions.Logging; using NBXplorer.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using NBXplorer.Configuration; using NBitcoin.Protocol; using System.Threading; using System.IO; using NBitcoin; using System.Net; using NBit...
using NBitcoin.RPC; using Microsoft.Extensions.Logging; using NBXplorer.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using NBXplorer.Configuration; using NBitcoin.Protocol; using System.Threading; using System.IO; using NBitcoin; using System.Net; using NBit...
ca68d94cf7aa7acec4d638f61934836bd3c2b3c9
Invert if to reduce nesting
Invert if to reduce nesting
ppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,smoogipooo/osu,NeoAdonis/osu,ppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,peppy/osu
osu.Game.Tournament/Screens/SetupScreen.cs
mit
1,590,430,697
// 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.Drawing; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.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.Drawing; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Configuration; us...
719da489221850d009c7a87389e3c25edf9a9bf1
Rename delegate argument
Rename delegate argument
UselessToucan/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,ppy/osu
osu.Game.Tournament/Screens/SetupScreen.cs
mit
1,590,430,260
// 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.Drawing; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.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.Drawing; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Configuration; us...
803a59411ac60a3743d0c051de6f4109e197a168
#116 - Added authentication to the request controller. Since the others are only getters they can stay public :D
#116 - Added authentication to the request controller. Since the others are only getters they can stay public :D
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Controllers/RequestsController.cs
agpl-3.0
1,590,429,251
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Dtos; using SoraBot.Data.Models.SoraDb; using SoraBot.Data.Repositories.In...
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Mvc; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Dtos; using SoraBot.Data.Models.SoraDb; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; us...
2db7240754d003c16bce090a78ec407a39b79533
#116 - Added swagger support for authentication
#116 - Added swagger support for authentication
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Startup.cs
agpl-3.0
1,590,429,169
using System; using System.Collections.Generic; using System.IO; using System.Reflection; using AutoMapper; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsof...
using System; using System.IO; using System.Reflection; using AutoMapper; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.OpenApi.Models; using SoraBot.Bo...
98c6561caa27cb3c8d6b20b24405ff135ef8e5ec
#116 - Finished simple authentication scheme
#116 - Finished simple authentication scheme
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Extensions/Authentication/ApiKeyAuthenticationHandler.cs
agpl-3.0
1,590,429,078
using System.Security.Claims; using System.Text.Encodings.Web; using System.Text.Json; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using SoraBot.Data.Con...
using System.Text.Encodings.Web; using System.Text.Json; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using SoraBot.Data.Configurations; namespace SoraBo...
0108126c433264856efabf55c814829aeb0b630e
Fix reporting of failed entity ID inside EntityTest
Fix reporting of failed entity ID inside EntityTest
space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14
Content.IntegrationTests/Tests/EntityTest.cs
mit
1,590,428,410
using NUnit.Framework; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Map; using Robust.Shared.Map; using Robust.Shared.Prototypes; using System; using System.Collections.Generic; using System.Threading.Tasks; using Robust.Shared.Log; using Robust.Server.Int...
using NUnit.Framework; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Map; using Robust.Shared.Map; using Robust.Shared.Prototypes; using System; using System.Collections.Generic; using System.Threading.Tasks; using Robust.Shared.Log; using Robust.Server.Int...
4fa2a5f92291dd9d86f3199453a7a7650a7aa347
#116 - Added needed stumps
#116 - Added needed stumps
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Extensions/Authentication/ApiKeyAuthenticationHandler.cs
agpl-3.0
1,590,428,171
using System.Text.Encodings.Web; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; namespace SoraBot.WebApi.Extensions.Authentication { public class ApiKeyAuthenticationHandler : AuthenticationHandler<ApiKeyAuthenticati...
using System.Text.Encodings.Web; using System.Threading.Tasks; using Microsoft.AspNetCore.Authentication; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; namespace SoraBot.WebApi.Extensions.Authentication { public class ApiKeyAuthenticationHandler : AuthenticationHandler<ApiKeyAuthenticati...
9c75483a5a5e40dd0e7679effef815ae9e6ccdb0
Default Length for StringDataFrameColumn (#2921) (#2923)
Default Length for StringDataFrameColumn (#2921) (#2923)
dotnet/corefxlab,ericstj/corefxlab,ericstj/corefxlab,ericstj/corefxlab,tarekgh/corefxlab,ericstj/corefxlab,ericstj/corefxlab,tarekgh/corefxlab,dotnet/corefxlab,ericstj/corefxlab,tarekgh/corefxlab,dotnet/corefxlab
src/Microsoft.Data.Analysis/StringDataFrameColumn.cs
mit
1,590,428,115
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using Microsoft...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using Microsoft...
46af436cb167206c74f77167a8aaf7b7c5e07c5e
Refactor slot exchange
Refactor slot exchange
tigrouind/AITD-roomviewer
Assets/Scripts/DosBox/DosBox.cs
mit
1,590,426,616
using System; using UnityEngine; using System.Linq; using System.Diagnostics; using System.Collections.Generic; using System.Text; using UnityEngine.UI; public class DosBox : MonoBehaviour { public Text RightText; public BoxInfo BoxInfo; public GameObject Actors; public Arrow Arrow; public Box BoxPrefab; public...
using System; using UnityEngine; using System.Linq; using System.Diagnostics; using System.Collections.Generic; using System.Text; using UnityEngine.UI; public class DosBox : MonoBehaviour { public Text RightText; public BoxInfo BoxInfo; public GameObject Actors; public Arrow Arrow; public Box BoxPrefab; public...
36667ddc2f6d176600ec43044fc6363f89c324a5
Add ExtensionData property to EnumTemplateModel (#1184)
Add ExtensionData property to EnumTemplateModel (#1184) Co-authored-by: NEXOGEN\kemenya <c44ed5a4b0b9a190ea66944dc4dcac100a71766f@nexogen.hu>
RSuter/NJsonSchema,NJsonSchema/NJsonSchema,NJsonSchema/NJsonSchema
src/NJsonSchema.CodeGeneration.CSharp/Models/EnumTemplateModel.cs
mit
1,590,426,204
//----------------------------------------------------------------------- // <copyright file="EnumTemplateModel.cs" company="NJsonSchema"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NJsonSchema/blob/master/LICENSE.md</license> // <author>Rico Suter, ma...
//----------------------------------------------------------------------- // <copyright file="EnumTemplateModel.cs" company="NJsonSchema"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NJsonSchema/blob/master/LICENSE.md</license> // <author>Rico Suter, ma...
018efcfe9305243e4807c5c2d8fd8fd9eee9d483
Add failing multibyte tests
Add failing multibyte tests
Invenietis/CK-Text
Tests/CK.Text.Virtual.Tests/VirtualStringStreamTester.cs
mit
1,590,425,740
using FluentAssertions; using System; using NUnit.Framework; using System.IO; using System.Text; namespace CK.Text.Virtual.Tests { [TestFixture] partial class VirtualStringStreamTester { [Test] public void open_and_read_file() { string content = File.ReadAllText( Path.Co...
using FluentAssertions; using System; using NUnit.Framework; using System.IO; using System.Text; namespace CK.Text.Virtual.Tests { [TestFixture] partial class VirtualStringStreamTester { [Test] public void open_and_read_file() { string content = File.ReadAllText( Path.Co...
d13207e17d1eed867cd04b94f87543e89463724b
Add parameter to GetOriginalPosts method
Add parameter to GetOriginalPosts method
DotNetRu/App,DotNetRu/App
DotNetRu.AzureService/Controllers/VkontakteController.cs
mit
1,590,425,388
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using DotNetRu.AzureService; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Newtonsoft.Json; namespace DotNetRu.Azure { [Route("")] public class Vkontakte...
using System; using System.Threading.Tasks; using DotNetRu.AzureService; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Newtonsoft.Json; namespace DotNetRu.Azure { [Route("")] public class VkontakteController : ControllerBase { private rea...
833c0540e0b5c17ca3ecdd7b127e40436e5e370f
Address review - short circuit the PandasData field/property type check
Address review - short circuit the PandasData field/property type check
JKarathiya/Lean,AlexCatarino/Lean,jameschch/Lean,jameschch/Lean,StefanoRaggi/Lean,AlexCatarino/Lean,QuantConnect/Lean,JKarathiya/Lean,StefanoRaggi/Lean,jameschch/Lean,StefanoRaggi/Lean,JKarathiya/Lean,QuantConnect/Lean,QuantConnect/Lean,StefanoRaggi/Lean,AlexCatarino/Lean,jameschch/Lean
Common/Python/PandasData.cs
apache-2.0
1,590,425,218
/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of...
/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of...
5c4f317fb93d47a8a4946184bc8c86e4e516c6ce
Add unit test
Add unit test
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs
mit
1,590,424,120
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionCrypto { #region Crypto ...
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using CryptoFunc = FonctionsUtiles.Fred.Csharp.FunctionsCrypto; namespace UnitTestUsefullFunctions { [TestClass] public class UnitTestFunctionCrypto { #region Crypto ...
edfebcb2836b3951c9c7d7acf8eb231b4be6e601
Simplify attribute cache to improve performance
Simplify attribute cache to improve performance
y-iihoshi/ThScoreFileConverter,y-iihoshi/ThScoreFileConverter
ThScoreFileConverter/Extensions/EnumExtensions.cs
bsd-2-clause
1,590,424,062
//----------------------------------------------------------------------- // <copyright file="EnumExtensions.cs" company="None"> // Copyright (c) IIHOSHI Yoshinori. // Licensed under the BSD-2-Clause license. See LICENSE.txt file in the project root for full license information. // </copyright> //---------------------...
//----------------------------------------------------------------------- // <copyright file="EnumExtensions.cs" company="None"> // Copyright (c) IIHOSHI Yoshinori. // Licensed under the BSD-2-Clause license. See LICENSE.txt file in the project root for full license information. // </copyright> //---------------------...
06d5515ebd6d02268aec90a4af8e574c9fe9cbe0
Re-enable the disabled watchdog tests
Re-enable the disabled watchdog tests
tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools
tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs
agpl-3.0
1,590,424,045
using Byond.TopicSender; using Microsoft.Extensions.Logging; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using System; using System.IO; using System.Linq; using System.Net; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Client; using T...
using Byond.TopicSender; using Microsoft.Extensions.Logging; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using System; using System.IO; using System.Linq; using System.Net; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Client; using T...
77fba086528ce2e8955f62571608290d13749ae8
Don't issue keyup if we did not key the keydown
Don't issue keyup if we did not key the keydown issue: MatterHackers/MCCentral#5879 export tries multiple times
MatterHackers/agg-sharp,larsbrubaker/agg-sharp
PlatformWin32/win32/WinformsEventSink.cs
bsd-2-clause
1,590,423,469
/* Copyright (c) 2017, Lars Brubaker, John Lewin 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...
/* Copyright (c) 2017, Lars Brubaker, John Lewin 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...
b6262bf33413493f952d088c4e61150b641998ec
Remove ContentFinderByRedirectUrl if RedirectUrlTracking is disabled (#7761)
Remove ContentFinderByRedirectUrl if RedirectUrlTracking is disabled (#7761)
dawoe/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,bjarnef/Umbraco-CMS,leekelleher/Umbraco-CMS,arknu/Umbraco-CMS,KevinJump/Umbraco-CMS,mattbrailsford/Umbraco-CMS,abjerner/Umbraco-CMS,leekelleher/Umbraco-CMS,robertjf/Umbraco-CMS,hfloyd/Umbraco-CMS,tcmorris/Umbraco-CMS,tcmorris/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbra...
src/Umbraco.Web/Runtime/WebInitialComposer.cs
mit
1,590,421,912
using System.Linq; using System.Web; using System.Web.Security; using Examine; using Microsoft.AspNet.SignalR; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Dashboards; using Umbraco.Core.Dictionary; using Umbraco.Core.Events; using Umbraco.Core.Migrations.PostMigrations; using Umbraco.Core.Mode...
using System.Linq; using System.Web; using System.Web.Security; using Examine; using Microsoft.AspNet.SignalR; using Umbraco.Core; using Umbraco.Core.Composing; using Umbraco.Core.Dashboards; using Umbraco.Core.Dictionary; using Umbraco.Core.Events; using Umbraco.Core.Migrations.PostMigrations; using Umbraco.Core.Mode...
d9848c4772020a9f6e9bb8a2bc5e0efcf040f4ed
generate glyco default toml via CMD (#1915)
generate glyco default toml via CMD (#1915)
rmillikin/MetaMorpheus,lonelu/MetaMorpheus,smith-chem-wisc/MetaMorpheus,zrolfs/MetaMorpheus
CMD/CommandLineSettings.cs
mit
1,590,421,569
using CommandLine; using EngineLayer; using Nett; using System; using System.Collections.Generic; using System.IO; using System.Linq; using TaskLayer; namespace MetaMorpheusCommandLine { public class CommandLineSettings { public List<string> Spectra { get; private set; } public List<string> Ta...
using CommandLine; using EngineLayer; using Nett; using System; using System.Collections.Generic; using System.IO; using System.Linq; using TaskLayer; namespace MetaMorpheusCommandLine { public class CommandLineSettings { public List<string> Spectra { get; private set; } public List<string> Ta...
aa0d9e1bf9d75e8f2a8add4d30c32a00718202bb
remove description match
remove description match
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Programs/Win32.cs
mit
1,590,421,296
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; using NLog; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; using NLog; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using ...
adb9fca07aea1ba9a9be0b8a1686f5aaa898b95f
#116 - Fixed unused variable
#116 - Fixed unused variable
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Controllers/RequestsController.cs
agpl-3.0
1,590,420,754
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Mvc; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Dtos; using SoraBot.Data.Models.SoraDb; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; us...
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Mvc; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Dtos; using SoraBot.Data.Models.SoraDb; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; us...
d7d74520583ffec3d2b6fbc886fe7278b2d0f9cc
add more programs
add more programs
qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Programs/Win32.cs
mit
1,590,419,325
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; using NLog; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; using NLog; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using ...
c9878b9f7ce7e38903023daf7389802817ffa691
Rewritten modules missing from Article dialog
Rewritten modules missing from Article dialog
erlingsjostrom/TSS,erlingsjostrom/TSS
TESS/Controllers/Contracts/CustomerContractController.cs
mit
1,590,419,213
using Rotativa.MVC; using System; using System.Collections.Generic; using System.Configuration; using System.Data.SqlClient; using System.Dynamic; using System.Globalization; using System.IO; using System.Linq; using System.Security.Principal; using System.Text; using System.Text.RegularExpressions; using ...
using Rotativa.MVC; using System; using System.Collections.Generic; using System.Configuration; using System.Data.SqlClient; using System.Dynamic; using System.Globalization; using System.IO; using System.Linq; using System.Security.Principal; using System.Text; using System.Text.RegularExpressions; using ...
00db899be1dd26610d1aa8db46181763a976a565
Fix - Odd template parsing bug on Windows with newlines
Fix - Odd template parsing bug on Windows with newlines
EminentTechnology/CodeTorch
src/core/Eminent.CodeGenerator/Template.cs
mit
1,590,418,613
using System; using System.IO; using System.Collections.Specialized; using System.Text; namespace Eminent.CodeGenerator { /// <summary> /// Summary description for Template. /// </summary> public class Template { public Template() { } public Template(FileInfo fi) { FileName = fi.Name; ...
using System; using System.IO; using System.Collections.Specialized; using System.Text; namespace Eminent.CodeGenerator { /// <summary> /// Summary description for Template. /// </summary> public class Template { public Template() { } public Template(FileInfo fi) { FileName = fi.Name; ...
4af8d7b4cf770c23f15b99d0d2cfaf96eed9a304
Configure EnableRetryOnFailure for SQL connections
Configure EnableRetryOnFailure for SQL connections Every one or two months, the production db in Azure is unavailable for a few seconds, triggering a downtime alert. This should resolve it by just retrying for the connection.
GeorgDangl/WebDocu,GeorgDangl/WebDocu,GeorgDangl/WebDocu
src/Dangl.WebDocumentation/Startup.cs
mit
1,590,417,539
using Dangl.WebDocumentation.Models; using Dangl.WebDocumentation.Services; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Identity; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Mi...
using Dangl.WebDocumentation.Models; using Dangl.WebDocumentation.Services; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Identity; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Mi...
409bf4a1f8cda23de41ce8772a4be13eb49bee81
updated version numbers
updated version numbers
Slazanger/SMT,Slazanger/SMT
MainWindow.xaml.cs
mit
1,590,416,136
using Microsoft.Win32; using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Threading; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows....
using Microsoft.Win32; using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Threading; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows....
cd55786acb2e0807e7ac080a7312bead8bed29de
Fix translation mistake in LUT dialogue.
Fix translation mistake in LUT dialogue.
ripieces/advancedfx,ripieces/advancedfx,ripieces/advancedfx,ripieces/advancedfx,ripieces/advancedfx
hlae/AfxRgbaLutVoronoiGenerator.cs
mit
1,590,415,876
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace AfxGui { public partial class AfxRgbaLutVoronoiGenerator : Form, IDisposable { public AfxRgbaLutVoronoiGenerator() ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace AfxGui { public partial class AfxRgbaLutVoronoiGenerator : Form, IDisposable { public AfxRgbaLutVoronoiGenerator() ...
97b54b2656342dea8551602da014b11a3c50b6aa
Fix Solution window not showing changes after PowerShell commands run
Fix Solution window not showing changes after PowerShell commands run When installing, updating, or uninstalling a NuGet package using one of the PowerShell commands the Solution window would not update the packages for SDK style projects or for projects using Package References. Now the NuGet extensions addin raises ...
mrward/monodevelop-nuget-extensions,mrward/monodevelop-nuget-extensions,mrward/monodevelop-nuget-extensions
src/MonoDevelop.PackageManagement.Extensions/MonoDevelop.PackageManagement.Protocol/ProjectMessageHandler.cs
mit
1,590,415,713
// // ProjectMessageHandler.cs // // Author: // Matt Ward <matt.ward@microsoft.com> // // Copyright (c) 2019 Microsoft // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without res...
// // ProjectMessageHandler.cs // // Author: // Matt Ward <matt.ward@microsoft.com> // // Copyright (c) 2019 Microsoft // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without res...
99ba56d8084781e09538f6fc371d597d5be80671
Fix - Controllo autorizzazione Get dettaglio utente
Fix - Controllo autorizzazione Get dettaglio utente
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Queries/GestioneUtente/DettaglioUtente/DettaglioUtenteAuthorizationQueryHandlerDecorator.cs
agpl-3.0
1,590,415,634
//----------------------------------------------------------------------- // <copyright file="ListaOperatoriAuthorizationQueryHandlerDecorator.cs" company="CNVVF"> // Copyright (C) 2017 - CNVVF // // This file is part of SOVVF. // SOVVF is free software: you can redistribute it and/or modify // it under the terms of t...
//----------------------------------------------------------------------- // <copyright file="ListaOperatoriAuthorizationQueryHandlerDecorator.cs" company="CNVVF"> // Copyright (C) 2017 - CNVVF // // This file is part of SOVVF. // SOVVF is free software: you can redistribute it and/or modify // it under the terms of t...
a410d81200f9008a6986edfaee92b5a0a8864de3
Fix - Corretto filtraggio per sede selezionata
Fix - Corretto filtraggio per sede selezionata
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Queries/GestioneUtente/ListaOperatori/ListaOperatoriQueryHandler.cs
agpl-3.0
1,590,415,448
//----------------------------------------------------------------------- // <copyright file="ListaOperatoriQueryHandler.cs" company="CNVVF"> // Copyright (C) 2017 - CNVVF // // This file is part of SOVVF. // SOVVF is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General ...
//----------------------------------------------------------------------- // <copyright file="ListaOperatoriQueryHandler.cs" company="CNVVF"> // Copyright (C) 2017 - CNVVF // // This file is part of SOVVF. // SOVVF is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General ...
bf3d213ba3f2b51c23b9c77d348a529d4c4d8069
[CI] Export GitHub project life days
[CI] Export GitHub project life days
melanchall/drywetmidi,melanchall/drymidi,melanchall/drywetmidi,melanchall/drywetmidi
Resources/Utilities/ExportGitHubStatistics/ExportGitHubStatistics/Program.cs
mit
1,590,415,271
using System; using InfluxDB.Client; using InfluxDB.Client.Api.Domain; using InfluxDB.Client.Writes; using Octokit; namespace ExportGitHubStatistics { class Program { private static class FieldsNames { public const string Stars = "stars"; public const string StarsPerDay...
using System; using InfluxDB.Client; using InfluxDB.Client.Api.Domain; using InfluxDB.Client.Writes; using Octokit; namespace ExportGitHubStatistics { class Program { private static class FieldsNames { public const string Stars = "stars"; public const string StarsPerDay...
1bc166a334fb8bca824b24b432afae8016e3d20e
Lock before enumerating list
Lock before enumerating list
ppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-fr...
osu.Framework/Lists/LockedWeakList.cs
mit
1,590,415,177
// 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; using System.Collections.Generic; using System.Threading; namespace osu.Framework.Lists { /// <summary> /// A <see cref="...
// 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; using System.Collections.Generic; using System.Threading; namespace osu.Framework.Lists { /// <summary> /// A <see cref="...
a8268a6b249e144f867dbec52fcda3caa5ec3f3f
Use instance Log method instead of Console.WriteLine
Use instance Log method instead of Console.WriteLine
schambers/fluentmigrator,igitur/fluentmigrator,stsrki/fluentmigrator,spaccabit/fluentmigrator,spaccabit/fluentmigrator,amroel/fluentmigrator,schambers/fluentmigrator,stsrki/fluentmigrator,amroel/fluentmigrator,igitur/fluentmigrator,schambers/fluentmigrator,fluentmigrator/fluentmigrator,fluentmigrator/fluentmigrator
src/FluentMigrator.MSBuild/Migrate.cs
apache-2.0
1,590,414,793
#region License // // Copyright (c) 2007-2018, Sean Chambers <schambers80@gmail.com> // // 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 // ...
#region License // // Copyright (c) 2007-2018, Sean Chambers <schambers80@gmail.com> // // 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 // ...
b35e257ffae6d9558ec2a5a954f909c66ec9edaf
- Issue #591 (extended): Code signing timestamping fails if old Windows SDK is installed
- Issue #591 (extended): Code signing timestamping fails if old Windows SDK is installed
oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,oleg-shilo/wixsharp,dguder/wixsharp,oleg-shilo/wixsharp
Source/src/WixSharp/CommonTasks.cs
mit
1,590,414,694
#region Licence... /* The MIT License (MIT) Copyright (c) 2014 Oleg Shilo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to u...
#region Licence... /* The MIT License (MIT) Copyright (c) 2014 Oleg Shilo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to u...
6156cb0a6b8178dd0a1d0595592fb7addd2f6014
remove more code
remove more code
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,590,413,862
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using AppxPackaing; using Shell; using Wox.Infrastructure; ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
f912265a6cd0c106673be431419f4c5e1e6f94b3
remvoe useless code
remvoe useless code
qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,590,413,839
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
a529c17e3d52cd9543aed89eb8c53239027ee824
fix usermodelid and famaily name
fix usermodelid and famaily name
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,590,413,779
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
b407451a08e4ce7603cb0738da22b2203e4a71e0
ModDBExport: encrypt password
ModDBExport: encrypt password
RapidScada/scada,RapidScada/scada,RapidScada/scada
ScadaServer/OpenModules/ModDBExport/DBExport/Config.cs
apache-2.0
1,590,413,232
/* * Copyright 2020 Mikhail Shiryaev * * 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 a...
/* * Copyright 2020 Mikhail Shiryaev * * 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 a...
aa390853a933a870716d69aa8e5875a2598366d0
ScadaAgent: a little refactoring
ScadaAgent: a little refactoring
RapidScada/scada,RapidScada/scada,RapidScada/scada
ScadaAgent/ScadaAgentConnector/ConnectionSettings.cs
apache-2.0
1,590,413,180
/* * Copyright 2020 Mikhail Shiryaev * * 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 a...
/* * Copyright 2019 Mikhail Shiryaev * * 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 a...
76d75c839d241f4958c1bdb94350688aa5a67ff6
interface refacotring
interface refacotring
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,590,412,516
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
5b9f92ee029f530d6de65a71ad4cd566dac0fece
more faster metadata parsing
more faster metadata parsing
Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,590,412,389
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
8fc60d12c910dabdb765a93a403ab928d488a506
Add back comments
Add back comments
UselessToucan/osu,smoogipoo/osu,peppy/osu,ppy/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,ppy/osu
osu.Game/Rulesets/UI/Scrolling/ScrollingHitObjectContainer.cs
mit
1,590,412,149
// 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.Allocation; using osu.Framework.Bindables; using osu.Framework.Caching; using osu.Framework.Graphics; using osu.Fra...
// 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.Allocation; using osu.Framework.Bindables; using osu.Framework.Caching; using osu.Framework.Graphics; using osu.Fra...
a3a52740065e5ca09df55ee44750562ad8731ce8
Rate limit endpoints that do not exist for application credentials no longer throw an exception but return null instead
Rate limit endpoints that do not exist for application credentials no longer throw an exception but return null instead
linvi/tweetinvi,linvi/tweetinvi,linvi/tweetinvi,linvi/tweetinvi
src/Tweetinvi.Core/Core/Models/CredentialsRateLimits.cs
mit
1,590,411,274
using System; using System.Collections.Generic; using Tweetinvi.Core.Attributes; using Tweetinvi.Core.DTO; using Tweetinvi.Models; namespace Tweetinvi.Core.Models { public class CredentialsRateLimits : ICredentialsRateLimits { public CredentialsRateLimitsDTO CredentialsRateLimitsDTO { get; } ...
using System; using System.Collections.Generic; using Tweetinvi.Core.Attributes; using Tweetinvi.Core.DTO; using Tweetinvi.Models; namespace Tweetinvi.Core.Models { public class CredentialsRateLimits : ICredentialsRateLimits { public CredentialsRateLimitsDTO CredentialsRateLimitsDTO { get; } ...
194ce557c8eec69ba969e50f9f963ae41fc31319
ILogger.Write() fix: forward BindMessageTemplate(..) call to interface implementation
ILogger.Write() fix: forward BindMessageTemplate(..) call to interface implementation
CaioProiete/serilog,serilog/serilog,CaioProiete/serilog,serilog/serilog,serilog/serilog
src/Serilog/ILogger.cs
apache-2.0
1,590,410,480
// Copyright 2013-2015 Serilog Contributors // // 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...
// Copyright 2013-2015 Serilog Contributors // // 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...
a51231e8938869d44c3ccbb09fe6cec2a766b987
Apply codestyle
Apply codestyle
robinrodricks/FluentFTP,robinrodricks/FluentFTP,robinrodricks/FluentFTP,robinrodricks/FluentFTP
FluentFTP/Helpers/FtpListParser.cs
mit
1,590,410,215
using FluentFTP.Exceptions; using FluentFTP.Helpers.Parsers; using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Text.RegularExpressions; #if NET45 using System.Threading.Tasks; #endif namespace Fluen...
using FluentFTP.Exceptions; using FluentFTP.Helpers.Parsers; using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Text.RegularExpressions; #if NET45 using System.Threading.Tasks; #endif namespace Fluen...
7d25a8979a68aa8c54983fa77d2209a8f64a3d2a
Clear custom parser when removing parser or clearing all parsers
Clear custom parser when removing parser or clearing all parsers
robinrodricks/FluentFTP,robinrodricks/FluentFTP,robinrodricks/FluentFTP,robinrodricks/FluentFTP
FluentFTP/Helpers/FtpListParser.cs
mit
1,590,409,846
using FluentFTP.Exceptions; using FluentFTP.Helpers.Parsers; using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Text.RegularExpressions; #if NET45 using System.Threading.Tasks; #endif namespace Fluen...
using FluentFTP.Exceptions; using FluentFTP.Helpers.Parsers; using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Text.RegularExpressions; #if NET45 using System.Threading.Tasks; #endif namespace Fluen...
8b7d893edd00f484721a411beb8100ae9c1c3ac6
Refactor weaklist enumeration
Refactor weaklist enumeration
ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,EV...
osu.Framework/Lists/WeakList.cs
mit
1,590,409,368
// 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; using System.Collections.Generic; using System.Runtime.CompilerServices; using JetBrains.Annotations; namespace osu.Framework.Li...
// 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; using System.Collections.Generic; using System.Runtime.CompilerServices; using JetBrains.Annotations; namespace osu.Framework.Li...
b99834ccc61a464290021dee7da6f3b9e4618bb5
Update BoolConverters.cs
Update BoolConverters.cs
SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,grokys/Perspex,jkoritzinsky/Perspex,grokys/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,Perspex/Perspex,akrisiun/Perspex,akrisiun/Perspex,jkoritzinsky/Avaloni...
src/Avalonia.Base/Data/Converters/BoolConverters.cs
mit
1,590,409,354
using System.Linq; namespace Avalonia.Data.Converters { /// <summary> /// Provides a set of useful <see cref="IValueConverter"/>s for working with bool values. /// </summary> public static class BoolConverters { /// <summary> /// A multi-value converter that returns true if all inpu...
using System.Linq; namespace Avalonia.Data.Converters { /// <summary> /// Provides a set of useful <see cref="IValueConverter"/>s for working with string values. /// </summary> public static class BoolConverters { /// <summary> /// A multi-value converter that returns true if all in...
ffdc362ea933a1ab1a41bf92c1a37c01ad4e9170
AddStepHandler: Style.
AddStepHandler: Style.
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Core/AddStepHandling/AddStepHandler.cs
mit
1,590,409,230
using System; using System.Collections.Concurrent; using System.Collections.Immutable; using System.Linq; using System.Linq.Expressions; namespace ExRam.Gremlinq.Core { public static class AddStepHandler { private sealed class AddStepHandlerImpl : IAddStepHandler { private readonly...
using System; using System.Collections.Concurrent; using System.Collections.Immutable; using System.Linq; using System.Linq.Expressions; namespace ExRam.Gremlinq.Core { public static class AddStepHandler { private sealed class AddStepHandlerImpl : IAddStepHandler { private readonly...
d87b17450a8511bef6d9a196af9441a449e6cdab
faster metadata parsing
faster metadata parsing
Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox
Plugins/Wox.Plugin.Program/Programs/UWP.cs
mit
1,590,409,229
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Xml.Linq; usi...
8c50fea2708d439524c3c73a524bd662518efab9
Fix a bug which caused that the flyout was not always showing up
Fix a bug which caused that the flyout was not always showing up - When right clicking or holding a Sound tile, create a new MenuFlyout and set the appropriate text
Dav2070/UniversalSoundBoard
UniversalSoundBoard/Components/SoundTileTemplate.xaml.cs
mit
1,590,409,164
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using UniversalSoundBoard.Models; using Windows.ApplicationModel.DataTransfer; using Windows.Storage; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Input; using Windows.UI.Xaml.Media;...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using UniversalSoundBoard.Models; using Windows.ApplicationModel.DataTransfer; using Windows.Storage; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Input; using Windows.UI.Xaml.Media;...
c3af4cc1f69bcad1e105fb86ac113d80fc617623
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,409,040
#region License /* * WebHeaderCollection.cs * * This code is derived from WebHeaderCollection.cs (System.Net) of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com) * Copyright (c) 2007 Novell, Inc. (http://www.novell.com) * Copyright (c) 2012-...
#region License /* * WebHeaderCollection.cs * * This code is derived from WebHeaderCollection.cs (System.Net) of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com) * Copyright (c) 2007 Novell, Inc. (http://www.novell.com) * Copyright (c) 2012-...
7d10c99070e13bcd28b1d4bc4cb7da11e587194a
Makes the cooldown graphic look cooler (#994)
Makes the cooldown graphic look cooler (#994)
space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content
Content.Client/UserInterface/CooldownGraphic.cs
mit
1,590,408,439
using Robust.Client.Graphics.Drawing; using Robust.Client.Interfaces.GameObjects.Components; using Robust.Client.Interfaces.Graphics; using Robust.Shared.Maths; using System; namespace Robust.Client.UserInterface.Controls { public class CooldownGraphic : Control { public float Fraction { get; set; } ...
using Robust.Client.Graphics.Drawing; using Robust.Client.Interfaces.GameObjects.Components; using Robust.Client.Interfaces.Graphics; using Robust.Shared.Maths; using System; namespace Robust.Client.UserInterface.Controls { public class CooldownGraphic : Control { public float Fraction { get; set; } ...
93f4e701877cc70c9ddcabccbbf3b732d6672c4f
PP9-10365: changes in test reverted
PP9-10365: changes in test reverted
Picturepark/Picturepark.SDK.DotNet,Picturepark/Picturepark.SDK.DotNet
src/Picturepark.SDK.V1.Tests/Clients/ContentTests.cs
mit
1,590,408,092
using FluentAssertions; using Newtonsoft.Json; using Picturepark.SDK.V1.Contract; using Picturepark.SDK.V1.Tests.Contracts; using Picturepark.SDK.V1.Tests.Fixtures; using Picturepark.SDK.V1.Tests.FluentAssertions; using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq;...
using FluentAssertions; using Newtonsoft.Json; using Picturepark.SDK.V1.Contract; using Picturepark.SDK.V1.Tests.Contracts; using Picturepark.SDK.V1.Tests.Fixtures; using Picturepark.SDK.V1.Tests.FluentAssertions; using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq;...
5bba76b01140edef6eebcf20ef9a08f4807d54a7
File layout.
File layout.
ExRam/ExRam.Gremlinq
ExRam.Gremlinq.Core.Tests/QueryExecutionTest.cs
mit
1,590,407,475
using System; using System.Linq; using System.Runtime.CompilerServices; using System.Threading.Tasks; using ExRam.Gremlinq.Core.GraphElements; using ExRam.Gremlinq.Tests.Entities; using FluentAssertions; using Gremlin.Net.Process.Traversal; using Gremlin.Net.Process.Traversal.Strategy.Decoration; using VerifyXunit; us...
using System; using System.Linq; using System.Runtime.CompilerServices; using System.Threading.Tasks; using ExRam.Gremlinq.Core.GraphElements; using ExRam.Gremlinq.Tests.Entities; using FluentAssertions; using Gremlin.Net.Process.Traversal; using Gremlin.Net.Process.Traversal.Strategy.Decoration; using VerifyXunit; us...
70a68a35ae5f2d5b87c3a61a540ee8bd169a340c
[CI] Export all GitHub issues count
[CI] Export all GitHub issues count
melanchall/drymidi,melanchall/drywetmidi,melanchall/drywetmidi,melanchall/drywetmidi
Resources/Utilities/ExportGitHubStatistics/ExportGitHubStatistics/Program.cs
mit
1,590,407,427
using System; using InfluxDB.Client; using InfluxDB.Client.Api.Domain; using InfluxDB.Client.Writes; using Octokit; namespace ExportGitHubStatistics { class Program { private static class FieldsNames { public const string Stars = "stars"; public const string StarsPerDay...
using System; using InfluxDB.Client; using InfluxDB.Client.Api.Domain; using InfluxDB.Client.Writes; using Octokit; namespace ExportGitHubStatistics { class Program { private static class FieldsNames { public const string Stars = "stars"; public const string StarsPerDay...
83b62fd8b26520a52dacef76ce819c47173f54d1
Ctrl + Enter runs application as administrator
Ctrl + Enter runs application as administrator
qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,Wox-launcher/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Programs/Win32.cs
mit
1,590,406,915
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; using NLog; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; using NLog; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using ...
7b1c08fd03d56f47fd06a9633ce893e6cd811979
fix to allow null client
fix to allow null client
robinrodricks/FluentFTP,robinrodricks/FluentFTP,robinrodricks/FluentFTP,robinrodricks/FluentFTP
FluentFTP/Streams/FtpFileStream.cs
mit
1,590,406,248
using System; using System.IO; using System.Threading; using FluentFTP; #if ASYNC using System.Threading.Tasks; #endif namespace FluentFTP.Streams { public static class FtpFileStream { /// <summary> /// Returns the file size using synchronous file I/O. /// </summary> public static long GetFileSize(string l...
using System; using System.IO; using System.Threading; using FluentFTP; #if ASYNC using System.Threading.Tasks; #endif namespace FluentFTP.Streams { public static class FtpFileStream { /// <summary> /// Returns the file size using synchronous file I/O. /// </summary> public static long GetFileSize(string l...
48f6adc2f9cdf62b6952d23d5c76a21f56ff2d4c
Add Good Friday to Ireland
Add Good Friday to Ireland https://github.com/nager/Nager.Date/issues/193
tinohager/Nager.Date,tinohager/Nager.Date
Src/Nager.Date/PublicHolidays/IrelandProvider.cs
mit
1,590,405,717
using Nager.Date.Contract; using Nager.Date.Model; using System; using System.Collections.Generic; using System.Linq; namespace Nager.Date.PublicHolidays { /// <summary> /// Ireland /// </summary> public class IrelandProvider : IPublicHolidayProvider { private readonly ICatholicProvider _c...
using Nager.Date.Contract; using Nager.Date.Model; using System; using System.Collections.Generic; using System.Linq; namespace Nager.Date.PublicHolidays { /// <summary> /// Ireland /// </summary> public class IrelandProvider : IPublicHolidayProvider { private readonly ICatholicProvider _c...
8c0d65ad16591c33159920bb80fdb198fad74ac4
Bulgaria add Good Friday
Bulgaria add Good Friday https://github.com/nager/Nager.Date/issues/198
tinohager/Nager.Date,tinohager/Nager.Date
Src/Nager.Date/PublicHolidays/BulgariaProvider.cs
mit
1,590,405,344
using Nager.Date.Contract; using Nager.Date.Model; using System.Collections.Generic; using System.Linq; namespace Nager.Date.PublicHolidays { /// <summary> /// Bulgaria /// </summary> public class BulgariaProvider : IPublicHolidayProvider { private readonly IOrthodoxProvider _orthodoxProvi...
using Nager.Date.Contract; using Nager.Date.Model; using System.Collections.Generic; using System.Linq; namespace Nager.Date.PublicHolidays { /// <summary> /// Bulgaria /// </summary> public class BulgariaProvider : IPublicHolidayProvider { private readonly IOrthodoxProvider _orthodoxProvi...
5cccc8d157ab9e8f35b7399ecb4dce6c85e8e641
DikawneherkaYaywhurwegea
DikawneherkaYaywhurwegea
lindexi/lindexi_gd,lindexi/lindexi_gd,lindexi/lindexi_gd,lindexi/lindexi_gd
LarnaceakemLachonanafemhejal/LarnaceakemLachonanafemhejal/Controllers/FileController.cs
mit
1,590,404,853
using System; using Microsoft.AspNetCore.Mvc; using System.IO; using System.IO.Compression; using System.Security.AccessControl; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; namespace LarnaceakemLachonanafemhejal.Controllers { [ApiController] [Route("[controller]")] public class FileCont...
using Microsoft.AspNetCore.Mvc; using System.IO; using System.IO.Compression; using System.Security.AccessControl; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; namespace LarnaceakemLachonanafemhejal.Controllers { [ApiController] [Route("[controller]")] public class FileController : Contr...
f4053aa95b0c40c904bc98b380f706f0e911134c
#116 - Added endpoint to accept and reject waifu requests
#116 - Added endpoint to accept and reject waifu requests
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Controllers/RequestsController.cs
agpl-3.0
1,590,403,228
using System; using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Discord; using Microsoft.AspNetCore.Mvc; using SoraBot.Common.Extensions.Modules; using SoraBot.Data.Dtos; using SoraBot.Data.Models.SoraDb; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; us...
using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Microsoft.AspNetCore.Mvc; using SoraBot.Data.Dtos; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; using SoraBot.WebApi.Dtos; namespace SoraBot.WebApi.Controllers { [Route("api/[controller]")] [Ap...
479e751b52c1ef4bc92cca4c55fc2305453e2439
Optimize Switzerland, fix St Stephen's Day
Optimize Switzerland, fix St Stephen's Day https://github.com/nager/Nager.Date/issues/197 Some small fixes on switzerland
tinohager/Nager.Date,tinohager/Nager.Date
Src/Nager.Date/PublicHolidays/SwitzerlandProvider.cs
mit
1,590,402,833
using Nager.Date.Contract; using Nager.Date.Model; using System; using System.Collections.Generic; using System.Linq; namespace Nager.Date.PublicHolidays { /// <summary> /// Switzerland /// </summary> public class SwitzerlandProvider : IPublicHolidayProvider, ICountyProvider { private read...
using Nager.Date.Contract; using Nager.Date.Model; using System; using System.Collections.Generic; using System.Linq; namespace Nager.Date.PublicHolidays { /// <summary> /// Switzerland /// </summary> public class SwitzerlandProvider : IPublicHolidayProvider { private readonly ICatholicPro...
b8130bd3669f447a8179c13ba889207f261c262c
Make mania selection blueprint abstract
Make mania selection blueprint abstract
ppy/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu-new,smoogipoo/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,ppy/osu
osu.Game.Rulesets.Mania/Edit/Blueprints/ManiaSelectionBlueprint.cs
mit
1,590,402,669
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Rulesets.Edit; using osu.Game.Rulesets.Mania.Objects.Drawables; using osu.Game.Rulesets.Objec...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Rulesets.Edit; using osu.Game.Rulesets.Mania.Objects.Drawables; using osu.Game.Rulesets.Objec...
af5fac471e56a2b819983ac49067e094e6ea8850
Remove unnecessary size propagation in HitObjectComposer
Remove unnecessary size propagation in HitObjectComposer
UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,peppy/osu-new,smoogipooo/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu
osu.Game/Rulesets/Edit/HitObjectComposer.cs
mit
1,590,402,586
// 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.Collections.Specialized; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Graphics; usi...
// 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.Collections.Specialized; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Graphics; usi...
8f00122dd0e1660d129212bc0dd72244c9696da8
#116 - Added endpoints for user and admin to edit an existing request
#116 - Added endpoints for user and admin to edit an existing request
Daniele122898/SoraBot-v2,Daniele122898/SoraBot-v2
SoraBot/SoraBot.WebApi/Controllers/RequestsController.cs
agpl-3.0
1,590,401,745
using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Microsoft.AspNetCore.Mvc; using SoraBot.Data.Dtos; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; using SoraBot.WebApi.Dtos; namespace SoraBot.WebApi.Controllers { [Route("api/[controller]")] [Ap...
using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Microsoft.AspNetCore.Mvc; using SoraBot.Data.Dtos; using SoraBot.Data.Repositories.Interfaces; using SoraBot.Services.Users; using SoraBot.WebApi.Dtos; namespace SoraBot.WebApi.Controllers { [Route("api/[controller]")] [Ap...
8e1f7ce13be24a698eda4b42f4a8c09b3da3e64e
bugfix #175 : only when lexer does not ignores EOL
bugfix #175 : only when lexer does not ignores EOL
b3b00/csly
sly/lexer/GenericLexer.cs
mit
1,590,401,429
using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using sly.lexer.fsm; namespace sly.lexer { public enum GenericToken { Default, Identifier, Int, Double, KeyWord, String, Char, SugarToken, ...
using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using sly.lexer.fsm; namespace sly.lexer { public enum GenericToken { Default, Identifier, Int, Double, KeyWord, String, Char, SugarToken, ...
95fc3b1b5a48d351886bafd51c2254068dd46955
added json response on exception
added json response on exception
microting/eform-sdk-dotnet,microting/eform-sdk-dotnet
eFormCore/Communication/Http.cs
mit
1,590,401,049
/* The MIT License (MIT) Copyright (c) 2007 - 2020 Microting A/S Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
/* The MIT License (MIT) Copyright (c) 2007 - 2020 Microting A/S Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
fe89ebf6f56e42e4f800647396a5a99538fb1160
[CI] Export GitHub issues statistics
[CI] Export GitHub issues statistics
melanchall/drywetmidi,melanchall/drywetmidi,melanchall/drymidi,melanchall/drywetmidi
Resources/Utilities/ExportGitHubStatistics/ExportGitHubStatistics/Program.cs
mit
1,590,399,888
using System; using InfluxDB.Client; using InfluxDB.Client.Api.Domain; using InfluxDB.Client.Writes; using Octokit; namespace ExportGitHubStatistics { class Program { private static class FieldsNames { public const string Stars = "stars"; public const string StarsPerDay...
using System; using InfluxDB.Client; using InfluxDB.Client.Api.Domain; using InfluxDB.Client.Writes; using Octokit; namespace ExportGitHubStatistics { class Program { private static class FieldsNames { public const string Stars = "stars"; public const string Forks = "fo...
276fca2996293b6a81f0c2d80189ddcb5b3a090e
#44: Remove the "must not start with SELECT" requirement for execute-sql-command
#44: Remove the "must not start with SELECT" requirement for execute-sql-command
jumpinjackie/fdotoolbox,jumpinjackie/fdotoolbox
FdoCmd/Commands/ExecuteSqlNonQueryCommand.cs
lgpl-2.1
1,590,399,865
#region LGPL Header // Copyright (C) 2020, Jackie Ng // https://github.com/jumpinjackie/fdotoolbox, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either /...
#region LGPL Header // Copyright (C) 2020, Jackie Ng // https://github.com/jumpinjackie/fdotoolbox, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either /...
b151d3c70e149b986bbb04d8e1f27087f965e209
#44: Remove the "must start with SELECT" requirement for execute-sql-query as we may run to run a query that precedes with something like a common table expression (CTE) or run a stored procedure
#44: Remove the "must start with SELECT" requirement for execute-sql-query as we may run to run a query that precedes with something like a common table expression (CTE) or run a stored procedure
jumpinjackie/fdotoolbox,jumpinjackie/fdotoolbox
FdoCmd/Commands/ExecuteSqlCommand.cs
lgpl-2.1
1,590,399,828
#region LGPL Header // Copyright (C) 2020, Jackie Ng // https://github.com/jumpinjackie/fdotoolbox, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either /...
#region LGPL Header // Copyright (C) 2020, Jackie Ng // https://github.com/jumpinjackie/fdotoolbox, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either /...
c0c2ab0fffe15809bce1778b2aa44f612c17ea82
Ensure 100% coverage of project file patcher
Ensure 100% coverage of project file patcher
skarpdev/dotnet-version-cli,skarpdev/dotnet-version-cli
test/CsProj/ProjectFileVersionPatcherTest.cs
mit
1,590,399,222
using System; using FakeItEasy; using Skarp.Version.Cli.CsProj; using Skarp.Version.Cli.CsProj.FileSystem; using Xunit; namespace Skarp.Version.Cli.Test.CsProj { public class ProjectFileVersionPatcherTest { private static string _projectXml = "<Project Sdk=\"Microsoft.NET.Sdk\">" + ...
using System; using FakeItEasy; using Skarp.Version.Cli.CsProj; using Skarp.Version.Cli.CsProj.FileSystem; using Xunit; namespace Skarp.Version.Cli.Test.CsProj { public class ProjectFileVersionPatcherTest { private static string _projectXml = "<Project Sdk=\"Microsoft.NET.Sdk\">" + ...
3e99155b5a5081c85613372860a90fe66c1de43b
UserAssetsExporterImporter PreImport PreExport
UserAssetsExporterImporter PreImport PreExport
signumsoftware/framework,AlejandroCano/extensions,MehdyKarimpour/extensions,signumsoftware/framework,AlejandroCano/extensions,signumsoftware/framework,signumsoftware/extensions,MehdyKarimpour/extensions,signumsoftware/extensions
Signum.Engine.Extensions/UserAssets/UserAssetsExporterImporter.cs
mit
1,590,398,640
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Xml.Linq; using Signum.Engine.Basics; using Signum.Engine.Chart; using Signum.Engine.Operations; using Signum.Entities; using Signum.Entities.Basics; using Signum.Entities.Chart; using Signum.Entities.Dashboard; ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Xml.Linq; using Signum.Engine.Basics; using Signum.Engine.Chart; using Signum.Engine.Operations; using Signum.Entities; using Signum.Entities.Basics; using Signum.Entities.Chart; using Signum.Entities.Dashboard; ...
f82a1a946fb56ed5a155402ac0e596c6825ede31
fault reason
fault reason
lucasg/Dependencies,lucasg/Dependencies,lucasg/Dependencies,lucasg/Dependencies
DependenciesGui/DependencyWindow.xaml.cs
mit
1,590,398,352
using System; using System.IO; using System.Collections.Generic; using System.Windows; using System.Windows.Media; using System.Windows.Controls; using System.ComponentModel; using System.Windows.Input; using System.Diagnostics; using System.Windows.Data; using Microsoft.Win32; using Mono.Cecil; using Dependencies.Clr...
using System; using System.IO; using System.Collections.Generic; using System.Windows; using System.Windows.Media; using System.Windows.Controls; using System.ComponentModel; using System.Windows.Input; using System.Diagnostics; using System.Windows.Data; using Microsoft.Win32; using Mono.Cecil; using Dependencies.Clr...
102aaf6653b3df66820c792091bd2cf328a1efea
Improve issuer CA cert handling
Improve issuer CA cert handling
webprofusion/Certify
src/Certify.Providers/ACME/Certes/CertesACMEProvider.cs
mit
1,590,398,064
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks; using Certes; using Certes.Acme; using Certes.Acme.Resource; using Certes.Pkcs; using Certif...
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks; using Certes; using Certes.Acme; using Certes.Acme.Resource; using Certify.Models; using Cer...
2c387705d143add6b704324b7fb2431c5e51bab2
remove synchronous documents commit
remove synchronous documents commit
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Rider/RiderUnitySharedFilesSavingSuppressor.cs
apache-2.0
1,590,397,804
using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; using JetBrains.Application.Threading; using JetBrains.DocumentManagers; using JetBrains.DocumentManagers.Transactions; using JetBrains.DocumentModel; using JetBrains.DocumentModel.Impl; using JetBrains.IDE; using JetBrains.Lifetimes; usi...
using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; using JetBrains.Application.Threading; using JetBrains.DocumentManagers; using JetBrains.DocumentManagers.Transactions; using JetBrains.DocumentModel; using JetBrains.DocumentModel.Impl; using JetBrains.IDE; using JetBrains.Lifetimes; usi...
5ee04d367210dae0323a7185486e386312ab9ded
Approvals.
Approvals.
ExRam/ExRam.Gremlinq
ApprovalTests/ApprovalTests.Core.verified.cs
mit
1,590,397,338
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ExRam.Gremlinq.Core.Tests")] [assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName="")] namespace ExRam.Gremlinq.Core { public sealed class AddEStep : ExRam.Gremlinq.Core.AddElementStep { publ...
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ExRam.Gremlinq.Core.Tests")] [assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName="")] namespace ExRam.Gremlinq.Core { public sealed class AddEStep : ExRam.Gremlinq.Core.AddElementStep { publ...
4ba03984edb774d61d68c1e0cb2b7bb957bb683a
remove unused field
remove unused field
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/UiConfig.cs
mit
1,590,397,259
using Avalonia.Controls; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using ReactiveUI; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Runtime.CompilerServices; using System.Text; using WalletWasabi.Bases; using WalletWasabi.Gui.Controls; using WalletWas...
using Avalonia.Controls; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using ReactiveUI; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Runtime.CompilerServices; using System.Text; using WalletWasabi.Bases; using WalletWasabi.Gui.Controls; using WalletWas...
00b797e3f4ffd83ed0b4ebcde3e9772b2402d622
Changing ProductVariant.InventoryQuantity from int to long
Changing ProductVariant.InventoryQuantity from int to long
nozzlegear/ShopifySharp,clement911/ShopifySharp
ShopifySharp/Entities/ProductVariant.cs
mit
1,590,396,822
using System; using System.Collections.Generic; using Newtonsoft.Json; namespace ShopifySharp { public class ProductVariant : ShopifyObject { /// <summary> /// The unique numeric identifier for the product. /// </summary> [JsonProperty("product_id")] public long? Product...
using System; using System.Collections.Generic; using Newtonsoft.Json; namespace ShopifySharp { public class ProductVariant : ShopifyObject { /// <summary> /// The unique numeric identifier for the product. /// </summary> [JsonProperty("product_id")] public long? Product...
2a95dae168d97efd6f60cd5077f1d00cb47cc6b1
Changed InventoryLevel.Available from int to long
Changed InventoryLevel.Available from int to long
nozzlegear/ShopifySharp,clement911/ShopifySharp
ShopifySharp/Entities/InventoryLevel.cs
mit
1,590,396,421
using System; using System.Collections.Generic; using Newtonsoft.Json; using ShopifySharp.Enums; using ShopifySharp.Converters; namespace ShopifySharp { public class InventoryLevel { /// <summary> /// The unique identifier of the inventory item that the inventory level belongs to. /// <...
using System; using System.Collections.Generic; using Newtonsoft.Json; using ShopifySharp.Enums; using ShopifySharp.Converters; namespace ShopifySharp { public class InventoryLevel { /// <summary> /// The unique identifier of the inventory item that the inventory level belongs to. /// <...
8bceeb0125623e60bde34eeaeacedfca30d44ff7
Fix - Notifica cancellazione utente
Fix - Notifica cancellazione utente
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.SignalR/Sender/GestioneUtenti/NotificationDeleteUtente.cs
agpl-3.0
1,590,395,707
using Microsoft.AspNetCore.SignalR; using SO115App.Models.Servizi.CQRS.Commands.GestioneUtenti.CancellazioneUtente; using SO115App.Models.Servizi.Infrastruttura.GestioneUtenti.GetUtenti; using SO115App.Models.Servizi.Infrastruttura.Notification.GestioneUtenti; using System; using System.Threading.Tasks; namespace SO1...
using Microsoft.AspNetCore.SignalR; using SO115App.Models.Servizi.CQRS.Commands.GestioneUtenti.CancellazioneUtente; using SO115App.Models.Servizi.Infrastruttura.GestioneUtenti.GetUtenti; using SO115App.Models.Servizi.Infrastruttura.Notification.GestioneUtenti; using System; using System.Threading.Tasks; namespace SO1...
fdc6584589e7e58be98bf7d7bb568f2a64b6ad4d
Added image type ARM64
Added image type ARM64
lucasg/Dependencies,lucasg/Dependencies,lucasg/Dependencies,lucasg/Dependencies
DependenciesGui/Models/ModuleInfo.cs
mit
1,590,395,079
using System; using System.Collections.Generic; using System.Windows.Forms; using System.Diagnostics; using System.IO; using Dependencies.ClrPh; [Flags] public enum PeTypes { None = 0, IMAGE_FILE_EXECUTABLE_IMAGE = 0x02, IMAGE_FILE_DLL = 0x2000, } [Flags] public enum ModuleFlag { DelayLoad = 0x01, ...
using System; using System.Collections.Generic; using System.Windows.Forms; using System.Diagnostics; using System.IO; using Dependencies.ClrPh; [Flags] public enum PeTypes { None = 0, IMAGE_FILE_EXECUTABLE_IMAGE = 0x02, IMAGE_FILE_DLL = 0x2000, } [Flags] public enum ModuleFlag { DelayLoad = 0x01, ...
964359f544b882a3d82334a970a05db82d4dcff4
SxSManfest on ARM
SxSManfest on ARM
lucasg/Dependencies,lucasg/Dependencies,lucasg/Dependencies,lucasg/Dependencies
DependenciesLib/SxsManifest.cs
mit
1,590,395,079
using System; using System.Collections.Generic; using System.Xml; using System.Xml.Linq; using System.IO; using System.Text.RegularExpressions; using Dependencies.ClrPh; namespace Dependencies { // C# typedefs #region Sxs Classes public class SxsEntry { public SxsEntry(string _Name, string _P...
using System; using System.Collections.Generic; using System.Xml; using System.Xml.Linq; using System.IO; using System.Text.RegularExpressions; using Dependencies.ClrPh; namespace Dependencies { // C# typedefs #region Sxs Classes public class SxsEntry { public SxsEntry(string _Name, string _P...
5c60ef47e66d26b1a370c5f3669b98d31fde2351
add Hash to FilePathEntity for consistency
add Hash to FilePathEntity for consistency
MehdyKarimpour/extensions,AlejandroCano/extensions,signumsoftware/extensions,MehdyKarimpour/extensions,AlejandroCano/extensions,signumsoftware/extensions,signumsoftware/framework,signumsoftware/framework,signumsoftware/framework
Signum.Entities.Extensions/Files/FilePathEntity.cs
mit
1,590,394,993
using System; using System.IO; using Signum.Utilities; using System.Linq.Expressions; using Signum.Entities.Patterns; using Signum.Services; namespace Signum.Entities.Files { [Serializable, EntityKind(EntityKind.SharedPart, EntityData.Transactional)] public class FilePathEntity : LockableEntity, IFil...
using System; using System.IO; using Signum.Utilities; using System.Linq.Expressions; using Signum.Entities.Patterns; namespace Signum.Entities.Files { [Serializable, EntityKind(EntityKind.SharedPart, EntityData.Transactional)] public class FilePathEntity : LockableEntity, IFile, IFilePath { ...
31282563a6f98feb7572bd3fe1c4a2285b532b71
Убрал лишнее
Убрал лишнее
PilotTeam/PilotRevitIntegrator
PilotRevitShareListener/RevitShareListener.cs
mit
1,590,394,609
using System; using System.Collections.Generic; using System.IO; using System.Timers; using log4net; using PilotRevitShareListener.Server; using Timer = System.Timers.Timer; namespace PilotRevitShareListener { public class RevitShareListener : IFileWaiter { //milliseconds private readonly doub...
using System; using System.Collections.Generic; using System.IO; using System.Timers; using log4net; using PilotRevitShareListener.Server; using Timer = System.Timers.Timer; namespace PilotRevitShareListener { public class RevitShareListener : IFileWaiter { //milliseconds private readonly doub...
6f4cd6111cbdeb04d4e22f88f1693bd9f05e9dad
Drop obsoletion status for now
Drop obsoletion status for now
peppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,ppy/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu-new,smoogipoo/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu
osu.Game/Rulesets/Objects/HitObject.cs
mit
1,590,393,049
// 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 System.Threading; using JetBrains.Annotations; using Newtonsoft.Json; using osu.Framework.Bindab...
// 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 System.Threading; using JetBrains.Annotations; using Newtonsoft.Json; using osu.Framework.Bindab...