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
e068b5f67fd2f73e338eae07556c2966d22ecf0a
fix comments
fix comments
RuBeArtZilla/ArtZilla.Net.Core
artzilla.sharp.lib/artzilla.sharp.lib/Extensions/ObjectExtensions.cs
mit
1,590,943,341
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace ArtZilla.Net.Core.Extensions { public static class ObjectExtensions { /// <summary> Simple check, that object is null </summary> public static bool IsNull<T>(this T self) where T : class => self is null; ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace ArtZilla.Net.Core.Extensions { public static class ObjectExtensions { /// <summary> Simple check, that object is null </summary> public static bool IsNull<T>(this T self) where T : class => self is null; ...
0774aaea572f588437c8b6727a7a63645bb438d8
Lock all accesses
Lock all accesses
xPaw/SteamWebPipes
SteamWebPipes/Bootstrap.cs
mit
1,590,943,239
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography.X509Certificates; using System.Threading; using System.Timers; using Fleck; using Newtonsoft.Json; using Timer = System.Timers.Timer; namespace SteamWebPipes { internal static class Bootstrap ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography.X509Certificates; using System.Threading; using System.Timers; using Fleck; using Newtonsoft.Json; using Timer = System.Timers.Timer; namespace SteamWebPipes { internal static class Bootstrap ...
304421e7b2bb605816676f893e8f0f9d51b26695
This check will fail on reattach. Remove it
This check will fail on reattach. Remove it
tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools
src/Tgstation.Server.Host/Components/Watchdog/WindowsWatchdog.cs
agpl-3.0
1,590,942,346
using Microsoft.Extensions.Logging; using System; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models.Internal; using Tgstation.Server.Host.Components.Chat; using Tgstation.Server.Host.Components.Deployment; using Tgstation.Server.Host.Components.Session; using Tgstation.Server.Host...
using Microsoft.Extensions.Logging; using System; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models.Internal; using Tgstation.Server.Host.Components.Chat; using Tgstation.Server.Host.Components.Deployment; using Tgstation.Server.Host.Components.Session; using Tgstation.Server.Host...
9c03290966f85e78a865fe75932fd14aac653a40
Bump to v0.5.1
Bump to v0.5.1
dancol90/mi-360
Source/mi-360/Properties/AssemblyInfo.cs
bsd-3-clause
1,590,941,740
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Le informazioni generali relative a un assembly sono controllate dal seguente // set di attributi. Modificare i valori di questi attributi per modificare le informazioni // associate a un assembly. [assembly: Ass...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Le informazioni generali relative a un assembly sono controllate dal seguente // set di attributi. Modificare i valori di questi attributi per modificare le informazioni // associate a un assembly. [assembly: Ass...
af2f33a266a7c5bd163038be541e4528afaa2366
RF made VolumeConfigsLibrary static
RF made VolumeConfigsLibrary static
allista/ConfigurableContainers,allista/ConfigurableContainers
VolumeConfigsLibrary.cs
mit
1,590,941,491
// VolumeConfigsLibrary.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Linq; using System.Collections.Generic; namespace AT_Utils { public static class VolumeConfigsLibrary { public const string USER_FILE = "VolumeConfigs.user"; ...
// VolumeConfigsLibrary.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Linq; using System.Collections.Generic; namespace AT_Utils { public class VolumeConfigsLibrary : CustomConfig { public const string USERFILE = "VolumeConfigs.user"; ...
6bb0332a5e9977ec017d667790cf843bff547be4
RF CNO fields are used through introspection
RF CNO fields are used through introspection
allista/ConfigurableContainers,allista/ConfigurableContainers
Cryogenics/CryogenicsParams.cs
mit
1,590,941,491
// CryogenicsParams.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace AT_Utils { [SuppressMessage("ReSharper", "MemberCanBePrivate.Global"), SuppressMessage("ReSh...
// CryogenicsParams.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using System.Collections.Generic; namespace AT_Utils { public class CryogenicsParams : ConfigNodeObject { public new const string NODE_NAME = "CRYOGENICS"; pri...
c4fb64627a353992fbcc2c2f3d359fa35b491f3e
RF private method with unused return value
RF private method with unused return value
allista/ConfigurableContainers,allista/ConfigurableContainers
VolumeConfigsLibrary.cs
mit
1,590,941,491
// VolumeConfigsLibrary.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Collections.Generic; using System.Linq; namespace AT_Utils { public static class VolumeConfigsLibrary { public const string USER_FILE = "VolumeConfigs.user"; ...
// VolumeConfigsLibrary.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Collections.Generic; using System.Linq; namespace AT_Utils { public static class VolumeConfigsLibrary { public const string USER_FILE = "VolumeConfigs.user"; ...
aa383cad4103e651e39584eee29c3639fdac97a3
RF NODE_NAME is used implicitly in CNO
RF NODE_NAME is used implicitly in CNO
allista/ConfigurableContainers,allista/ConfigurableContainers
Cryogenics/CryogenicsParams.cs
mit
1,590,941,491
// CryogenicsParams.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace AT_Utils { [SuppressMessage("ReSharper", "MemberCanBePrivate.Global"), SuppressMessage("ReSh...
// CryogenicsParams.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace AT_Utils { [SuppressMessage("ReSharper", "MemberCanBePrivate.Global"), SuppressMessage("ReSh...
a2556b6e47cffc22d1ddb02bd0488563361bc8d3
RF part and tank of ResourceBoiloff are assigned only in the constructor
RF part and tank of ResourceBoiloff are assigned only in the constructor
allista/ConfigurableContainers,allista/ConfigurableContainers
Cryogenics/ResourceBoiloff.cs
mit
1,590,941,491
// Boiloff.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using JetBrains.Annotations; using UnityEngine; namespace AT_Utils { public class ResourceBoiloff : ConfigNodeObject { [UsedImplicitly] public new const string NODE_NAME = "RES_...
// Boiloff.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using JetBrains.Annotations; using UnityEngine; namespace AT_Utils { public class ResourceBoiloff : ConfigNodeObject { [UsedImplicitly] public new const string NODE_NAME = "RES_...
b8e766ba0748bf22e14955aea9742d5cc4e9abab
Fix active launch parameters update always triggering
Fix active launch parameters update always triggering
tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools
src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
agpl-3.0
1,590,941,126
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Api.Models.Internal; using Tgstation.Server....
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Api.Models.Internal; using Tgstation.Server....
249d6d04c54620603bfd4bf13b2d265c3bdb8578
Statics - Improved caching / compression
Statics - Improved caching / compression
crunchie84/HaagsTranslateSite,crunchie84/HaagsTranslateSite
HaagsVertaler/Startup.cs
mit
1,590,940,829
using System; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.ResponseCompression; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; namespace HaagsVertaler { ...
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; namespace HaagsVertaler { public class Startup { public Startup(IConfiguration configuration) { ...
70e350411a9879497f40379e17c1f9d8569b997f
Retry opening MIDI input device up to 3 times
Retry opening MIDI input device up to 3 times
jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode
Drums/VDrumExplorer.Midi/RawMidiClient.cs
apache-2.0
1,590,940,579
// Copyright 2019 Jon Skeet. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using Commons.Music.Midi; using System; using System.Linq; using System.Threading.Tasks; namespace VDrumExplorer.Midi { /// <summary> /// A MIDI client with...
// Copyright 2019 Jon Skeet. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using Commons.Music.Midi; using System; using System.Linq; using System.Threading.Tasks; namespace VDrumExplorer.Midi { /// <summary> /// A MIDI client with...
5a645968415beefa3fe4513c67231cb006448556
Fix nullability warning
Fix nullability warning
jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode
Drums/VDrumExplorer.ViewModel/Logging/LogViewModel.cs
apache-2.0
1,590,940,579
// Copyright 2020 Jon Skeet. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using Microsoft.Extensions.Logging; using NodaTime; using System; using System.Collections.ObjectModel; using System.IO; using System.Linq; using System.Reflection; ...
// Copyright 2020 Jon Skeet. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using Microsoft.Extensions.Logging; using NodaTime; using System; using System.Collections.ObjectModel; using System.IO; using System.Linq; using System.Reflection; ...
72f6da4fd5dfbcebe79466f4ae86abc11fe7fab8
Give access to internal members for VDrumExplorer.Console
Give access to internal members for VDrumExplorer.Console It would be nice to remove this access later, but it'll be easier to work that out when everything else is in place.
jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode
Drums/VDrumExplorer.Model/AssemblyInfo.cs
apache-2.0
1,590,940,579
// Copyright 2019 Jon Skeet. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("VDrumExplorer.Model.Test")] [assembly:InternalsVisibleTo("VDrumExplorer.Console")]
// Copyright 2019 Jon Skeet. All rights reserved. // Use of this source code is governed by the Apache License 2.0, // as found in the LICENSE.txt file. using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("VDrumExplorer.Model.Test")]
5d9dac358e552540036a389fb6cb203df16cee01
address REF changes for strings.
address REF changes for strings.
hybrasyl/server,baughj/hybrasylserver,baughj/hybrasylserver,hybrasyl/server,hybrasyl/server,baughj/hybrasylserver
hybrasyl/Objects/User.cs
agpl-3.0
1,590,939,784
/* * This file is part of Project Hybrasyl. * * This program is free software; you can redistribute it and/or modify * it under the terms of the Affero General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, but...
/* * This file is part of Project Hybrasyl. * * This program is free software; you can redistribute it and/or modify * it under the terms of the Affero General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, but...
33d731644c092f7164687b1ceeed6ec3145bae4b
Fix test crashing: NullReferenceException
Fix test crashing: NullReferenceException
NeoAdonis/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,peppy/osu-new,smoogipooo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu
osu.Game.Tournament/Screens/SetupScreen.cs
mit
1,590,939,353
// 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...
904f5723795b959acac0bb1061ebcf3ea990da05
Website - Added runtime compilation
Website - Added runtime compilation
crunchie84/HaagsTranslateSite,crunchie84/HaagsTranslateSite
HaagsVertaler/Startup.cs
mit
1,590,938,629
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; namespace HaagsVertaler { public class Startup { public Startup(IConfiguration configuration) { ...
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.AspNetCore.Mvc.Razor; namespace HaagsVertaler { public class Startup { public Startup(IConfigu...
26f3fb2809e0c5b0583b7429301ef3f82ade28cd
plugin error logging
plugin error logging
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Settings/PluginManager.cs
mit
1,590,938,166
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; using System.Windows.Data; using System.Windows.Forms; namespace Au...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; using System.Windows.Data; using System.Windows.Forms; namespace Au...
91631271e7568693c9b83ceb47d0fdad83e1a13d
use invisible black for accent gradient on win32 acrylic blur.
use invisible black for accent gradient on win32 acrylic blur.
jkoritzinsky/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,SuperJMN/Avalonia,jkoritzinsky/Avalonia,akrisiun/Perspex,SuperJMN/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,jkoritzinsky/Perspex,grokys/Perspex,Perspex/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avaloni...
src/Windows/Avalonia.Win32/WindowImpl.cs
mit
1,590,937,780
using System; using System.Collections.Generic; using System.ComponentModel; using System.Runtime.InteropServices; using Avalonia.Controls; using Avalonia.Input; using Avalonia.Input.Raw; using Avalonia.Media; using Avalonia.OpenGL; using Avalonia.Platform; using Avalonia.Rendering; using Avalonia.Win32.Input; using Av...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Runtime.InteropServices; using Avalonia.Controls; using Avalonia.Input; using Avalonia.Input.Raw; using Avalonia.Media; using Avalonia.OpenGL; using Avalonia.Platform; using Avalonia.Rendering; using Avalonia.Win32.Input; using Av...
ce360a960f2d0d876a7c424baac0cd202edc336c
use GameHost's GetStorage instead of local storage
use GameHost's GetStorage instead of local storage This will now get the IPC Path again as the default path if one is present, else it will fall back to osu! lazer's base path.
peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,smoogipooo/osu,peppy/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu
osu.Game.Tournament/Screens/StablePathSelectScreen.cs
mit
1,590,936,613
// 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.IO; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; 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.IO; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Fra...
322dec9bd970a8f99016d7688afc124a15eb27e0
RF MST merged current_resource and Resource into auto-property
RF MST merged current_resource and Resource into auto-property
allista/ConfigurableContainers,allista/ConfigurableContainers
ModuleSwitchableTank.cs
mit
1,590,936,535
// ModuleSwitchableTank.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Linq; using System.Collections.Generic; using UnityEngine; namespace AT_Utils { /// <summary> /// This is a different approach than in ModularFuelTanks, more suitable for "c...
// ModuleSwitchableTank.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Linq; using System.Collections.Generic; using UnityEngine; namespace AT_Utils { /// <summary> /// This is a different approach than in ModularFuelTanks, more suitable for "c...
f71b9e12a985bf492bbcffee62b03791989ed087
Fixed NRE in STM.Load
Fixed NRE in STM.Load
allista/ConfigurableContainers,allista/ConfigurableContainers
SwitchableTankManager.cs
mit
1,590,936,535
// SwitchableTankManager.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using System.Linq; using System.Collections.Generic; using UnityEngine; namespace AT_Utils { public interface ITankManager { SwitchableTankManager GetTankManager(); } pub...
// SwitchableTankManager.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System; using System.Linq; using System.Collections.Generic; using UnityEngine; namespace AT_Utils { public interface ITankManager { SwitchableTankManager GetTankManager(); } pub...
5ec80bf3efaebebf3b896eb8440baf0a7d81cb15
Fixed NRE in MST.init_from_part
Fixed NRE in MST.init_from_part
allista/ConfigurableContainers,allista/ConfigurableContainers
ModuleSwitchableTank.cs
mit
1,590,936,535
// ModuleSwitchableTank.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Linq; using System.Collections.Generic; using UnityEngine; namespace AT_Utils { /// <summary> /// This is a different approach than in ModularFuelTanks, more suitable for "c...
// ModuleSwitchableTank.cs // // Author: // Allis Tauri <allista@gmail.com> // // Copyright (c) 2016 Allis Tauri using System.Linq; using System.Collections.Generic; using UnityEngine; namespace AT_Utils { /// <summary> /// This is a different approach than in ModularFuelTanks, more suitable for "c...
4f02f875b10e03bfac7bde415e628d5978bad5d5
Added logging when overlay layers fail to update
Added logging when overlay layers fail to update this happens when the user opens an application with a wrapper (for example terraria with the logitech wrapper enabled) since Application doesn't exist in this scenario. Dirty fix for now, should fix properly
antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora,antonpup/Aurora
Project-Aurora/Project-Aurora/Profiles/LightEvent.cs
mit
1,590,935,224
using Aurora.EffectsEngine; using Aurora.Settings; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; namespace Aurora.Profiles { public enum LightEventType { Normal, Underlay, Overlay } public...
using Aurora.EffectsEngine; using Aurora.Settings; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; namespace Aurora.Profiles { public enum LightEventType { Normal, Underlay, Overlay } public...
bcefce80ff802621009669bd61a46f75a03efae8
Simplify both methods.
Simplify both methods.
PenguinF/sandra-three
Eutherion/Win.MdiAppTemplate/Session.ToolForms.cs
apache-2.0
1,590,935,223
#region License /********************************************************************************* * Session.ToolForms.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
#region License /********************************************************************************* * Session.ToolForms.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
4a5757116b09d13960d390c8051a20ffed77ccb5
Distinguish between OpenOrActivateSettingsEditor and OpenOrActivateToolForm.
Distinguish between OpenOrActivateSettingsEditor and OpenOrActivateToolForm.
PenguinF/sandra-three
Eutherion/Win.MdiAppTemplate/Session.ToolForms.cs
apache-2.0
1,590,935,026
#region License /********************************************************************************* * Session.ToolForms.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
#region License /********************************************************************************* * Session.ToolForms.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
d35ff62c441d1d656cf80cb33c475cea1b077e93
ft: fix bom check
ft: fix bom check
bolorundurowb/vCardLib
vCardLib/Utils/Helpers.cs
mit
1,590,934,853
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace vCardLib.Utils { /// <summary> /// Class to hold all supporting methods /// </summary> public class Helpers { internal static string[][] GetContactsFromFile(string filePath) ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace vCardLib.Utils { /// <summary> /// Class to hold all supporting methods /// </summary> public class Helpers { internal static string[][] GetContactsFromFile(string filePath) ...
8c2d5701e4785abc96ee1c3df77ed0b3e31f6478
Remove code to find engine from registory
Remove code to find engine from registory
nunit/nunit-console,nunit/nunit-console,nunit/nunit-console,nunit/nunit-console
src/NUnitEngine/nunit.engine.api/TestEngineActivator.cs
mit
1,590,934,368
// *********************************************************************** // Copyright (c) 2011 Charlie Poole, Rob Prouse // // 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 restr...
// *********************************************************************** // Copyright (c) 2011 Charlie Poole, Rob Prouse // // 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 restr...
bf607c4538e701eb56855b568958e9709cadde7b
Use clientAreaSize local variables.
Use clientAreaSize local variables.
PenguinF/sandra-three
Sandra.UI/StandardChessBoard.cs
apache-2.0
1,590,934,358
#region License /********************************************************************************* * StandardChessBoard.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
#region License /********************************************************************************* * StandardChessBoard.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
8fe559d30680d508a223210ac616d081fed09411
ft: finish v3 deserializer
ft: finish v3 deserializer
bolorundurowb/vCardLib
vCardLib/Deserializers/v3Deserializer.cs
mit
1,590,934,230
using System; using System.Collections.Generic; using System.Linq; using vCardLib.Enums; using vCardLib.Models; namespace vCardLib.Deserializers { // ReSharper disable once InconsistentNaming public class v3Deserializer : Deserializer { protected override List<Address> ParseAddresses(string[] cont...
using System; using System.Collections.Generic; using System.Linq; using vCardLib.Enums; using vCardLib.Models; namespace vCardLib.Deserializers { // ReSharper disable once InconsistentNaming public class v3Deserializer : Deserializer { private static string[] _contactDetails; /// <summar...
3ce8ae82d65b506c7c7f188bb2b351bf95d055f2
ft: comple v2 deserializer fixes
ft: comple v2 deserializer fixes
bolorundurowb/vCardLib
vCardLib/Deserializers/v2Deserializer.cs
mit
1,590,933,997
using System; using System.Collections.Generic; using System.Linq; using vCardLib.Enums; using vCardLib.Models; namespace vCardLib.Deserializers { // ReSharper disable once InconsistentNaming public sealed class v2Deserializer : Deserializer { protected override List<Address> ParseAddresses(string...
using System; using System.Collections.Generic; using System.Linq; using vCardLib.Enums; using vCardLib.Models; namespace vCardLib.Deserializers { // ReSharper disable once InconsistentNaming public sealed class v2Deserializer : Deserializer { private static string[] _contactDetails; /// ...
3387090f401c0b52aa96fd056f5acd003a364e8e
Update DiscordWebhook.cs
Update DiscordWebhook.cs
fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Chat/DiscordWebhook.cs
agpl-3.0
1,590,933,996
using System.Collections.Specialized; using System.Net; using System.Text.RegularExpressions; using DatabaseAPI; namespace DiscordWebhook { public static class DiscordWebhookMessage { public static void Post(string url, NameValueCollection pairs) { using (WebClient webClient = new WebClient()) webClient...
using System.Collections.Specialized; using System.Net; using System.Text.RegularExpressions; using DatabaseAPI; namespace DiscordWebhook { public static class DiscordWebhookMessage { public static void Post(string url, NameValueCollection pairs) { using (WebClient webClient = new WebClient()) webClient...
0137c7bd5a1feb920488fa41edc152161661ea80
Format file and refactor code.
Format file and refactor code.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
src/MitternachtBot/Modules/Administration/Services/MuteService.cs
mit
1,590,933,518
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Discord; using Discord.WebSocket; using Microsoft.EntityFrameworkCore; using Mitternacht.Common.Collections; using Mitternacht.Extensions; using Mitternacht...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Discord; using Discord.WebSocket; using Microsoft.EntityFrameworkCore; using Mitternacht.Common.Collections; using Mitternacht.Extensions; using Mitternacht...
e28d8653274dbdd0b4d488c5bf667b8f405fc4e5
Assignment to FormBorderStyle has no effect anymore.
Assignment to FormBorderStyle has no effect anymore.
PenguinF/sandra-three
Sandra.UI/InteractiveGame.UIActions.cs
apache-2.0
1,590,933,320
#region License /********************************************************************************* * InteractiveGame.UIActions.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. ...
#region License /********************************************************************************* * InteractiveGame.UIActions.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. ...
26b26863538341fd067488ba5f05e56e5c74019a
Format file and simplify code.
Format file and simplify code.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
src/MitternachtBot/Modules/Administration/Services/GuildTimezoneService.cs
mit
1,590,933,221
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using Discord.WebSocket; using Mitternacht.Extensions; using Mitternacht.Services; using Mitternacht.Services.Database.Models; namespace Mitternacht.Modules.Administration.Services { public class GuildTimezoneServi...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using Discord.WebSocket; using Mitternacht.Extensions; using Mitternacht.Services; using Mitternacht.Services.Database.Models; namespace Mitternacht.Modules.Administration.Services { public class GuildTimezoneSe...
90fcc807e33fb9763f1c1c33a84a30991842dc7c
API: Add CloseTab method to close and dispose a tab page.
API: Add CloseTab method to close and dispose a tab page.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.cs
apache-2.0
1,590,932,889
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
e688033967bbd5000f0f515d8e63ccafa1ded00d
Fix incorrect xmldoc
Fix incorrect xmldoc
UselessToucan/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu,ppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,peppy/osu-new,smoogipoo/osu
osu.Game/Rulesets/Objects/Legacy/ConvertHitObjectParser.cs
mit
1,590,932,343
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Game.Rulesets.Objects.Types; using System; using System.Collections.Generic; using System.IO; using osu.Game.Beatmaps.Formats; using osu.Game.Audi...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Game.Rulesets.Objects.Types; using System; using System.Collections.Generic; using System.IO; using osu.Game.Beatmaps.Formats; using osu.Game.Audi...
8c1f3f147ced3f451d3cdd756fc24aa5fabee2e7
Draw a circle where otherwise the '×' would be if the tab page is modified, and the mouse is not hovering over it.
Draw a circle where otherwise the '×' would be if the tab page is modified, and the mouse is not hovering over it.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,932,006
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
85edbef42132a78132703f5aa9a792397a4b87c8
Fix keylogger retrieval being stuck when log directory does not exist
Fix keylogger retrieval being stuck when log directory does not exist
quasar/QuasarRAT
Quasar.Server/Messages/KeyloggerHandler.cs
mit
1,590,932,003
using Quasar.Common.Helpers; using Quasar.Common.Messages; using Quasar.Common.Models; using Quasar.Common.Networking; using Quasar.Server.Models; using Quasar.Server.Networking; using System; using System.IO; namespace Quasar.Server.Messages { /// <summary> /// Handles messages for the interaction with the r...
using Quasar.Common.Helpers; using Quasar.Common.Messages; using Quasar.Common.Models; using Quasar.Common.Networking; using Quasar.Server.Models; using Quasar.Server.Networking; using System; using System.IO; namespace Quasar.Server.Messages { /// <summary> /// Handles messages for the interaction with the r...
19be111da098a03227d645ee13f75b3b42b74814
Move incorrect placed full stop
Move incorrect placed full stop Co-authored-by: Bartłomiej Dach <809709723693c4e7ecc6f5379a3099c830279741@gmail.com>
peppy/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu
osu.Game/Rulesets/Edit/HitObjectComposer.cs
mit
1,590,931,990
// 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...
81b8898272fa1bf325afb85236bb0020be65667c
Fix incorrect type cast in encoder
Fix incorrect type cast in encoder
peppy/osu,peppy/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,UselessToucan/osu
osu.Game/Beatmaps/Formats/LegacyBeatmapEncoder.cs
mit
1,590,931,855
// 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.Globalization; using System.IO; using System.Linq; using System.Text; using osu.Game.Audio; using osu.Game.Be...
// 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.Globalization; using System.IO; using System.Linq; using System.Text; using osu.Game.Audio; using osu.Game.Be...
d8f018d8a3af3db00bcf9ee3abccc174c7d0801f
Improve glyph rectangle calculation.
Improve glyph rectangle calculation.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,930,498
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
6430eb345325d6907db8845b13b725106f48ba48
Stop processing removed file in deferred caches
Stop processing removed file in deferred caches
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Feature/Caches/DeferredCacheController.cs
apache-2.0
1,590,929,148
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; using JetBrains.Application.Threading; using JetBrains.Application.Threading.Tasks; using JetBrains.Collections; using JetBrains.Collections.Synchronized; using JetBrains.Collections.View...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; using JetBrains.Application.Threading; using JetBrains.Application.Threading.Tasks; using JetBrains.Collections; using JetBrains.Collections.Synchronized; using JetBrains.Collections.View...
f7edb04ee2db45ec8d18243040a554db7097e8c0
Created COM object in test wasn't disposed, causing the tests to fail after a certain amount of runs. #589
Created COM object in test wasn't disposed, causing the tests to fail after a certain amount of runs. #589
simpleinjector/SimpleInjector
src/SimpleInjector.Tests.Unit/ActiveXTests.cs
mit
1,590,929,148
namespace SimpleInjector.Tests.Unit { using System; using Microsoft.VisualStudio.TestTools.UnitTesting; // #589 [TestClass] public sealed class ActiveXTests : IDisposable { private SHDocVw.InternetExplorer comObject; public ActiveXTests() { this.comObject ...
namespace SimpleInjector.Tests.Unit { using Microsoft.VisualStudio.TestTools.UnitTesting; // #589 [TestClass] public class ActiveXTests { [TestMethod] public void RegisterSingleton_RegisteringVerifyingAndResolvingAnActiveXObject_Succeeds() { // Arrange ...
eae126e5ce53a7b1c8174c3f631aff41eded00aa
Use Bar.EntryType.List instead of Binary
Use Bar.EntryType.List instead of Binary
Xeeynamo/KingdomHearts
OpenKh.Tools.Kh2BattleEditor/ViewModels/MainViewModel.cs
mit
1,590,927,507
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Windows; using OpenKh.Common; using OpenKh.Kh2; using OpenKh.Kh2.Battle; using OpenKh.Kh2.Extensions; using OpenKh.Tools.Common; using OpenKh.Tools.Kh2BattleEditor.Interfaces; using OpenKh.Tools.Kh...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Windows; using OpenKh.Common; using OpenKh.Kh2; using OpenKh.Kh2.Battle; using OpenKh.Kh2.Extensions; using OpenKh.Tools.Common; using OpenKh.Tools.Kh2BattleEditor.Interfaces; using OpenKh.Tools.Kh...
283a5deadd108362d8dd33797be773854e7e44ba
Bar EntryTypes have been shifted, use EntryType List
Bar EntryTypes have been shifted, use EntryType List
Xeeynamo/KingdomHearts
OpenKh.Tools.Kh2BattleEditor/Extensions/BarExtensions.cs
mit
1,590,927,128
using System.Collections.Generic; using System.IO; using System.Linq; using OpenKh.Kh2; namespace OpenKh.Tools.Kh2BattleEditor.Extensions { public static class BarExtensions { public static Stream GetBattleStream(this IEnumerable<Bar.Entry> entries, string name) => // TODO throws exception...
using System.Collections.Generic; using System.IO; using System.Linq; using OpenKh.Kh2; namespace OpenKh.Tools.Kh2BattleEditor.Extensions { public static class BarExtensions { public static Stream GetBattleStream(this IEnumerable<Bar.Entry> entries, string name) => // TODO throws exception...
b9eb679296f447a022e46b36af266666c1af0230
Fix account type name
Fix account type name
quasar/QuasarRAT
Quasar.Client/Networking/QuasarClient.cs
mit
1,590,926,827
using Quasar.Client.Config; using Quasar.Client.Helper; using Quasar.Client.IO; using Quasar.Client.IpGeoLocation; using Quasar.Client.User; using Quasar.Common.DNS; using Quasar.Common.Helpers; using Quasar.Common.Messages; using Quasar.Common.Utilities; using System; using System.Diagnostics; using System.Security.C...
using Quasar.Client.Config; using Quasar.Client.Helper; using Quasar.Client.IO; using Quasar.Client.IpGeoLocation; using Quasar.Client.User; using Quasar.Common.DNS; using Quasar.Common.Helpers; using Quasar.Common.Messages; using Quasar.Common.Utilities; using System; using System.Diagnostics; using System.Security.C...
ce92fac0d61cdc619e7692c7267244fb79899084
Fix date logging
Fix date logging
Webreaper/SensorTagDataCollector,Webreaper/SensorTagDataCollector
SensorTagDataCollector/Program.cs
mit
1,590,926,264
using System; using System.Linq; using System.Collections.Generic; using WirelessSensorTag; using Nest; using System.IO; using System.Threading; using Hive; using Weather; using Logging; namespace SensorTagElastic { /// <summary> /// TODO: /// 1. 24-hour expiry of sessions /// 2. Limit Hive queries to...
using System; using System.Linq; using System.Collections.Generic; using WirelessSensorTag; using Nest; using System.IO; using System.Threading; using Hive; using Weather; using Logging; namespace SensorTagElastic { /// <summary> /// TODO: /// 1. 24-hour expiry of sessions /// 2. Limit Hive queries to...
938f647679893d5e0d198ee3577494b9899ab464
When closing the MdiContainerForm, ask each DockedControl if tab page can be closed. Only close if all docked controls agree.
When closing the MdiContainerForm, ask each DockedControl if tab page can be closed. Only close if all docked controls agree.
PenguinF/sandra-three
Eutherion/Win.MdiAppTemplate/MdiTabControl.cs
apache-2.0
1,590,926,226
#region License /********************************************************************************* * MdiTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may...
#region License /********************************************************************************* * MdiTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may...
5b6fc70e751489f7327d8d88d9e06cab14555d1e
Allow cancellation of tab closing with TabHeaderGlyphClick event.
Allow cancellation of tab closing with TabHeaderGlyphClick event.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.cs
apache-2.0
1,590,925,738
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
48b6ae2d1d936c0e03473c5d9d7c0c3588874750
use common equality pattern
use common equality pattern
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Models/Sorting/SortingPreference.cs
mit
1,590,925,704
using System; using System.Diagnostics.CodeAnalysis; namespace WalletWasabi.Gui.Models.Sorting { public struct SortingPreference : IEquatable<SortingPreference> { public SortingPreference(SortOrder sortOrder, string colTarget) { SortOrder = sortOrder; ColumnTarget = colTarget; } public SortOrder SortO...
using System; using System.Diagnostics.CodeAnalysis; namespace WalletWasabi.Gui.Models.Sorting { public struct SortingPreference : IEquatable<SortingPreference> { public SortingPreference(SortOrder sortOrder, string colTarget) { SortOrder = sortOrder; ColumnTarget = colTarget; } public SortOrder SortO...
f30485bd372e8d475da48e4d22ca170752d4b08b
Update client x86 install paths
Update client x86 install paths
quasar/QuasarRAT
Quasar.Server/Build/ClientBuilder.cs
mit
1,590,925,553
using Mono.Cecil; using Mono.Cecil.Cil; using Quasar.Common.Cryptography; using Quasar.Common.Helpers; using Quasar.Server.Models; using System; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Text; using Vestris.ResourceLib; namespace Quasar.Server.Build { //...
using Mono.Cecil; using Mono.Cecil.Cil; using Quasar.Common.Cryptography; using Quasar.Common.Helpers; using Quasar.Server.Models; using System; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Text; using Vestris.ResourceLib; namespace Quasar.Server.Build { //...
7b4aed9cc42f16a3102aaedf6de158ad73cd85ed
Fix passing context to `helper`s
Fix passing context to `helper`s
rexm/Handlebars.Net
source/Handlebars/Compiler/Translation/Expression/HelperFunctionBinder.cs
mit
1,590,925,470
using System.Linq; using System.Linq.Expressions; using System.IO; using Expressions.Shortcuts; namespace HandlebarsDotNet.Compiler { internal class HelperFunctionBinder : HandlebarsExpressionVisitor { private CompilationContext CompilationContext { get; } public HelperFunctionBinder(Compilati...
using System.Linq; using System.Linq.Expressions; using System.IO; using Expressions.Shortcuts; namespace HandlebarsDotNet.Compiler { internal class HelperFunctionBinder : HandlebarsExpressionVisitor { private CompilationContext CompilationContext { get; } public HelperFunctionBinder(Compilati...
62e862a830dc02ab354af80a59df95d7cfd62848
Update non-metrics if changing the BackColor, ForeColor, Font properties.
Update non-metrics if changing the BackColor, ForeColor, Font properties.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.cs
apache-2.0
1,590,925,320
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
95a44e43a29144753493ec42a5de9e62bceb84b6
Activate another tab page if the active tab page was closed. Close the entire MdiContainerForm after closing the last tab page.
Activate another tab page if the active tab page was closed. Close the entire MdiContainerForm after closing the last tab page.
PenguinF/sandra-three
Sandra.UI/MdiContainerForm.cs
apache-2.0
1,590,925,089
#region License /********************************************************************************* * MdiContainerForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ...
#region License /********************************************************************************* * MdiContainerForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ...
27ff102c07333450b19a77b38b7171872d0a2426
Remove IServiceScope
Remove IServiceScope Remove IServiceScope and replace with standard IServiceProvider instead.
martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site
src/LondonTravel.Site/Startup.cs
apache-2.0
1,590,925,057
// Copyright (c) Martin Costello, 2017. All rights reserved. // Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. namespace MartinCostello.LondonTravel.Site { using System; using System.IO; using System.Net.Mime; using Extensions; using Ma...
// Copyright (c) Martin Costello, 2017. All rights reserved. // Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. namespace MartinCostello.LondonTravel.Site { using System; using System.IO; using System.Net.Mime; using Extensions; using Ma...
bae9425f20ddbeefc99ec56836769b6b43edce0e
Exclude package cache as a namespace provider
Exclude package cache as a namespace provider
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Settings/NamespaceProviderProjectSettingsProvider.cs
apache-2.0
1,590,924,653
using System; using System.Collections.Generic; using System.Linq.Expressions; using JetBrains.Annotations; using JetBrains.Application.Settings; using JetBrains.Application.Settings.Implementation; using JetBrains.Lifetimes; using JetBrains.ProjectModel; using JetBrains.ReSharper.Daemon; using JetBrains.Util; namespa...
using System; using System.Collections.Generic; using System.Linq.Expressions; using JetBrains.Annotations; using JetBrains.Application.Settings; using JetBrains.Application.Settings.Implementation; using JetBrains.Lifetimes; using JetBrains.ProjectModel; using JetBrains.ReSharper.Daemon; using JetBrains.Util; namespa...
ed75810c86bc09fce5d56bcca9f890b0fa13c390
Remove Kestrel server header
Remove Kestrel server header Disable Kestrel from returning the Server HTTP response header.
martincostello/website,martincostello/website,martincostello/website,martincostello/website
src/Website/Program.cs
apache-2.0
1,590,924,394
// Copyright (c) Martin Costello, 2016. All rights reserved. // Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. namespace MartinCostello.Website { using System; using Extensions; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions...
// Copyright (c) Martin Costello, 2016. All rights reserved. // Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. namespace MartinCostello.Website { using System; using Extensions; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions...
54be3a3daf37809a5bbbfd0e7ae84741c95b3c9f
CCT tests xmldoc comment.
CCT tests xmldoc comment.
tompazourek/Colourful,tompazourek/Colourful
tests/Colourful.Tests/Utils/CCTConverterTest.cs
mit
1,590,923,331
using System; using System.Collections.Generic; using System.Diagnostics; using Xunit; namespace Colourful.Tests { public class CCTConverterTest { /// <summary> /// Data from: http://en.wikipedia.org/wiki/Standard_illuminant#White_points_of_standard_illuminants /// </summary> p...
using System; using System.Collections.Generic; using System.Diagnostics; using Xunit; namespace Colourful.Tests { public class CCTConverterTest { /// <summary> /// Data from: http://en.wikipedia.org/wiki/Standard_illuminant#White_points_of_standard_illuminants /// </summary> p...
12f0deb96a8471c45cc91ab9d60076c127a09adb
fix codescene
fix codescene
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/RegressionTests/CoinJoinTests.cs
mit
1,590,922,607
using NBitcoin; using NBitcoin.Protocol; using NBitcoin.RPC; using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Runtime.CompilerServices; using System.Runtime.InteropServi...
using NBitcoin; using NBitcoin.Protocol; using NBitcoin.RPC; using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Runtime.CompilerServices; using System.Runtime.InteropServi...
0d6b8aecea9d6b9b1fd2c1086fe39375ac56d24d
475: this.dbugRootGraphics
475: this.dbugRootGraphics
LayoutFarm/PixelFarm
src/PixelFarm/PaintLab.YourImplementation/1_Events/RenderElementEventPortal.cs
bsd-2-clause
1,590,922,277
//Apache2, 2014-present, WinterDev using System; using System.Collections.Generic; using PixelFarm.Drawing; using LayoutFarm.RenderBoxes; using LayoutFarm.UI.ForImplementator; namespace LayoutFarm.UI { public class RenderElementEventPortal : IEventPortal { /// <summary> /// a helper class f...
//Apache2, 2014-present, WinterDev using System; using System.Collections.Generic; using PixelFarm.Drawing; using LayoutFarm.RenderBoxes; using LayoutFarm.UI.ForImplementator; namespace LayoutFarm.UI { public class RenderElementEventPortal : IEventPortal { /// <summary> /// a helper class f...
12149bb800f375b58a0e6a2971f826d1c50f6d6c
Highlight glyph when hovering over it.
Highlight glyph when hovering over it.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,922,254
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
8b4913f0cd20f0fb91ed35ad58405f5201711f46
Cache measured glyph size for subsequent hit testing.
Cache measured glyph size for subsequent hit testing.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,921,664
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
2b556f27e56ef2a7f0a45c8b400072e3a83009a5
Handle updatechecker nullness
Handle updatechecker nullness
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Tabs/AboutViewModel.cs
mit
1,590,921,206
using Avalonia.Diagnostics.ViewModels; using System; using System.Runtime.InteropServices; using System.Diagnostics; using System.Collections.Generic; using System.Text; using WalletWasabi.Gui.ViewModels; using System.IO; using ReactiveUI; using System.Reactive; using WalletWasabi.Helpers; using WalletWasabi.Logging; u...
using Avalonia.Diagnostics.ViewModels; using System; using System.Runtime.InteropServices; using System.Diagnostics; using System.Collections.Generic; using System.Text; using WalletWasabi.Gui.ViewModels; using System.IO; using ReactiveUI; using System.Reactive; using WalletWasabi.Helpers; using WalletWasabi.Logging; u...
43bbe29c39bcf31e7f6b86605d2920acdd6ed2b7
no need for override
no need for override
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Tabs/AboutViewModel.cs
mit
1,590,921,111
using Avalonia.Diagnostics.ViewModels; using System; using System.Runtime.InteropServices; using System.Diagnostics; using System.Collections.Generic; using System.Text; using WalletWasabi.Gui.ViewModels; using System.IO; using ReactiveUI; using System.Reactive; using WalletWasabi.Helpers; using WalletWasabi.Logging; u...
using Avalonia.Diagnostics.ViewModels; using System; using System.Runtime.InteropServices; using System.Diagnostics; using System.Collections.Generic; using System.Text; using WalletWasabi.Gui.ViewModels; using System.IO; using ReactiveUI; using System.Reactive; using WalletWasabi.Helpers; using WalletWasabi.Logging; u...
bd261f30f8ea5f2727e07a3d5e3bf6270557376f
Add unit test
Add unit test
fredatgithub/UsefulFunctions
UnitTestUsefullFunctions/UnitTestFunctionCrypto.cs
mit
1,590,921,001
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 ...
dc28c46b670622bea7cadf80703c3326ecf7e011
Use nunit_test_assembly to determine the entry path as well
Use nunit_test_assembly to determine the entry path as well
EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,ppy/osu-fram...
osu.Framework/Development/DebugUtils.cs
mit
1,590,920,951
// 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.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using NUnit.Framework; namespace osu.Framework.Development { pu...
// 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.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using NUnit.Framework; namespace osu.Framework.Development { pu...
f73a18b2be6f603634a2902f996b1b80b441f252
properties after constructors
properties after constructors
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/CoinJoin/Common/Models/PublicNonceWithIndex.cs
mit
1,590,920,823
using NBitcoin; using Newtonsoft.Json; using WalletWasabi.JsonConverters; namespace WalletWasabi.CoinJoin.Common.Models { public class PublicNonceWithIndex { public PublicNonceWithIndex(int n, PubKey rPubKey) { N = n; R = rPubKey; } [JsonProperty] public int N { get; set; } [JsonProperty] [Json...
using NBitcoin; using Newtonsoft.Json; using WalletWasabi.JsonConverters; namespace WalletWasabi.CoinJoin.Common.Models { public class PublicNonceWithIndex { [JsonProperty] public int N { get; set; } [JsonProperty] [JsonConverter(typeof(PubKeyJsonConverter))] public PubKey R { get; set; } public Publ...
819050c959397144f7f2272d1ca20a5ff4e54943
Draw a close button glyph next to the tab header text for the active and hover tab pages.
Draw a close button glyph next to the tab header text for the active and hover tab pages.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,920,658
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
2b9c16f6ce6a46507e8a99ccdcf8881c9964daf1
add batching queue limit to sink options
add batching queue limit to sink options
manigandham/serilog-sinks-googlecloudlogging
src/Serilog.Sinks.GoogleCloudLogging/GoogleCloudLoggingSinkExtensions.cs
mit
1,590,918,022
using System; using System.Collections.Generic; using Serilog.Configuration; using Serilog.Formatting.Display; using Serilog.Sinks.PeriodicBatching; namespace Serilog.Sinks.GoogleCloudLogging { public static class GoogleCloudLoggingSinkExtensions { public static LoggerConfiguration GoogleCloudLogging(...
using System; using System.Collections.Generic; using Serilog.Configuration; using Serilog.Formatting.Display; using Serilog.Sinks.PeriodicBatching; namespace Serilog.Sinks.GoogleCloudLogging { public static class GoogleCloudLoggingSinkExtensions { public static LoggerConfiguration GoogleCloudLogging(...
12b94b1ec28c034faf6ce553e1ede6ddd16d18ff
ch: move mthods around
ch: move mthods around
bolorundurowb/vCardLib
vCardLib/Serializers/V2Serializer.cs
mit
1,590,916,799
using System.Collections.Generic; using System.Linq; using System.Text; using vCardLib.Enums; using vCardLib.Interfaces; using vCardLib.Models; namespace vCardLib.Serializers { /// <summary> /// Handles the serialization of version 2 cards /// </summary> internal class V2Serializer : BaseSerializer, I...
using System.Collections.Generic; using System.Linq; using System.Text; using vCardLib.Enums; using vCardLib.Interfaces; using vCardLib.Models; namespace vCardLib.Serializers { /// <summary> /// Handles the serialization of version 2 cards /// </summary> internal class V2Serializer : BaseSerializer, I...
ebb827c4fdce751f32489f31581e607f09a67da9
Display the text of the active tab header in the caption area of the MdiContainerForm.
Display the text of the active tab header in the caption area of the MdiContainerForm.
PenguinF/sandra-three
Eutherion/Win.MdiAppTemplate/MdiTabControl.cs
apache-2.0
1,590,916,618
#region License /********************************************************************************* * MdiTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may...
#region License /********************************************************************************* * MdiTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may...
bcdc4b3dfcdfcabc589801985244c06fd56c42f5
Withdraw contracts if you don't have the contract lock
Withdraw contracts if you don't have the contract lock
DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer
LmpClient/Systems/ShareContracts/ShareContractsEvents.cs
mit
1,590,916,523
using Contracts; using Contracts.Templates; using LmpClient.Base; using LmpClient.Systems.Lock; using LmpClient.Systems.SettingsSys; using LmpCommon.Locks; namespace LmpClient.Systems.ShareContracts { public class ShareContractsEvents : SubSystem<ShareContractsSystem> { /// <summary> /// If we...
using Contracts; using Contracts.Templates; using LmpClient.Base; using LmpClient.Systems.Lock; using LmpClient.Systems.SettingsSys; using LmpCommon.Locks; namespace LmpClient.Systems.ShareContracts { public class ShareContractsEvents : SubSystem<ShareContractsSystem> { /// <summary> /// If we...
1f1c4991a4a3b74bc1ffa0173199d9dd2bc01cd5
Raise AfterTabActivated event.
Raise AfterTabActivated event.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.cs
apache-2.0
1,590,916,324
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
#region License /********************************************************************************* * GlyphTabControl.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You m...
dd1b0d9fd1b26c092ff443c5574e210ab52f11f9
Add tool tips to tab page headers.
Add tool tips to tab page headers.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,915,954
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
e48cbbf24501f5b039e468f235dd01c4ab3bd470
Hide MdiContainerForm before closing it, as lots of initializing Scintilla editors can delay this by seconds.
Hide MdiContainerForm before closing it, as lots of initializing Scintilla editors can delay this by seconds.
PenguinF/sandra-three
Sandra.UI/MdiContainerForm.cs
apache-2.0
1,590,915,536
#region License /********************************************************************************* * MdiContainerForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ...
#region License /********************************************************************************* * MdiContainerForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ...
122b77a1071b4a45421f81717531e68f3a01b8dd
Calculate tab header text area width only once.
Calculate tab header text area width only once.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabHeaderPanel.cs
apache-2.0
1,590,915,437
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
#region License /********************************************************************************* * GlyphTabControl.TabHeaderPanel.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Licen...
f7def6142fb7ccfffc9ef34e01f8c06756345509
Always draw the text in the middle between the right edge of the main menu and the left edge of the system buttons.
Always draw the text in the middle between the right edge of the main menu and the left edge of the system buttons.
PenguinF/sandra-three
Eutherion/Win.MdiAppTemplate/MenuCaptionBarForm.cs
apache-2.0
1,590,915,235
#region License /********************************************************************************* * MenuCaptionBarForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
#region License /********************************************************************************* * MenuCaptionBarForm.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
e9211f70109bb4829d35404e77489b00bfbf252f
Test Commit
Test Commit
JacobDawson/Vulpine.Core.Data
PrimeRunner/Program.cs
lgpl-2.1
1,590,915,125
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using Vulpine.Core.Data; namespace PrimeRunner { class Program { //NOTE: This note is just a test to see if I can still //make commits to the GIT repository static vo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using Vulpine.Core.Data; namespace PrimeRunner { class Program { static void Main(string[] args) { //GenPrimes1(1000); //GenPrimes2(1000000); CheckPrimes...
29d826b53cb5beb32770abf90b1fb31a928e30ba
change c++ standard to c++11
change c++ standard to c++11
kaienkira/brickred-exchange-v2,kaienkira/brickred-exchange-v2,kaienkira/brickred-exchange-v2,kaienkira/brickred-exchange-v2,kaienkira/brickred-exchange-v2
compiler/src/Brickred.Exchange.Compiler/CppCodeGenerator.cs
mit
1,590,914,455
using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Text.RegularExpressions; namespace Brickred.Exchange.Compiler { using EnumItemType = ProtocolDescriptor.EnumDef.ItemType; using EnumMapItemType = ProtocolDescriptor.EnumMapDef.ItemType; using FieldType = Protoc...
using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Text.RegularExpressions; namespace Brickred.Exchange.Compiler { using EnumItemType = ProtocolDescriptor.EnumDef.ItemType; using EnumMapItemType = ProtocolDescriptor.EnumMapDef.ItemType; using FieldType = Protoc...
1cd010eff7158912819310b5f955bffdc1f0637c
Ошибка в установке точек останова при attach
Ошибка в установке точек останова при attach
EvilBeaver/OneScript,EvilBeaver/OneScript,EvilBeaver/OneScript,EvilBeaver/OneScript,EvilBeaver/OneScript
src/OneScript.DebugServices/DefaultDebugService.cs
mpl-2.0
1,590,914,291
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using...
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using...
1841f2719a884ea579e5c046830e098b3b5bae2e
Add OrderId to IPN
Add OrderId to IPN missing according to https://bitpay.com/docs/invoice-callbacks & https://github.com/btcpayserver/btcpayserver/issues/1598
MetacoSA/NBitpayClient,MetacoSA/NBitpayClient
NBitpayClient/InvoicePaymentNotification.cs
mit
1,590,913,157
using NBitcoin; using NBitpayClient.JsonConverters; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; namespace NBitpayClient { //{"id":"NzzNUB5DEMLP5q95szL1VS","url":"https://test.bitpay.com/invoice?id=NzzNUB5DEMLP5q95szL1VS", //"posData":"posData","status":"paid",...
using NBitcoin; using NBitpayClient.JsonConverters; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Text; namespace NBitpayClient { //{"id":"NzzNUB5DEMLP5q95szL1VS","url":"https://test.bitpay.com/invoice?id=NzzNUB5DEMLP5q95szL1VS", //"posData":"posDat...
15622440db8a0527dab20355521d526cd8339aa1
odbdump kvdb data completeness command "check"
odbdump kvdb data completeness command "check"
Bobris/BTDB,klesta490/BTDB,karasek/BTDB
ODbDump/Program.cs
mit
1,590,912,899
using System; using System.IO; using BTDB.KVDBLayer; using BTDB.ODBLayer; using System.Diagnostics; using ODbDump.Visitor; using BTDB.StreamLayer; using System.Linq; using System.Threading; namespace ODbDump { class Program { static void Main(string[] args) { if (args.Length < 1) ...
using System; using System.IO; using BTDB.KVDBLayer; using BTDB.ODBLayer; using System.Diagnostics; using ODbDump.Visitor; using BTDB.StreamLayer; using System.Linq; using System.Threading; namespace ODbDump { class Program { static void Main(string[] args) { if (args.Length < 1) ...
211d7f981f67ef5d749c8f02cc91af41ef36c633
SubscriptionOnlineMessageAdapter. Fix commit 8ac291ce112f9db1b6def458d6ab44d76a132271
SubscriptionOnlineMessageAdapter. Fix commit 8ac291ce112f9db1b6def458d6ab44d76a132271
StockSharp/StockSharp
Algo/SubscriptionOnlineMessageAdapter.cs
apache-2.0
1,590,911,599
namespace StockSharp.Algo { using System; using System.Collections.Generic; using Ecng.Common; using Ecng.Collections; using StockSharp.Messages; using StockSharp.Localization; using StockSharp.Logging; /// <summary> /// Online subscription counter adapter. /// </summary> public class SubscriptionOnlineM...
namespace StockSharp.Algo { using System; using System.Collections.Generic; using Ecng.Common; using Ecng.Collections; using StockSharp.Messages; using StockSharp.Localization; using StockSharp.Logging; /// <summary> /// Online subscription counter adapter. /// </summary> public class SubscriptionOnlineM...
ac9d5a49a7f67291ff38966148988efb2dd46bea
[Modify] Polish it
[Modify] Polish it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,910,090
#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-...
a14638747bfb158c8432fcaf25b535aede3c9c4d
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,910,002
#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-...
963a874478b324286bae3198e6654f0030fb6272
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,909,950
#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-...
379d73def798dcf42b387e7392c0dc2068dff827
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,590,909,877
#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-...
01cebc3a2f104fe3b6d1278ca1788efe27c711c8
delay serialization
delay serialization
OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn
src/OmniSharp.Host/WorkspaceInitializer.cs
mit
1,590,907,954
using System; using System.Composition.Hosting; using System.Linq; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using OmniSharp.Options; using OmniSharp.Roslyn; using OmniSharp.Roslyn.Options; using Omni...
using System; using System.Composition.Hosting; using System.Linq; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using OmniSharp.Options; using OmniSharp.Roslyn; using OmniSharp.Roslyn.Options; using Omni...
023c62635f418e16726fc0ed69828f885c0ea427
print options at debug level at startup
print options at debug level at startup
OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn
src/OmniSharp.Host/WorkspaceInitializer.cs
mit
1,590,907,463
using System; using System.Composition.Hosting; using System.Linq; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using OmniSharp.Options; using OmniSharp.Roslyn; using OmniSharp.Roslyn.Options; using Omni...
using System; using System.Composition.Hosting; using System.Linq; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using OmniSharp.Options; using OmniSharp.Roslyn; using OmniSharp.Roslyn.Options; using Omni...
2b2034eee66259f9f9cbe6f9ceb6f72ec573756d
custom ToString on options
custom ToString on options
OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn
src/OmniSharp.Shared/Options/OmniSharpOptions.cs
mit
1,590,907,194
using Newtonsoft.Json; using System; namespace OmniSharp.Options { public class OmniSharpOptions { public RoslynExtensionsOptions RoslynExtensionsOptions { get; set; } = new RoslynExtensionsOptions(); public FormattingOptions FormattingOptions { get; set; } = new FormattingOptions(); ...
using System; namespace OmniSharp.Options { public class OmniSharpOptions { public RoslynExtensionsOptions RoslynExtensionsOptions { get; set; } = new RoslynExtensionsOptions(); public FormattingOptions FormattingOptions { get; set; } = new FormattingOptions(); public FileOptions File...
b3726bbc762f749952735b8a1ba49c1d68b9a5c5
Fix a bug where new HdAsset could not be created
Fix a bug where new HdAsset could not be created
Xeeynamo/KingdomHearts
OpenKh.Common/Archives/HdAsset.cs
mit
1,590,907,023
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Xe.BinaryMapper; namespace OpenKh.Common.Archives { public class HdAsset { private class Header { [Data] public int OriginalLength { get; set; } [Data] public int AssetCount { get; ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Xe.BinaryMapper; namespace OpenKh.Common.Archives { public class HdAsset { private class Header { [Data] public int OriginalLength { get; set; } [Data] public int AssetCount { get;...
8558be3718bd0f5c04d55923765c38040cb11972
Added some comments about Bind.
Added some comments about Bind.
Matthew-Dove/ContainerExpressions
src/ContainerExpressions/Containers/Extensions/ResponseExtensions.cs
mit
1,590,904,975
using System; using System.Threading.Tasks; namespace ContainerExpressions.Containers { /// <summary>Utility methods for the Response Container.</summary> public static class ResponseExtensions { /// <summary>Creates a valid container response.</summary> public static Response<T> WithValue...
using System; using System.Threading.Tasks; namespace ContainerExpressions.Containers { /// <summary>Utility methods for the Response Container.</summary> public static class ResponseExtensions { /// <summary>Creates a valid container response.</summary> public static Response<T> WithValue...
80a43cd29ec4d4056c0d62694c86318387cf3967
Add release ordering check
Add release ordering check
macro187/verbot
Verbot/VerbotRepository.Checks.cs
mit
1,590,902,519
using System.Linq; using MacroExceptions; using System.Diagnostics; using MacroGit; using MacroSemver; using System.Collections.Generic; namespace Verbot { partial class VerbotRepository { public void CheckLocal() { CheckForVersionLocations(); CheckForConflictingVersion...
using System.Linq; using MacroExceptions; using System.Diagnostics; using MacroGit; using MacroSemver; using System.Collections.Generic; namespace Verbot { partial class VerbotRepository { public void CheckLocal() { CheckForVersionLocations(); CheckForConflictingVersion...
2ab224d5ef92d41e774bf1d389549e35d962b14b
LinuxFramebuffer: DrmOutput: Use drmModeAddFB2 as main call
LinuxFramebuffer: DrmOutput: Use drmModeAddFB2 as main call Use the drmModeAddFB2 as main call and drmModeAddFB as fallback Signed-off-by: Matheus Castello <af02383304f5794299eb6bdbc3796ccbcf621002@castello.eng.br>
jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,grokys/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,AvaloniaUI/Avalonia,akrisiun/Perspex,SuperJMN/Avalonia,jkoritzinsky/Perspex,Perspex/Perspex,grokys/Pe...
src/Linux/Avalonia.LinuxFramebuffer/Output/DrmOutput.cs
mit
1,590,901,300
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.InteropServices; using Avalonia.OpenGL; using Avalonia.Platform.Interop; using static Avalonia.LinuxFramebuffer.NativeUnsafeMethods; using static Avalonia.LinuxFramebuffer.Output.LibDrm; using static Ava...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.InteropServices; using Avalonia.OpenGL; using Avalonia.Platform.Interop; using static Avalonia.LinuxFramebuffer.NativeUnsafeMethods; using static Avalonia.LinuxFramebuffer.Output.LibDrm; namespace Avalon...
7016bc52d1efbd47ac1ff97faf25862721e3a693
LinuxFramebuffer: Output: Drm: Add drmModeAddFB2 wrapper
LinuxFramebuffer: Output: Drm: Add drmModeAddFB2 wrapper drmModeAddFB2 gives us the possibility to specify the pixel format directly in the call Signed-off-by: Matheus Castello <af02383304f5794299eb6bdbc3796ccbcf621002@castello.eng.br>
SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Perspex,grokys/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,Perspex/Perspex,SuperJMN/Avalonia,wieslawsoltes/...
src/Linux/Avalonia.LinuxFramebuffer/Output/Drm.cs
mit
1,590,901,300
using System; using System.Runtime.InteropServices; // ReSharper disable FieldCanBeMadeReadOnly.Global // ReSharper disable MemberCanBePrivate.Global // ReSharper disable FieldCanBeMadeReadOnly.Local namespace Avalonia.LinuxFramebuffer.Output { public enum DrmModeConnection { DRM_MODE_CONNECTED = 1, ...
using System; using System.Runtime.InteropServices; // ReSharper disable FieldCanBeMadeReadOnly.Global // ReSharper disable MemberCanBePrivate.Global // ReSharper disable FieldCanBeMadeReadOnly.Local namespace Avalonia.LinuxFramebuffer.Output { public enum DrmModeConnection { DRM_MODE_CONNECTED = 1, ...
bdc76895161659a318cd3bc6b007ac3eeec190f9
LinuxFramebuffer: Output: Drm: Add gbm_bo_get_format wrapper
LinuxFramebuffer: Output: Drm: Add gbm_bo_get_format wrapper This will get us the correct buffer format to use with drmModeAddFB2 Signed-off-by: Matheus Castello <af02383304f5794299eb6bdbc3796ccbcf621002@castello.eng.br>
Perspex/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,jkoritzinsky/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,jkoritzinsky/...
src/Linux/Avalonia.LinuxFramebuffer/Output/Drm.cs
mit
1,590,901,300
using System; using System.Runtime.InteropServices; // ReSharper disable FieldCanBeMadeReadOnly.Global // ReSharper disable MemberCanBePrivate.Global // ReSharper disable FieldCanBeMadeReadOnly.Local namespace Avalonia.LinuxFramebuffer.Output { public enum DrmModeConnection { DRM_MODE_CONNECTED = 1, ...
using System; using System.Runtime.InteropServices; // ReSharper disable FieldCanBeMadeReadOnly.Global // ReSharper disable MemberCanBePrivate.Global // ReSharper disable FieldCanBeMadeReadOnly.Local namespace Avalonia.LinuxFramebuffer.Output { public enum DrmModeConnection { DRM_MODE_CONNECTED = 1, ...
f2dadeeeb5bbd96c2ff9e62f3b09464eb1c7ffc5
Allow horizontal scroll on results screen when not hovering expanded panel
Allow horizontal scroll on results screen when not hovering expanded panel
NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,peppy/osu,peppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu,smoogipoo/osu
osu.Game/Screens/Ranking/ScorePanelList.cs
mit
1,590,900,642
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; u...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using System.Linq; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game....
e739fb374f1a024af884c8493aceb172cfe321e8
Add `UString.IsNull` property
Add `UString.IsNull` property
qwertie/Loyc
Core/Loyc.Interfaces/Concrete/UString.cs
lgpl-2.1
1,590,900,395
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.ComponentModel; using System.Runtime.CompilerServices; using Loyc.Collections; using uchar = System.Int32; namespace Loyc { /// <summary>UString is a slice of a string. It is a wrapper around s...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.ComponentModel; using System.Runtime.CompilerServices; using Loyc.Collections; using uchar = System.Int32; namespace Loyc { /// <summary>UString is a slice of a string. It is a wrapper around s...
1bdd4b44620e9b4861c1aa5804f3d483841d5216
include type in patched method names for stack traces
include type in patched method names for stack traces
pardeike/Harmony
Harmony/Internal/MethodPatcher.cs
mit
1,590,897,311
using MonoMod.RuntimeDetour; using MonoMod.Utils; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Reflection.Emit; namespace HarmonyLib { internal class MethodPatcher { /// special parameter names that can be used in prefix and postfix methods const strin...
using MonoMod.RuntimeDetour; using MonoMod.Utils; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Reflection.Emit; namespace HarmonyLib { internal class MethodPatcher { /// special parameter names that can be used in prefix and postfix methods const strin...