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
17cdef0b55dd621f4f4fe726fd4bb596ce423d5c
WAF StringHelper.Truncate improve nullable annotation
WAF StringHelper.Truncate improve nullable annotation
jbe2277/waf
src/System.Waf/System.Waf/System.Waf.Core/Foundation/StringHelper.cs
mit
1,594,064,997
using System.Diagnostics.CodeAnalysis; namespace System.Waf.Foundation { /// <summary>Provides helper methods for working with strings.</summary> public static class StringHelper { /// <summary>Returns a value indicating whether a specified substring occurs within this string.</summary> ...
namespace System.Waf.Foundation { /// <summary>Provides helper methods for working with strings.</summary> public static class StringHelper { /// <summary>Returns a value indicating whether a specified substring occurs within this string.</summary> /// <param name="s">The string to se...
47971a91001d51e8602684a700b7052b3a8d3a3f
Attempt to fix #377 by ignoring a test fixture
Attempt to fix #377 by ignoring a test fixture
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
Tests/Agiil.Tests.Web/Services/Tickets/TicketUriProviderTests.cs
mit
1,594,064,622
using System; using System.Web; using System.Web.Mvc; using System.Web.Routing; using Agiil.Domain; using Agiil.Domain.Tickets; using Agiil.Tests.Attributes; using Agiil.Web; using Agiil.Web.Controllers; using Agiil.Web.Services.Tickets; using log4net; using Moq; using NUnit.Framework; namespace Agiil.Tests.Web.Servi...
using System; using System.Web; using System.Web.Mvc; using System.Web.Routing; using Agiil.Domain; using Agiil.Domain.Tickets; using Agiil.Tests.Attributes; using Agiil.Web; using Agiil.Web.Controllers; using Agiil.Web.Services.Tickets; using log4net; using Moq; using NUnit.Framework; namespace Agiil.Tests.Web.Servi...
4e66e23ce466450a59a8602249b3121f01904065
Breaking change: The DefaultJsonSerializerSettingsProvider prepends the provided json converters to the default ones, does not replace them.
Breaking change: The DefaultJsonSerializerSettingsProvider prepends the provided json converters to the default ones, does not replace them.
quartz-software/kephas,quartz-software/kephas,quartz-software/kephas
src/Kephas.Serialization.NewtonsoftJson/DefaultJsonSerializerSettingsProvider.cs
mit
1,594,064,268
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="DefaultJsonSerializerSettingsProvider.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICE...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="DefaultJsonSerializerSettingsProvider.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICE...
51135d6d235d22e8cb02c325429e34a903013b64
Fix typo of 'derived' for variable name
Fix typo of 'derived' for variable name
borisdj/EFCore.BulkExtensions
EFCore.BulkExtensions/TableInfo.cs
mit
1,594,064,134
using FastMember; using Microsoft.Data.SqlClient; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using System; using System.Collections; using System.Collections.Generic; using S...
using FastMember; using Microsoft.Data.SqlClient; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using System; using System.Collections; using System.Collections.Generic; using S...
9b01f2488fe6c39644c1a8b5ca286a7c12b3568b
Make all remaining methods virtual
Make all remaining methods virtual
AsynkronIT/protoactor-dotnet
src/Proto.Actor/RootContextDecorator.cs
apache-2.0
1,594,064,012
using System; using System.Threading; using System.Threading.Tasks; namespace Proto { public abstract class RootContextDecorator : IRootContext { private readonly IRootContext _context; protected RootContextDecorator(IRootContext context) => _context = context; public virtual PID Spa...
using System; using System.Threading; using System.Threading.Tasks; namespace Proto { public abstract class RootContextDecorator : IRootContext { private readonly IRootContext _context; protected RootContextDecorator(IRootContext context) => _context = context; public virtual PID Spa...
3a2ebce03c1c9141f6eaa9d97e4d8b9f57829ca7
NR MergeTest
NR MergeTest
jbe2277/waf
src/NewsReader/NewsReader.Domain.Test/FeedManagerTest.cs
mit
1,594,063,992
using Waf.NewsReader.Domain; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Linq; using Test.NewsReader.Domain.UnitTesting; using static Waf.NewsReader.Domain.FeedManager; namespace Test.NewsReader.Domain { [TestClass] public class FeedManagerTest : DomainTest { ...
using Waf.NewsReader.Domain; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Linq; using Test.NewsReader.Domain.UnitTesting; using static Waf.NewsReader.Domain.FeedManager; namespace Test.NewsReader.Domain { [TestClass] public class FeedManagerTest : DomainTest { ...
0f989fc58194ca4496169bbae94e2c9b82b2186a
Only remove identity column from column list if one exists
Only remove identity column from column list if one exists Failure to check for HasIdentity on an entity would lead to NullReferenceException when indexing tableInfo.PropertyColumnNamesDict with tableInfo.IdentityColumnName
borisdj/EFCore.BulkExtensions
EFCore.BulkExtensions/SqlQueryBuilderSqlite.cs
mit
1,594,063,567
using Microsoft.Data.SqlClient; using System.Collections.Generic; using System.Linq; namespace EFCore.BulkExtensions { public static class SqlQueryBuilderSqlite { public static string SelectLastInsertRowId() { return "SELECT last_insert_rowid();"; } public static s...
using Microsoft.Data.SqlClient; using System.Collections.Generic; using System.Linq; namespace EFCore.BulkExtensions { public static class SqlQueryBuilderSqlite { public static string SelectLastInsertRowId() { return "SELECT last_insert_rowid();"; } public static s...
3c460675084f7b8709a5f0c04c6d892714a62a8d
Fix a test issue.
Fix a test issue.
Azure/amqpnetlite
test/Common/ContainerHostTests.cs
apache-2.0
1,594,062,910
// ------------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation // All rights reserved. // // Licensed under the Apache License, Version 2.0 (the ""License""); you may not use this // file except in compliance with the License. You may obtain a co...
// ------------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation // All rights reserved. // // Licensed under the Apache License, Version 2.0 (the ""License""); you may not use this // file except in compliance with the License. You may obtain a co...
9cf37096a2897adf43e568e132f68e3e4e307357
[jhw] fix indexdescription
[jhw] fix indexdescription
carbon/Amazon,carbon/Amazon
src/Amazon.DynamoDb/Models/IndexDescription.cs
mit
1,594,062,489
using Amazon.DynamoDb.Extensions; using System.Text.Json; namespace Amazon.DynamoDb { public class IndexDescription : IConvertibleFromJson { public string? IndexName { get; set; } public long IndexSizeBytes { get; set; } public long ItemCount { get; set; } public KeySchemaEleme...
using System; using System.Collections.Generic; using System.Text; using System.Text.Json; namespace Amazon.DynamoDb { public class IndexDescription : IConvertibleFromJson { public string? IndexName { get; set; } public long IndexSizeBytes { get; set; } public long ItemCount { get; set...
dbed31bc00f43f41bb45f0e41e697c692595e122
[jhw] fix Projection
[jhw] fix Projection
carbon/Amazon,carbon/Amazon
src/Amazon.DynamoDb/Models/Projection.cs
mit
1,594,062,489
#nullable disable using Amazon.DynamoDb.Extensions; using Carbon.Json; using System.Text.Json; namespace Amazon.DynamoDb { public class Projection { public Projection() { } public Projection(string[] nonKeyAttributes, ProjectionType type) { NonKeyAttributes = nonKeyAttribu...
#nullable disable using Amazon.DynamoDb.Extensions; using Carbon.Json; using System.Text.Json; namespace Amazon.DynamoDb { public class Projection { public Projection() { } public Projection(string[] nonKeyAttributes, ProjectionType type) { NonKeyAttributes = nonKeyAttribu...
0ca0883be5552cc51514551b465542ae791de5d7
[jhw] fix UpdateTimeToLive
[jhw] fix UpdateTimeToLive
carbon/Amazon,carbon/Amazon
src/Amazon.DynamoDb/DynamoDbClient.cs
mit
1,594,062,465
using System; using System.IO; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; using Amazon.DynamoDb.Extensions; using Amazon.Scheduling; using Carbon.Json; namespace Amazon.DynamoDb { public sealed class DynamoDbClient : AwsClient { priv...
using System; using System.IO; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; using Amazon.DynamoDb.Extensions; using Amazon.Scheduling; using Carbon.Json; namespace Amazon.DynamoDb { public sealed class DynamoDbClient : AwsClient { priv...
780af0fd5f8970bc18025d6fa581e21e2b95d85b
[jhw] fix dynamo datetime handling
[jhw] fix dynamo datetime handling
carbon/Amazon,carbon/Amazon
src/Amazon.DynamoDb/Extensions/JsonElementExtensions.cs
mit
1,594,062,465
using Amazon.DynamoDb.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Text.Json; namespace Amazon.DynamoDb.Extensions { public static class JsonElementExtensions { public static string[] GetStringArray(this JsonElement element) ...
using Amazon.DynamoDb.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Text.Json; namespace Amazon.DynamoDb.Extensions { public static class JsonElementExtensions { public static string[] GetStringArray(this JsonElement element) ...
e670b70dc1f9ecdfb63d67cb072891e51ed0fc01
[jhw] fix stream issue
[jhw] fix stream issue
carbon/Amazon,carbon/Amazon
src/Amazon.DynamoDb/DynamoDbClient.cs
mit
1,594,062,452
using System; using System.IO; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; using Amazon.DynamoDb.Extensions; using Amazon.Scheduling; using Carbon.Json; namespace Amazon.DynamoDb { public sealed class DynamoDbClient : AwsClient { priv...
using System; using System.IO; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; using Amazon.DynamoDb.Extensions; using Amazon.Scheduling; using Carbon.Json; namespace Amazon.DynamoDb { public sealed class DynamoDbClient : AwsClient { priv...
17ca52300f5971044ddc7d80a8fad616485f16a9
[jhw] one more minor fix
[jhw] one more minor fix
carbon/Amazon,carbon/Amazon
src/Amazon.DynamoDb/Actions/UpdateTableRequest.cs
mit
1,594,062,434
using System; using System.Collections.Generic; using System.Runtime.Serialization; using Amazon.DynamoDb.Extensions; using Amazon.DynamoDb.Models; using Carbon.Json; namespace Amazon.DynamoDb { public sealed class UpdateTableRequest { public UpdateTableRequest(string tableName) { ...
using System; using System.Collections.Generic; using System.Runtime.Serialization; using Amazon.DynamoDb.Extensions; using Amazon.DynamoDb.Models; using Carbon.Json; namespace Amazon.DynamoDb { public sealed class UpdateTableRequest { public UpdateTableRequest(string tableName) { ...
c06fd555e1734e938ce758c77da8b2d7e486d50d
Fix for https://github.com/kaby76/AntlrVSIX/issues/69
Fix for https://github.com/kaby76/AntlrVSIX/issues/69
kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX
LanguageServer/BisonImport.cs
mit
1,594,062,201
// Template generated code from Antlr4BuildTasks.Template v 3.0 using Antlr4.Runtime.Tree; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LanguageServer { using Antlr4.Runtime; public class BisonImport { private static void Try(string input, ref ...
// Template generated code from Antlr4BuildTasks.Template v 3.0 using Antlr4.Runtime.Tree; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LanguageServer { using Antlr4.Runtime; public class BisonImport { private static void Try(string input, ref ...
35e9b20a6284fc6ebed3e28cbb42f8f3d5573fdc
Revert "WIP #AG377 - Fix another usage of C# 7.x"
Revert "WIP #AG377 - Fix another usage of C# 7.x" This reverts commit f7f515e7e85f3e28c5b3d85e969de88aa88a467d.
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
Agiil.Domain.Impl/Capabilities/CapabilityForParameterChecker.cs
mit
1,594,061,817
using System; using System.Reflection; using CSF.Entities; using CSF.Reflection; using log4net; namespace Agiil.Domain.Capabilities { public class CapabilityForParameterChecker : IAssertsUserHasCapability { // This fake enum is used only as a throwaway placeholder in static reflection, below. ...
using System; using System.Reflection; using CSF.Entities; using CSF.Reflection; using log4net; namespace Agiil.Domain.Capabilities { public class CapabilityForParameterChecker : IAssertsUserHasCapability { // This fake enum is used only as a throwaway placeholder in static reflection, below. ...
da99c42c66dadbae1754755a5a21a0f92ce326e2
Attempt to fix BDD tests by updating basic data package
Attempt to fix BDD tests by updating basic data package * The admin user needs to be set up as a site admin. * Youssef needs to be a project administrator.
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
Tests/Agiil.Web.TestBuild/Services/DataPackages/SimpleSampleProject.cs
mit
1,594,061,633
using System; using System.Linq; using Agiil.Auth; using Agiil.Domain.Auth; using Agiil.Domain.Labels; using Agiil.Domain.Projects; using Agiil.Domain.Sprints; using Agiil.Domain.Tickets; using CSF.ORM; namespace Agiil.Web.Services.DataPackages { public class SimpleSampleProject : IDataPackage { reado...
using System; using System.Linq; using Agiil.Auth; using Agiil.Domain.Auth; using Agiil.Domain.Labels; using Agiil.Domain.Projects; using Agiil.Domain.Sprints; using Agiil.Domain.Tickets; using CSF.ORM; namespace Agiil.Web.Services.DataPackages { public class SimpleSampleProject : IDataPackage { readonly IEnt...
9bdb60f782677306d9c5ed67d4df1a0af93f44d0
[#422] Make IAuthenticated interface public.
[#422] Make IAuthenticated interface public.
Azure/amqpnetlite
src/Listener/IAuthenticated.cs
apache-2.0
1,594,061,550
// ------------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation // All rights reserved. // // Licensed under the Apache License, Version 2.0 (the ""License""); you may not use this // file except in compliance with the License. You may obtain a co...
// ------------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation // All rights reserved. // // Licensed under the Apache License, Version 2.0 (the ""License""); you may not use this // file except in compliance with the License. You may obtain a co...
f7f515e7e85f3e28c5b3d85e969de88aa88a467d
WIP #AG377 - Fix another usage of C# 7.x
WIP #AG377 - Fix another usage of C# 7.x
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
Agiil.Domain.Impl/Capabilities/CapabilityForParameterChecker.cs
mit
1,594,061,194
using System; using System.Reflection; using CSF.Entities; using CSF.Reflection; using log4net; namespace Agiil.Domain.Capabilities { public class CapabilityForParameterChecker : IAssertsUserHasCapability { // This fake enum is used only as a throwaway placeholder in static reflection, below. ...
using System; using System.Reflection; using CSF.Entities; using CSF.Reflection; using log4net; namespace Agiil.Domain.Capabilities { public class CapabilityForParameterChecker : IAssertsUserHasCapability { // This fake enum is used only as a throwaway placeholder in static reflection, below. ...
3849eebc7114c6aa30c31bf1e9d80cee0277ab36
whitespace.
whitespace.
grokys/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,akrisiun/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,wieslawsoltes/Perspex...
src/Avalonia.Visuals/Rect.cs
mit
1,594,060,740
using System; using System.Globalization; using Avalonia.Animation.Animators; using Avalonia.Utilities; namespace Avalonia { /// <summary> /// Defines a rectangle. /// </summary> public readonly struct Rect : IEquatable<Rect> { static Rect() { Animation.Animation.Registe...
using System; using System.Globalization; using Avalonia.Animation.Animators; using Avalonia.Utilities; namespace Avalonia { /// <summary> /// Defines a rectangle. /// </summary> public readonly struct Rect : IEquatable<Rect> { static Rect() { Animation.Animation.Registe...
132f6cdb85dac7ea91d743a91e32974d48890073
Remove redundant array
Remove redundant array
EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framewor...
osu.Framework/Graphics/Containers/GridContainerContent.cs
mit
1,594,060,468
// 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; namespace osu.Framework.Graphics.Containers { /// <summary> /// Implements a jagged array behavior with element change notifications /// </sum...
// 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; namespace osu.Framework.Graphics.Containers { /// <summary> /// Implements a jagged array behavior with element change notifications /// </sum...
f3e8560ab712b8ff3a0c85f472050353920d65db
fix build.
fix build.
jkoritzinsky/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,akrisiun/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,wieslawsoltes/Pe...
src/Avalonia.Headless/HeadlessWindowImpl.cs
mit
1,594,060,329
using System; using System.Collections.Generic; using System.Diagnostics; using Avalonia.Controls; using Avalonia.Controls.Platform.Surfaces; using Avalonia.Controls.Primitives.PopupPositioning; using Avalonia.Input; using Avalonia.Input.Raw; using Avalonia.Media.Imaging; using Avalonia.Platform; using Avalonia.Renderi...
using System; using System.Collections.Generic; using System.Diagnostics; using Avalonia.Controls; using Avalonia.Controls.Platform.Surfaces; using Avalonia.Controls.Primitives.PopupPositioning; using Avalonia.Input; using Avalonia.Input.Raw; using Avalonia.Media.Imaging; using Avalonia.Platform; using Avalonia.Renderi...
1dee6f5f624ab8ccd8060fa99c409b3ad2c999d0
Use tuple list instead of dictionary
Use tuple list instead of dictionary
ppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-fram...
osu.Framework/Input/StateChanges/MidiKeyInput.cs
mit
1,594,060,256
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using System.Linq; using osu.Framework.Input.States; namespace osu.Framework.Input.StateChanges { /// <summary> /// Represents ...
// 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.Input.States; namespace osu.Framework.Input.StateChanges { /// <summary> /// Represents an input from a MID...
caa6c610a04d22a70c627cb8b8b4849ed19a2b70
BUGFIX: custom modifier override WriteContents.
BUGFIX: custom modifier override WriteContents.
Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver
src/AsmResolver.DotNet/Signatures/Types/CustomModifierTypeSignature.cs
mit
1,594,059,139
using AsmResolver.PE.DotNet.Metadata.Tables.Rows; namespace AsmResolver.DotNet.Signatures.Types { /// <summary> /// Represents a type signature that is annotated with a required or optional custom modifier type. /// </summary> public class CustomModifierTypeSignature : TypeSpecificationSignature { ...
using AsmResolver.PE.DotNet.Metadata.Tables.Rows; namespace AsmResolver.DotNet.Signatures.Types { /// <summary> /// Represents a type signature that is annotated with a required or optional custom modifier type. /// </summary> public class CustomModifierTypeSignature : TypeSpecificationSignature { ...
29a35f4be580364f74114c173ee78a758c646446
TransactionOrderingMessageAdapter. Assign order's transaction id for trade only messages.
TransactionOrderingMessageAdapter. Assign order's transaction id for trade only messages.
StockSharp/StockSharp
Algo/TransactionOrderingMessageAdapter.cs
apache-2.0
1,594,058,512
namespace StockSharp.Algo { using System; using System.Collections.Generic; using Ecng.Common; using Ecng.Collections; using StockSharp.Messages; using StockSharp.Logging; /// <summary> /// /// </summary> public class TransactionOrderingMessageAdapter : MessageAdapterWrapper { private class Subscripti...
namespace StockSharp.Algo { using System; using System.Collections.Generic; using Ecng.Common; using Ecng.Collections; using StockSharp.Messages; using StockSharp.Logging; /// <summary> /// /// </summary> public class TransactionOrderingMessageAdapter : MessageAdapterWrapper { private class Subscripti...
b4524fbcb6b4d5c0819696068a23c6e8757e5310
Added BusinessPortal property for use on client side (#810)
Added BusinessPortal property for use on client side (#810)
bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core
src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs
agpl-3.0
1,594,058,397
using Bit.Core.Enums; using Bit.Core.Models.Data; namespace Bit.Core.Models.Api { public class ProfileOrganizationResponseModel : ResponseModel { public ProfileOrganizationResponseModel(OrganizationUserOrganizationDetails organization) : base("profileOrganization") { Id...
using Bit.Core.Enums; using Bit.Core.Models.Data; namespace Bit.Core.Models.Api { public class ProfileOrganizationResponseModel : ResponseModel { public ProfileOrganizationResponseModel(OrganizationUserOrganizationDetails organization) : base("profileOrganization") { Id...
5529c15fc6eb3ff084db18ae3a741d5032c3d46b
Remove unused codes
Remove unused codes
insthync/LiteNetLibManager,insthync/LiteNetLibManager
Scripts/GameApi/LiteNetLibAssets.cs
mit
1,594,058,202
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; #if UNITY_EDITOR using UnityEditor; #endif namespace LiteNetLibManager { public class LiteNetLibAssets : MonoBehaviour { private static int spawnPositionCounter = 0; public bool playerSpawn...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; #if UNITY_EDITOR using UnityEditor; #endif namespace LiteNetLibManager { public class LiteNetLibAssets : MonoBehaviour { private static int spawnPositionCounter = 0; public bool playerSpawn...
7cd894209e719fe117b620039ec0a9f8192bb95d
Do not clear guid to prefabs (it not have to)
Do not clear guid to prefabs (it not have to)
insthync/LiteNetLibManager,insthync/LiteNetLibManager
Scripts/GameApi/LiteNetLibAssets.cs
mit
1,594,058,149
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; #if UNITY_EDITOR using UnityEditor; #endif namespace LiteNetLibManager { public class LiteNetLibAssets : MonoBehaviour { private static int spawnPositionCounter = 0; public bool playerSpawn...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; #if UNITY_EDITOR using UnityEditor; #endif namespace LiteNetLibManager { public class LiteNetLibAssets : MonoBehaviour { private static int spawnPositionCounter = 0; public bool playerSpawn...
61f46ecb11dced888592dc34dca36e8a09a2efde
Update CertBuilder.cs (#809)
Update CertBuilder.cs (#809)
bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core
util/Setup/CertBuilder.cs
agpl-3.0
1,594,057,703
using System; using System.IO; namespace Bit.Setup { public class CertBuilder { private readonly Context _context; public CertBuilder(Context context) { _context = context; } public void BuildForInstall() { if (_context.Stub) ...
using System; using System.IO; namespace Bit.Setup { public class CertBuilder { private readonly Context _context; public CertBuilder(Context context) { _context = context; } public void BuildForInstall() { if (_context.Stub) ...
29f85ac4a72a44d4697aec53056aaa131c2773be
Remove direction setting from CSS files for publishing ePUBs (BL-8662)
Remove direction setting from CSS files for publishing ePUBs (BL-8662) Also set the correct direction on the body elements of the .xhtml files in the generated ePUB.
BloomBooks/BloomDesktop,BloomBooks/BloomDesktop,StephenMcConnel/BloomDesktop,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,gmartin7/myBloomFork,gmartin7/myBloomFork,gmartin7/myBloomFork,StephenMcConnel/BloomDesktop,gmartin7/myBloomFork,BloomBooks/BloomDesktop,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,...
src/BloomExe/Publish/Epub/EpubMaker.cs
mit
1,594,057,331
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Web; using System.Windows.Forms; using System.Xml; using System.Xml.Linq; using Bloom.Book; using Bloom.ToPalaso...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Web; using System.Windows.Forms; using System.Xml; using System.Xml.Linq; using Bloom.Book; using Bloom.ToPalaso...
a97746b72bed4642dfca448b80de19358cb4e6be
Remove used-once field (#23693)
Remove used-once field (#23693) Remove a field that's only used in one place, and just pass the char directly to string.Join() on use.
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Hosting/Abstractions/src/HostingAbstractionsWebHostBuilderExtensions.cs
apache-2.0
1,594,056,735
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Globalization; using System.Linq; using System.Threading; using Microsoft.AspNetCore.Hosting.Server; using Microsoft.Extensio...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Globalization; using System.Linq; using System.Threading; using Microsoft.AspNetCore.Hosting.Server; using Microsoft.Extensio...
5ff0cc3675505c334b2f9bb6fd9ef2afc53b44ab
增加从文件系统加载二进制资源的方法
增加从文件系统加载二进制资源的方法
GameFramework/GameFramework,EllanJiang/GameFramework
GameFramework/Resource/IResourceManager.cs
mit
1,594,055,848
//------------------------------------------------------------ // Game Framework // Copyright © 2013-2020 Jiang Yin. All rights reserved. // Homepage: https://gameframework.cn/ // Feedback: mailto:ellan@gameframework.cn //------------------------------------------------------------ using GameFramework.Download; using...
//------------------------------------------------------------ // Game Framework // Copyright © 2013-2020 Jiang Yin. All rights reserved. // Homepage: https://gameframework.cn/ // Feedback: mailto:ellan@gameframework.cn //------------------------------------------------------------ using GameFramework.Download; using...
33015be33a90d57c6141127ad785783359b14327
Fix commit 81e3080027e7d9adfb84b8dd6d122432480dc3dc
Fix commit 81e3080027e7d9adfb84b8dd6d122432480dc3dc
StockSharp/StockSharp
Algo/TransactionOrderingMessageAdapter.cs
apache-2.0
1,594,055,211
namespace StockSharp.Algo { using System; using System.Collections.Generic; using Ecng.Common; using Ecng.Collections; using StockSharp.Messages; using StockSharp.Logging; /// <summary> /// /// </summary> public class TransactionOrderingMessageAdapter : MessageAdapterWrapper { private class Subscripti...
namespace StockSharp.Algo { using System; using System.Collections.Generic; using Ecng.Common; using Ecng.Collections; using StockSharp.Messages; using StockSharp.Logging; /// <summary> /// /// </summary> public class TransactionOrderingMessageAdapter : MessageAdapterWrapper { private class Subscripti...
8e7776d0c3ca4e84b1b7433902483b67db51e6d8
Add OpenInExplorer and Alert to WindowService
Add OpenInExplorer and Alert to WindowService
CalebChalmers/KAGTools
KAGTools/Services/WindowService.cs
mit
1,594,055,107
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight.Messaging; using KAGTools.ViewModels; using System; using System.CodeDom; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace KAGTools.Services { public cl...
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight.Messaging; using KAGTools.ViewModels; using System; using System.CodeDom; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace KAGTools.Services { public class WindowService { ...
c8d754fec0e54b3328d6e71b58c1c8876ddd0e44
Use StringBuilder to build AlertError messages line by line
Use StringBuilder to build AlertError messages line by line
CalebChalmers/KAGTools
KAGTools/App.xaml.cs
mit
1,594,054,956
using GalaSoft.MvvmLight.Messaging; using KAGTools.Data; using KAGTools.Helpers; using KAGTools.Services; using KAGTools.ViewModels; using KAGTools.Windows; using Microsoft.WindowsAPICodePack.Dialogs; using Serilog; using Squirrel; using System; using System.Configuration; using System.Diagnostics; using System.IO; us...
using GalaSoft.MvvmLight.Messaging; using KAGTools.Data; using KAGTools.Helpers; using KAGTools.Services; using KAGTools.ViewModels; using KAGTools.Windows; using Microsoft.WindowsAPICodePack.Dialogs; using Serilog; using Squirrel; using System; using System.Configuration; using System.Diagnostics; using System.IO; us...
ca012768c148e39e665476acdcf9b85bd83e02ff
added unit test for XElement serialization
added unit test for XElement serialization
AdamsLair/duality
Test/Core/Serialization/SerializerTest.cs
mit
1,594,054,543
using System; using System.Collections.Generic; using System.Reflection; using System.Linq; using System.Linq.Expressions; using System.IO; using System.Globalization; using System.Text; using System.Text.RegularExpressions; using System.Xml; using System.Xml.Linq; using Duality; using Duality.Components; using Dualit...
using System; using System.Collections.Generic; using System.Reflection; using System.Linq; using System.Linq.Expressions; using System.IO; using System.Globalization; using System.Text; using System.Text.RegularExpressions; using Duality; using Duality.Components; using Duality.Drawing; using Duality.Resources; usin...
b04d1f33fa26b4b5a4a92d136b683507510f3017
Use lazy APIs here, since the nature of the method is lazy
Use lazy APIs here, since the nature of the method is lazy
mono/xwt,antmicro/xwt
Xwt/Xwt.Drawing/Image.cs
mit
1,594,054,542
// // Image.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2011 Xamarin Inc // // 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, in...
// // Image.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2011 Xamarin Inc // // 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, in...
dc12e6779214a329e7ab387e637e04e085a89d55
Remove artificial delay
Remove artificial delay
tgstation/tgstation-server-tools,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server
tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs
agpl-3.0
1,594,054,463
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; using Tgstation.Server.Api.Models; using Tgst...
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; using Tgstation.Server.Api.Models; using Tgst...
a57a80fcfbdbc5e428f341994ed71ca97c9c5624
Fix ContentLengthReadAsyncSingleBytesAtATime (#23641)
Fix ContentLengthReadAsyncSingleBytesAtATime (#23641)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Servers/Kestrel/test/InMemory.FunctionalTests/RequestTests.cs
apache-2.0
1,594,054,087
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Concurrent; using System.IO; using System.IO.Pipelines; using System.Linq; using System.Text; using System.Thread...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Concurrent; using System.IO; using System.IO.Pipelines; using System.Linq; using System.Text; using System.Thread...
0be37fb6b48b96fab71499c1e5e38b2ec7937a84
Improve monitor crash handling
Improve monitor crash handling - Fix Status never getting set to DelayedRestart
tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server
src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
agpl-3.0
1,594,053,134
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Serilog.Context; 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 Serilog.Context; 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....
4454c88ab39c6d83da4be3985dd61124ed4990e2
Fix the watchdog never getting set back to Online status
Fix the watchdog never getting set back to Online status
tgstation/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server-tools
src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
agpl-3.0
1,594,052,948
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Serilog.Context; 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 Serilog.Context; 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....
77459961f816da53374726491f2d29916c46d761
Address review comments
Address review comments
GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples
functions/helloworld/HelloWorld.Tests/HelloGcsTest.cs
apache-2.0
1,594,052,636
// Copyright 2020 Google LLC // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
// Copyright 2020 Google LLC // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
34feea5588784f1d77e35a28f17b231f4d25797b
Improve stability in ExportDataAsync
Improve stability in ExportDataAsync - Try to fix a crash which occured when exporting the entire Soundboard - Check if each file exists before trying to copy it and try to get the file manually (without using the absolute path)
Dav2070/UniversalSoundBoard
UniversalSoundBoard/DataAccess/DatabaseOperations.cs
mit
1,594,052,581
using davClassLibrary; using davClassLibrary.Models; using SQLite; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Threading.Tasks; using UniversalSoundboard.Models; using UniversalSoundBoard.Models; using Windows.Storage; namespace UniversalSoundBoard.DataAcces...
using davClassLibrary; using davClassLibrary.Models; using SQLite; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Threading.Tasks; using UniversalSoundboard.Models; using UniversalSoundBoard.Models; using Windows.Storage; namespace UniversalSoundBoard.DataAcces...
bf7a9cf66b012d846525ddfc72ae6d937a901998
SnapshotRegistry. Auto-delete error files (no any ok messages).
SnapshotRegistry. Auto-delete error files (no any ok messages).
StockSharp/StockSharp
Algo/Storages/SnapshotRegistry.cs
apache-2.0
1,594,052,380
namespace StockSharp.Algo.Storages { using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Threading; using Ecng.Collections; using Ecng.Common; using Ecng.ComponentModel; using Ecng.Interop; using Ecng.Seriali...
namespace StockSharp.Algo.Storages { using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Threading; using Ecng.Collections; using Ecng.Common; using Ecng.ComponentModel; using Ecng.Interop; using Ecng.Seriali...
ebbc8298917db15105130ea2b12e1dab67173a88
disable HardwareAccelerated
disable HardwareAccelerated
peppy/osu-new,peppy/osu,ppy/osu,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu
osu.Android/OsuGameActivity.cs
mit
1,594,052,127
// 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 Android.App; using Android.Content.PM; using Android.OS; using Android.Views; using osu.Framework.Android; namespace osu.Android { [Activity(Theme = "@android...
// 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 Android.App; using Android.Content.PM; using Android.OS; using Android.Views; using osu.Framework.Android; namespace osu.Android { [Activity(Theme = "@android...
eebf9b771712c5ce2b2a505cf7958741c5b5b2b1
Fixed an extra comma added to an null cell when exporting CSV.
Fixed an extra comma added to an null cell when exporting CSV.
unvell/ReoGrid
ReoGrid/Core/CSV.cs
mit
1,594,052,042
/***************************************************************************** * * ReoGrid - .NET Spreadsheet Control * * http://reogrid.net/ * * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF...
/***************************************************************************** * * ReoGrid - .NET Spreadsheet Control * * http://reogrid.net/ * * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF...
4205a4b4ac7a143c4b33612487bcd7c0070a64aa
Breaking change: DefaultJsonSerializerSettingsProvider.Instance is now of type IJsonSerializerSettingsProvider
Breaking change: DefaultJsonSerializerSettingsProvider.Instance is now of type IJsonSerializerSettingsProvider
quartz-software/kephas,quartz-software/kephas,quartz-software/kephas
src/Kephas.Serialization.NewtonsoftJson/DefaultJsonSerializerSettingsProvider.cs
mit
1,594,051,820
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="DefaultJsonSerializerSettingsProvider.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICE...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="DefaultJsonSerializerSettingsProvider.cs" company="Kephas Software SRL"> // Copyright (c) Kephas Software SRL. All rights reserved. // Licensed under the MIT license. See LICE...
60c2e454371cfc8e9cd87772965fe3fce8337a42
fix unsubscribe handler.
fix unsubscribe handler.
AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,grokys/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,akrisiun/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,grokys/Perspex,Perspex/Perspex,Perspex/Perspex,jkoritzinsky/Avalonia,akrisiun/Perspex,AvaloniaUI...
src/Avalonia.Controls/ExperimentalAcrylicBorder.cs
mit
1,594,051,744
using Avalonia.Controls.Utils; using Avalonia.Layout; using Avalonia.Media; using Avalonia.Platform; using System; namespace Avalonia.Controls { public class ExperimentalAcrylicBorder : Decorator { public static readonly StyledProperty<CornerRadius> CornerRadiusProperty = Border.CornerRadi...
using Avalonia.Controls.Utils; using Avalonia.Layout; using Avalonia.Media; using Avalonia.Platform; using System; namespace Avalonia.Controls { public class ExperimentalAcrylicBorder : Decorator { public static readonly StyledProperty<CornerRadius> CornerRadiusProperty = Border.CornerRadi...
c56a63eb1cc046e43152470969cbe58a17d3b67d
BUGFIX: Use correct column indices for event rows..
BUGFIX: Use correct column indices for event rows..
Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver
src/AsmResolver.PE/DotNet/Metadata/Tables/Rows/EventDefinitionRow.cs
mit
1,594,051,246
// AsmResolver - Executable file format inspection library // Copyright (C) 2016-2019 Washi // // 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 // version 3.0 of the License, o...
// AsmResolver - Executable file format inspection library // Copyright (C) 2016-2019 Washi // // 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 // version 3.0 of the License, o...
4e2d1fe16892fd5dcb3783d0e418fb3630e9e81b
Why isn't the detach message sending?
Why isn't the detach message sending?
tgstation/tgstation-server-tools,tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server
src/Tgstation.Server.Host/Components/Watchdog/WatchdogBase.cs
agpl-3.0
1,594,050,930
using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Serilog.Context; 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 Serilog.Context; 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....
e79570ac159f98eb4caff11609c283a98e52f921
Added early return
Added early return Added early return for null ports
PyramidTechnologies/ThermalTalk,PyramidTechnologies/ThermalTalk
ThermalTalk.QueryStatus/Program.cs
mit
1,594,050,804
using System.Linq; namespace ThermalTalk.QueryStatus { using System; /// <summary> /// Simple console app to query the printer status /// </summary> internal class Program { public static void Main(string[] args) { var reliancePort = args.FirstOrDefault(); ...
using System.Linq; namespace ThermalTalk.QueryStatus { using System; /// <summary> /// Simple console app to query the printer status /// </summary> internal class Program { public static void Main(string[] args) { var reliancePort = args.FirstOrDefault(); ...
80de1e75882545694f345f8967a29ea8a07cc127
Quarantine test (#23636)
Quarantine test (#23636)
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MvcBuildIntegrationTestLegacy.cs
apache-2.0
1,594,050,573
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; using System.Threading.Tasks; using Microsoft.AspNetCore.Testing; using Xunit; namespace Microsoft.AspNetCore.Razor.Des...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; using System.Threading.Tasks; using Microsoft.AspNetCore.Testing; using Xunit; namespace Microsoft.AspNetCore.Razor.Des...
86c8caf1ea5feeab8adecc5bfd5d98fcef1affb8
Fix commit cfab1a04fb6c3d97e8849913bd95114fe4037d34
Fix commit cfab1a04fb6c3d97e8849913bd95114fe4037d34
StockSharp/StockSharp
Algo/Strategies/Testing/BatchEmulation.cs
apache-2.0
1,594,050,449
namespace StockSharp.Algo.Strategies.Testing { using System; using System.Collections.Generic; using System.Linq; using Ecng.Collections; using Ecng.Common; using Ecng.Serialization; using MoreLinq; using StockSharp.Algo.Storages; using StockSharp.Algo.Testing; using StockSharp.BusinessEntities; using Sto...
namespace StockSharp.Algo.Strategies.Testing { using System; using System.Collections.Generic; using System.Linq; using Ecng.Collections; using Ecng.Common; using Ecng.Serialization; using MoreLinq; using StockSharp.Algo.Storages; using StockSharp.Algo.Testing; using StockSharp.BusinessEntities; using Sto...
82b51ba4872520b99bba6a08e9ca05cad55aff6b
Added error message for port name
Added error message for port name Ports are now specified for the QueryStatus console app as args
PyramidTechnologies/ThermalTalk,PyramidTechnologies/ThermalTalk
ThermalTalk.QueryStatus/Program.cs
mit
1,594,050,278
using System.Linq; namespace ThermalTalk.QueryStatus { using System; /// <summary> /// Simple console app to query the printer status /// </summary> internal class Program { public static void Main(string[] args) { var reliancePort = args.FirstOrDefault(); ...
namespace ThermalTalk.QueryStatus { using System; /// <summary> /// Simple console app to query the printer status /// </summary> internal class Program { public static void Main(string[] args) { const string reliancePort = "COM12"; using (var printer =...
9cbc411dfd7a2beb184086f3cf377a699c47faf3
Added support for TLS1.2.
Added support for TLS1.2.
metageek-llc/Magpie,ashokgelal/Magpie
src/Magpie/Magpie/Services/DefaultRemoteContentDownloader.cs
mit
1,594,049,908
using System; using System.Net; using System.Threading.Tasks; using MagpieUpdater.Interfaces; namespace MagpieUpdater.Services { internal class DefaultRemoteContentDownloader : IRemoteContentDownloader { public DefaultRemoteContentDownloader() { ServicePointManager.Expect100Continu...
using System; using System.Net; using System.Threading.Tasks; using MagpieUpdater.Interfaces; namespace MagpieUpdater.Services { internal class DefaultRemoteContentDownloader : IRemoteContentDownloader { public async Task<string> DownloadStringContent(string url, IDebuggingInfoLogger logger = null) ...
2b9e4d52bcb3aaaac195ae9952245e4459f4620b
Fix commit cfab1a04fb6c3d97e8849913bd95114fe4037d34
Fix commit cfab1a04fb6c3d97e8849913bd95114fe4037d34
StockSharp/StockSharp
Messages/InMemoryMessageChannel.cs
apache-2.0
1,594,049,681
#region S# License /****************************************************************************************** NOTICE!!! This program and source code is owned and licensed by StockSharp, LLC, www.stocksharp.com Viewing or use of this code requires your acceptance of the license agreement found at https://github.com/St...
#region S# License /****************************************************************************************** NOTICE!!! This program and source code is owned and licensed by StockSharp, LLC, www.stocksharp.com Viewing or use of this code requires your acceptance of the license agreement found at https://github.com/St...
2b8a2c98d3e7fcb52b63efca3b8bfb01269b94da
Documentation
Documentation Added further documentation to console application
PyramidTechnologies/ThermalTalk,PyramidTechnologies/ThermalTalk
ThermalTalk.QueryStatus/Program.cs
mit
1,594,049,402
namespace ThermalTalk.QueryStatus { using System; /// <summary> /// Simple console app to query the printer status /// </summary> internal class Program { public static void Main(string[] args) { const string reliancePort = "COM12"; using (var printer =...
namespace ThermalTalk.QueryStatus { using System; /// <summary> /// Simple console app to query /// </summary> internal class Program { public static void Main(string[] args) { const string reliancePort = "COM12"; using (var printer = new ReliancePrint...
b69ece3d72ffed1ad88c6fec45d0b9d7dbf6da9a
Remove leftover xmldoc from old API.
Remove leftover xmldoc from old API.
Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver
src/AsmResolver.PE/Win32Resources/SerializedResourceData.cs
mit
1,594,049,109
// AsmResolver - Executable file format inspection library // Copyright (C) 2016-2019 Washi // // 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 // version 3.0 of the License, o...
// AsmResolver - Executable file format inspection library // Copyright (C) 2016-2019 Washi // // 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 // version 3.0 of the License, o...
cc0217b449055469c75fa4acd58bd6630be91562
Add rounding tests
Add rounding tests
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/UnitTests/NBitcoinTests.cs
mit
1,594,048,682
using NBitcoin; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xunit; namespace WalletWasabi.Tests.UnitTests { public class NBitcoinTests { [Fact] public void DefaultPortsMatch() { Assert.Equal(WalletWasabi.Helpers.Constants.DefaultMainNetBitcoinCoreRpcPort, Netw...
using NBitcoin; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xunit; namespace WalletWasabi.Tests.UnitTests { public class NBitcoinTests { [Fact] public void DefaultPortsMatch() { Assert.Equal(WalletWasabi.Helpers.Constants.DefaultMainNetBitcoinCoreRpcPort, Netw...
82631e66c6c066b689736cafca0fa62c160f3538
Upped version to 2.34.0
Upped version to 2.34.0
ShadowNoire/NadekoBot,ShadowNoire/NadekoBot
NadekoBot.Core/Services/Impl/StatsService.cs
mit
1,594,048,559
using Discord; using Discord.WebSocket; using NadekoBot.Extensions; using NLog; using StackExchange.Redis; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net.Http; using System.Runtime.InteropServices; using System.Security.Cryptography; using System.Text; u...
using Discord; using Discord.WebSocket; using NadekoBot.Extensions; using NLog; using StackExchange.Redis; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net.Http; using System.Runtime.InteropServices; using System.Security.Cryptography; using System.Text; u...
7329494283cf63bfaf0b0a905c4919f17bf91dae
fix erroneous flag set (#441)
fix erroneous flag set (#441)
minio/minio-dotnet
Minio/V4Authenticator.cs
apache-2.0
1,594,048,215
/* * MinIO .NET Library for Amazon S3 Compatible Cloud Storage, (C) 2017, 2020 MinIO, Inc. * * 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/LICEN...
/* * MinIO .NET Library for Amazon S3 Compatible Cloud Storage, (C) 2017, 2020 MinIO, Inc. * * 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/LICEN...
1adf6a5e06211928f17207d1cdd60119f471f76c
Fix checking of invalid parts
Fix checking of invalid parts
DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer
LmpClient/Extensions/ProtoVesselExtension.cs
mit
1,594,048,117
using LmpClient.Systems.Chat; using LmpClient.Systems.Flag; using LmpClient.Systems.Mod; using System; using System.Linq; namespace LmpClient.Extensions { public static class ProtoVesselExtension { /// <summary> /// Finds a proto part snapshot in a proto vessel without generating garbage. Retu...
using LmpClient.Systems.Chat; using LmpClient.Systems.Flag; using LmpClient.Systems.Mod; using System; using System.Linq; namespace LmpClient.Extensions { public static class ProtoVesselExtension { /// <summary> /// Finds a proto part snapshot in a proto vessel without generating garbage. Retu...
1f91242fd461380cdeeaa9248e18136cf2e8eb8e
fix log message
fix log message
AdamsLair/duality
Test/Editor/InitDualityEditorAttribute.cs
mit
1,594,047,875
using System; using Duality.Editor.Forms; using NUnit.Framework; using NUnit.Framework.Interfaces; namespace Duality.Editor.Tests { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] public class InitDualityEditorAttribute : Attribute, ITestAction { private string oldEnvDir = null; priva...
using System; using Duality.Editor.Forms; using NUnit.Framework; using NUnit.Framework.Interfaces; namespace Duality.Editor.Tests { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] public class InitDualityEditorAttribute : Attribute, ITestAction { private string oldEnvDir = null; priva...
85461855a3fd94254d13e524eb7dd448763311b0
fix log message
fix log message
AdamsLair/duality
Test/Core/InitDualityAttribute.cs
mit
1,594,047,783
using System; using Duality.Launcher; using NUnit.Framework; using NUnit.Framework.Interfaces; namespace Duality.Tests { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] public class InitDualityAttribute : Attribute, ITestAction { private string oldEnvDir = null; private CorePlugin u...
using System; using Duality.Launcher; using NUnit.Framework; using NUnit.Framework.Interfaces; namespace Duality.Tests { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] public class InitDualityAttribute : Attribute, ITestAction { private string oldEnvDir = null; private CorePlugin u...
0c4bdd18af2ad9775a241323d89eaa5c67b4f790
Print transformation summary for copy-class
Print transformation summary for copy-class Fixes #69
jumpinjackie/fdotoolbox,jumpinjackie/fdotoolbox
FdoCmd/Commands/CopyClassCommand.cs
lgpl-2.1
1,594,047,459
#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 /...
ebdb60db9e522b2e63e193bd55b5164638a6536e
TryRetrieve
TryRetrieve
signumsoftware/framework,signumsoftware/framework,signumsoftware/framework
Signum.Engine/Database.cs
mit
1,594,047,422
using Signum.Engine.Linq; using Signum.Engine.Maps; using Signum.Entities; using Signum.Entities.Basics; using Signum.Entities.Internal; using Signum.Utilities; using Signum.Utilities.ExpressionTrees; using Signum.Utilities.Reflection; using System; using System.Collections; using System.Collections.Generic; ...
using Signum.Engine.Linq; using Signum.Engine.Maps; using Signum.Entities; using Signum.Entities.Basics; using Signum.Entities.Internal; using Signum.Utilities; using Signum.Utilities.ExpressionTrees; using Signum.Utilities.Reflection; using System; using System.Collections; using System.Collections.Generic; ...
23fa4803629d2df439497a1d698398057dba5ebf
CHG - Cambiato ordine lista eventi - L'evento più recente ora è in alto
CHG - Cambiato ordine lista eventi - L'evento più recente ora è in alto
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Queries/GestioneSoccorso/ListaEventi/ListaEventiQueryHandler.cs
agpl-3.0
1,594,047,079
//----------------------------------------------------------------------- // <copyright file="ListaEventiQueryHandler.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 Pub...
//----------------------------------------------------------------------- // <copyright file="ListaEventiQueryHandler.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 Pub...
3f3bfb1ffbe001ed4016b6750ff830c5f983279b
Minor reshuffling / recolouring
Minor reshuffling / recolouring
ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu-new,smoogipoo/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,ppy/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipooo/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu
osu.Game/Screens/Menu/StorageErrorDialog.cs
mit
1,594,047,076
// 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.Graphics.Sprites; using osu.Game.IO; using osu.Game.Overlays; using osu.Game.Overlay...
// 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.Graphics.Sprites; using osu.Game.IO; using osu.Game.Overlays; using osu.Game.Overlay...
08362b29a6410162aafc657dfa62f14e0017de8a
fix codefactor
fix codefactor
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/AddressMoneyTuple.cs
mit
1,594,045,748
using NBitcoin; using System; namespace WalletWasabi.Gui.Controls.WalletExplorer { public struct AddressMoneyTuple : IEquatable<AddressMoneyTuple> { public AddressMoneyTuple(string address = null, Money amount = null, bool isEmpty = true) { Address = address; Amount = amount; IsEmpty = isEmpty; } pu...
using NBitcoin; using System; namespace WalletWasabi.Gui.Controls.WalletExplorer { public struct AddressMoneyTuple : IEquatable<AddressMoneyTuple> { public AddressMoneyTuple(string address = null, Money amount = null, bool isEmpty = true) { Address = address; Amount = amount; IsEmpty = isEmpty; } p...
474cf9404a7ada3f88ee304ef9d5383047e37a55
Fix a bug invalid rendering order is exported
Fix a bug invalid rendering order is exported
effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer,effekseer/Effekseer
Dev/Editor/EffekseerCore/Binary/Exporter.cs
mit
1,594,045,310
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using Effekseer.Utl; using Effekseer.Data; namespace Effekseer.Binary { public enum ExporterVersion { Ver1500 = 1500, Ver1600 = 1600, #if __EFFEKSEER_BUILD_VERSION16__ Latest = 1600, #e...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using Effekseer.Utl; using Effekseer.Data; namespace Effekseer.Binary { public enum ExporterVersion { Ver1500 = 1500, Ver1600 = 1600, #if __EFFEKSEER_BUILD_VERSION16__ Latest = 1600, #e...
66dcdfe6bfe990f7f3c758f96466ed17589369a7
Ajustes na sequencia do registro geral banco SICREDI
Ajustes na sequencia do registro geral banco SICREDI
rafd75/boleto2net,BoletoNet/boleto2net,rafd75/boleto2net,BoletoNet/boleto2net
Boleto2.Net/Banco/BancoSicredi.cs
apache-2.0
1,594,043,548
using System.Collections.Generic; using Boleto2Net.Exceptions; using System.Web.UI; using System; [assembly: WebResource("Boleto2Net.Imagens.748.jpg", "image/jpg")] namespace Boleto2Net { internal sealed class BancoSicredi : IBanco { internal static Lazy<IBanco> Instance { get; } = new Lazy<IBanco>(()...
using System.Collections.Generic; using Boleto2Net.Exceptions; using System.Web.UI; using System; [assembly: WebResource("Boleto2Net.Imagens.748.jpg", "image/jpg")] namespace Boleto2Net { internal sealed class BancoSicredi : IBanco { internal static Lazy<IBanco> Instance { get; } = new Lazy<IBanco>(()...
0a03ab012c3f7b229e02bcce5f69ab26c6bfe58e
Increased .feed limit per server to 10
Increased .feed limit per server to 10
ShadowNoire/NadekoBot,ShadowNoire/NadekoBot
NadekoBot.Core/Modules/Searches/Services/FeedsService.cs
mit
1,594,043,065
using CodeHollow.FeedReader.Feeds; using Discord; using Discord.WebSocket; using Microsoft.EntityFrameworkCore; using NadekoBot.Core.Services; using NadekoBot.Core.Services.Database.Models; using NadekoBot.Extensions; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Lin...
using CodeHollow.FeedReader.Feeds; using Discord; using Discord.WebSocket; using Microsoft.EntityFrameworkCore; using NadekoBot.Core.Services; using NadekoBot.Core.Services.Database.Models; using NadekoBot.Extensions; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Lin...
00a2fbce06ac67d5bc077f10e43c302c98af629e
Fix test failures
Fix test failures
smoogipooo/osu,UselessToucan/osu,peppy/osu-new,peppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,ppy/osu,ppy/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu
osu.Game/IO/OsuStorage.cs
mit
1,594,042,918
// 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.Threading; using JetBrains.Annotations; using osu.Framework.Logging; using osu.Fr...
// 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.Threading; using JetBrains.Annotations; using osu.Framework.Logging; using osu.Fr...
ddac511c8c5c3b4ef641c1a80e4e9dbbe6359ce4
Move start fresh button above
Move start fresh button above
UselessToucan/osu,ppy/osu,ppy/osu,peppy/osu-new,NeoAdonis/osu,peppy/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu
osu.Game/Screens/Menu/MainMenu.cs
mit
1,594,042,911
// 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 osuTK; using osuTK.Graphics; using osu.Framework.Allocation; using osu.Framework.Audio.Track; 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.Linq; using osuTK; using osuTK.Graphics; using osu.Framework.Allocation; using osu.Framework.Audio.Track; usi...
8f792603ee6b03d19bba1ffc7d74203904205a35
Apply suggestions from code review
Apply suggestions from code review Co-authored-by: Dean Herbert <1db828bcd41de75377dce59825af73ae7fca5651@ppy.sh>
peppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipooo/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,smoogipoo/osu
osu.Game/Screens/Menu/MainMenu.cs
mit
1,594,042,845
// 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 osuTK; using osuTK.Graphics; using osu.Framework.Allocation; using osu.Framework.Audio.Track; 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.Linq; using osuTK; using osuTK.Graphics; using osu.Framework.Allocation; using osu.Framework.Audio.Track; usi...
6207616ee9144d4f111144d8764ad80c28ee613f
Assert that ContentChanged event was fired
Assert that ContentChanged event was fired
ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,EVA...
osu.Framework.Tests/Visual/Layout/TestSceneGridContainer.cs
mit
1,594,042,557
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using NUnit.Framework; using osu.Framework.Extensions; using osu.Framework.Extensions.IEnumerableExtensions; using osu.Framework.Graphics...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using NUnit.Framework; using osu.Framework.Extensions; using osu.Framework.Extensions.IEnumerableExtensions; using osu.Framework.Graphics...
3cbbcd7fe69bc5218104b910a23f6dcd197134e1
Fix - Tolto controllo ruoli sulla deleteChiamataInCorso
Fix - Tolto controllo ruoli sulla deleteChiamataInCorso
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/CancellazioneChiamataInCorsoMarker/CancellazioneChiamataInCorsoMarkerAuthorization.cs
agpl-3.0
1,594,042,165
//----------------------------------------------------------------------- // <copyright file="CancellazioneChiamataInCorsoMarkerAuthorization.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 th...
//----------------------------------------------------------------------- // <copyright file="CancellazioneChiamataInCorsoMarkerAuthorization.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 th...
eabe4009e2c501168657745d40761f52d382829b
.feed issues fixed (feeds wouldn't post before bot restart, again?), it will now be much smarter about looking for new posts, and it will post all missed posts since the last check. closes #199
.feed issues fixed (feeds wouldn't post before bot restart, again?), it will now be much smarter about looking for new posts, and it will post all missed posts since the last check. closes #199
ShadowNoire/NadekoBot,ShadowNoire/NadekoBot
NadekoBot.Core/Modules/Searches/Services/FeedsService.cs
mit
1,594,041,842
using CodeHollow.FeedReader.Feeds; using Discord; using Discord.WebSocket; using Microsoft.EntityFrameworkCore; using NadekoBot.Core.Services; using NadekoBot.Core.Services.Database.Models; using NadekoBot.Extensions; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Lin...
using CodeHollow.FeedReader.Feeds; using Discord; using Discord.WebSocket; using Microsoft.EntityFrameworkCore; using NadekoBot.Core.Services; using NadekoBot.Core.Services.Database.Models; using NadekoBot.Extensions; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Lin...
513f3e2a4189a8ccb519e69d86bc837f9d94e3ce
[Util] Fix Windows platform detection, use correct PlatformID
[Util] Fix Windows platform detection, use correct PlatformID
ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake
Sharpmake/Util.cs
apache-2.0
1,594,041,563
// Copyright (c) 2017 Ubisoft Entertainment // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
// Copyright (c) 2017 Ubisoft Entertainment // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
6cafe59ec3e7f33f94cd00e0bc577c86c88e415d
Added missing positionSide parameter modify position margin
Added missing positionSide parameter modify position margin
JKorf/Binance.Net
Binance.Net/BinanceFuturesClient.cs
mit
1,594,041,373
using Binance.Net.Converters; using Binance.Net.Objects; using CryptoExchange.Net; using CryptoExchange.Net.Authentication; using CryptoExchange.Net.Converters; using CryptoExchange.Net.Logging; using CryptoExchange.Net.Objects; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections....
using Binance.Net.Converters; using Binance.Net.Objects; using CryptoExchange.Net; using CryptoExchange.Net.Authentication; using CryptoExchange.Net.Converters; using CryptoExchange.Net.Logging; using CryptoExchange.Net.Objects; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections....
f470feb41e9ef947d462e62ffb7e436adcf304d4
Make property public
Make property public
smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framew...
osu.Framework/Graphics/UserInterface/TabControl.cs
mit
1,594,041,268
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using JetBrains.Annotations; using osu.Framework.Bindables; using osu.Framew...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using JetBrains.Annotations; using osu.Framework.Bindables; using osu.Framew...
f2e7a3cb559c13b38e4d260a49194f5905b54814
Apply suggestions from code review
Apply suggestions from code review Co-authored-by: Bartłomiej Dach <809709723693c4e7ecc6f5379a3099c830279741@gmail.com>
ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-fram...
osu.Framework/Graphics/UserInterface/TabControl.cs
mit
1,594,041,016
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using JetBrains.Annotations; using osu.Framework.Bindables; using osu.Framew...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using JetBrains.Annotations; using osu.Framework.Bindables; using osu.Framew...
ec4ad7d2a7ab0b185ab7d9c015560c0c48d45093
Add xmldoc
Add xmldoc
ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-fr...
osu.Framework/Graphics/Containers/GridContainerContent.cs
mit
1,594,040,804
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; namespace osu.Framework.Graphics.Containers { /// <summary> /// Implements a jagged array behavior with element change notifications /// </sum...
// 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; namespace osu.Framework.Graphics.Containers { public class GridContainerContent { public event Action ContentChanged; public Grid...
0c244d19d99aca99e9fe70336550f709a337f834
Remove " from error response.
Remove " from error response.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Extensions/HttpResponseMessageExtensions.cs
mit
1,594,040,573
using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using WalletWasabi.Http.Models; using WalletWasabi.Logging; using static WalletWasabi.Http.Constants; namespace System.Net.Http { public static class HttpResponseMessageExtensions { public static async Task<HttpResponseMessage> Cr...
using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using WalletWasabi.Http.Models; using WalletWasabi.Logging; using static WalletWasabi.Http.Constants; namespace System.Net.Http { public static class HttpResponseMessageExtensions { public static async Task<HttpResponseMessage> Cr...
dbbee481f60b21911b5c67fa1d575272ac7a3a25
Expose dialog body text getter
Expose dialog body text getter
ppy/osu,NeoAdonis/osu,smoogipooo/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,peppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu
osu.Game/Overlays/Dialog/PopupDialog.cs
mit
1,594,040,505
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Containe...
// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Containe...
02a4485f69b9a18965cecfef14b92b4822efa337
Clean up naming and parameters
Clean up naming and parameters
EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framewor...
osu.Framework/Graphics/UserInterface/TextBox.cs
mit
1,594,039,569
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Caching; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Spr...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Caching; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Spr...
9a37de67447a54ec5126f1a0ec2c7b8ed0beaf1a
Fix tooltip on zero balance
Fix tooltip on zero balance
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/WalletViewModel.cs
mit
1,594,039,165
using AvalonStudio.Extensibility; using AvalonStudio.Shell; using NBitcoin; using ReactiveUI; using Splat; using System; using System.Collections.ObjectModel; using System.Linq; using System.Reactive; using System.Reactive.Disposables; using System.Reactive.Linq; using WalletWasabi.Blockchain.Keys; using WalletWasabi.G...
using AvalonStudio.Extensibility; using AvalonStudio.Shell; using NBitcoin; using ReactiveUI; using Splat; using System; using System.Collections.ObjectModel; using System.Linq; using System.Reactive; using System.Reactive.Disposables; using System.Reactive.Linq; using WalletWasabi.Blockchain.Keys; using WalletWasabi.G...
8cf3b04ff6856133192403ac2fad44b7c6dcd4bb
fix conflict
fix conflict
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/UpDateIntervento/UpDateInterventoCommandHandler.cs
agpl-3.0
1,594,039,011
//----------------------------------------------------------------------- // <copyright file="UpDateInterventoCommandHandler.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 Gene...
//----------------------------------------------------------------------- // <copyright file="UpDateInterventoCommandHandler.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 Gene...
8d63573a2ea5dbf9b7f164ce25255b30216636e2
Fix - Aggiunti i tags nell'update
Fix - Aggiunti i tags nell'update
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Commands/GestioneSoccorso/GestioneIntervento/UpDateIntervento/UpDateInterventoCommandHandler.cs
agpl-3.0
1,594,038,590
//----------------------------------------------------------------------- // <copyright file="UpDateInterventoCommandHandler.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 Gene...
//----------------------------------------------------------------------- // <copyright file="UpDateInterventoCommandHandler.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 Gene...
ae13d51d9ab6520cc6b443247437a39088c41c5b
If Backend tells the Synchronizer that not found, then backend status shall not be connected.
If Backend tells the Synchronizer that not found, then backend status shall not be connected.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Services/WasabiSynchronizer.cs
mit
1,594,037,894
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
5b5d7dca2ab704efce862ddfe00238c9e89ae3a7
[Modify] Edit it
[Modify] Edit it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,594,037,850
#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-...
48cada685638396ee34937c845f92c0c4f547230
[Modify] Replace it
[Modify] Replace it
sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp
websocket-sharp/Net/WebHeaderCollection.cs
mit
1,594,037,707
#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-...
f5b5438ec92018cd89a8da35c1dce50de4998819
Add HandleIfGenSocksServFail
Add HandleIfGenSocksServFail
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Services/WasabiSynchronizer.cs
mit
1,594,037,151
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
23a8aeefbd6b169aa770fcdc2c4aa1f99fd02988
Fix conflict
Fix conflict
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Services/WasabiSynchronizer.cs
mit
1,594,037,076
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
4b6a488a61c9f9d9ced133e28200b5d2f23632ca
Move fix to a separate exc clause
Move fix to a separate exc clause
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Services/WasabiSynchronizer.cs
mit
1,594,036,906
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks;...
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Bac...
3ee640a0bbae9ce331a5129affbda9537a7a02e2
Fixed copy-and-paste error in Comprehend example in C#
Fixed copy-and-paste error in Comprehend example in C#
awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,a...
dotnet/example_code_legacy/comprehend/ComprehendSamples1/DetectEntities.cs
apache-2.0
1,594,036,899
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 // snippet-start:[comprehend.dotNET.DetectEntities] using System; using Amazon; using Amazon.Comprehend; using Amazon.Comprehend.Model; namespace ComprehendSamples1 { class DetectEntities { public s...
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 // snippet-start:[comprehend.dotNET.DetectEntities] using System; using Amazon; using Amazon.Comprehend; using Amazon.Comprehend.Model; namespace ComprehendSamples1 { class DetectEntities { public s...
c1bcf8cd6b682d2a3c984834d6af5204946e94fb
Move up TorStatus = TorStatus.Running;
Move up TorStatus = TorStatus.Running;
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Services/WasabiSynchronizer.cs
mit
1,594,036,067
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Bac...
using NBitcoin; using NBitcoin.RPC; using Nito.AsyncEx; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Bac...
dd1a5865da1ae2920eaf3b6ead78687d99aa0154
Update GeigerCounter.cs
Update GeigerCounter.cs
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Tool/GeigerCounter.cs
agpl-3.0
1,594,035,423
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using Random = UnityEngine.Random; public class GeigerCounter : MonoBehaviour, IInteractable<HandActivate>, IServerInventoryMove { private Dictionary<GeigerCounter.Level, List<string>> Noise = new Dictionary<Level, List<stri...
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using Random = UnityEngine.Random; public class GeigerCounter : MonoBehaviour, IInteractable<HandActivate>, IServerInventoryMove { private Dictionary<GeigerCounter.Level, List<string>> Noise = new Dictionary<Level, List<stri...
a48e4ee120a104ace87d5d695c14258ddcbc935c
geigerCounter sound fix
geigerCounter sound fix
fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation
UnityProject/Assets/Scripts/Tool/GeigerCounter.cs
agpl-3.0
1,594,034,807
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using Random = UnityEngine.Random; public class GeigerCounter : MonoBehaviour, IInteractable<HandActivate>, IServerInventoryMove { private Dictionary<GeigerCounter.Level, List<string>> Noise = new Dictionary<Level, List<stri...
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using Random = UnityEngine.Random; public class GeigerCounter : MonoBehaviour, IInteractable<HandActivate>, IServerInventoryMove { private Dictionary<GeigerCounter.Level, List<string>> Noise = new Dictionary<Level, List<stri...
e8de82ec1b221a4fe99dac60eb73cbbcbdefae9e
Elevate character limit.
Elevate character limit.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Extensions/HttpResponseMessageExtensions.cs
mit
1,594,033,671
using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using WalletWasabi.Http.Models; using WalletWasabi.Logging; using static WalletWasabi.Http.Constants; namespace System.Net.Http { public static class HttpResponseMessageExtensions { public static async Task<HttpResponseMessage> Cr...
using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using WalletWasabi.Http.Models; using WalletWasabi.Logging; using static WalletWasabi.Http.Constants; namespace System.Net.Http { public static class HttpResponseMessageExtensions { public static async Task<HttpResponseMessage> Cr...