commit stringlengths 40 40 | subject stringlengths 4 1.73k | repos stringlengths 5 127k | old_file stringlengths 2 751 | new_file stringlengths 2 751 | new_contents stringlengths 1 8.98k | old_contents stringlengths 0 6.59k | license stringclasses 13
values | lang stringclasses 23
values |
|---|---|---|---|---|---|---|---|---|
b2933231cd05f46f1adfc319ddb25980136466d6 | Add summary notes to properties on DayEntry | ithielnor/harvest.net | Harvest.Net/Models/DayEntry.cs | Harvest.Net/Models/DayEntry.cs | using RestSharp.Serializers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Harvest.Net.Models
{
[SerializeAs(Name = "day-entry")]
public class DayEntry : Harvest.Net.Models.IModel
{
public long Id { get; set; }
... | using RestSharp.Serializers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Harvest.Net.Models
{
[SerializeAs(Name = "day-entry")]
public class DayEntry : Harvest.Net.Models.IModel
{
public long Id { get; set; }
... | mit | C# |
6093d5c24b812b2f09d0956d868e7353433d1ef1 | Fix app bar bug | zumicts/Audiotica | Apps/Audiotica.WindowsPhone/View/CollectionAlbumPage.xaml.cs | Apps/Audiotica.WindowsPhone/View/CollectionAlbumPage.xaml.cs | #region
using Windows.UI.StartScreen;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Audiotica.ViewModel;
using GalaSoft.MvvmLight.Messaging;
#endregion
namespace Audiotica.View
{
public sealed partial class CollectionAlbumPage
{
public CollectionAlbumPage()
{
Initi... | #region
using Windows.UI.StartScreen;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Audiotica.ViewModel;
using GalaSoft.MvvmLight.Messaging;
#endregion
namespace Audiotica.View
{
public sealed partial class CollectionAlbumPage
{
public CollectionAlbumPage()
{
Initi... | apache-2.0 | C# |
235d113973e6985e68e350d97d9e3c2510f83e1c | Update assertion error message | lordmilko/PrtgAPI,lordmilko/PrtgAPI | PrtgAPI.Tests.UnitTests/ObjectTests/SensorTests.cs | PrtgAPI.Tests.UnitTests/ObjectTests/SensorTests.cs | using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PrtgAPI.Tests.UnitTests.ObjectTests.Items;
using PrtgAPI.Tests.UnitTests.ObjectTests.Responses;
namespace PrtgAPI.Tests.UnitTests.ObjectTests
{
[TestClass]
public class Sens... | using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PrtgAPI.Tests.UnitTests.ObjectTests.Items;
using PrtgAPI.Tests.UnitTests.ObjectTests.Responses;
namespace PrtgAPI.Tests.UnitTests.ObjectTests
{
[TestClass]
public class Sens... | mit | C# |
448f66ea7f46e0dc78297fd6fc2fee11dcfd1c52 | Implement analyzing skeleton | occar421/OpenTKAnalyzer | src/OpenTKAnalyzer/OpenTKAnalyzer/OpenTK/RotationValueOpenTKMathAnalyzer.cs | src/OpenTKAnalyzer/OpenTKAnalyzer/OpenTK/RotationValueOpenTKMathAnalyzer.cs | using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace Ope... | using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace Ope... | mit | C# |
2317e38cbd3083912619eff1cfba381ea8fe63ae | Update main.cs | eightyeight/vlrtt,eightyeight/vlrtt | modules/stateMachine/main.cs | modules/stateMachine/main.cs | function StateMachine::onEvent(%this, %event) {
// See if there's a transition callback ssociated with this event.
%script = "on" @ %event;
if(%this.isMethod(%script)) {
%this.call(%script);
}
// Figure out the new state to transition to.
%newState = %this.transition[%this.state, %event];
/... | function StateMachine::onEvent(%this, %event) {
// See if there's a transition callback ssociated with this event.
%script = "on" @ %event;
if(%this.isMethod(%script)) {
%this.call(%script);
}
// Figure out the new state to transition to.
%trans = %this.transition[%this.state, %event];
// I... | mit | C# |
2cad479e1bb7f2abd174b89e187dd9def1965067 | Improve InvokerCOMException class design | NetOfficeFw/NetOffice | Source/NetOffice/Exceptions/InvokerCOMException.cs | Source/NetOffice/Exceptions/InvokerCOMException.cs | using System;
namespace NetOffice.Exceptions
{
/// <summary>
/// Indicates a failed invoke operation.
/// </summary>
public abstract class InvokerCOMException : NetOfficeCOMException
{
/// <summary>
/// Creates an instance of the InvokerCOMException class.
/// </summary>
... | using System;
namespace NetOffice.Exceptions
{
/// <summary>
/// Indicates a failed invoke operation
/// </summary>
public abstract class InvokerCOMException : NetOfficeCOMException
{
/// <summary>
/// Creates an instance of the class
/// </summary>
/// <param name=... | mit | C# |
f9464773543dee7bcde5be46b61a4d3efe1c5ad7 | correct test | OlegKleyman/Omego.Selenium | tests/unit/Omego.Selenium.Tests.Unit/Extensions/WebDriverExtensionsTests.cs | tests/unit/Omego.Selenium.Tests.Unit/Extensions/WebDriverExtensionsTests.cs | namespace Omego.Selenium.Tests.Unit.Extensions
{
using System;
using System.Collections.Generic;
using System.Drawing.Imaging;
using FluentAssertions;
using NSubstitute;
using Selenium.Extensions;
using OpenQA.Selenium;
using Xunit;
public class WebDriverExtensionsTests
{
... | namespace Omego.Selenium.Tests.Unit.Extensions
{
using System;
using System.Collections.Generic;
using System.Drawing.Imaging;
using FluentAssertions;
using NSubstitute;
using Selenium.Extensions;
using OpenQA.Selenium;
using Xunit;
public class WebDriverExtensionsTests
{
... | unlicense | C# |
806d109a8ccf9a4c5c919f180ad5a97eb912ac24 | Fix failing tests on Travis | plivo/plivo-dotnet,plivo/plivo-dotnet | tests/Plivo.Test/TestSignature.cs | tests/Plivo.Test/TestSignature.cs | using System;
using NUnit.Framework;
namespace Plivo.Test
{
[TestFixture]
public class TestSignature
{
[Test]
public void TestSignatureV2Pass()
{
string url = "https://answer.url";
string nonce = "12345";
string signature = "ehV3IKhLysWBxC1sy8... | using System;
using NUnit.Framework;
namespace Plivo.Test
{
[TestFixture]
public class TestSignature
{
[Test]
public void TestSignatureV2Pass()
{
string url = "https://answer.url";
string nonce = "12345";
string signature = "ehV3IKhLysWBxC1sy8... | mit | C# |
7abe566c0f574183bd5d74fd206063cf911cf23d | Make ExtraCC and ExtraEmail optional - fixes #385 | Didux/MvvmCross-Plugins,MatthewSannes/MvvmCross-Plugins,lothrop/MvvmCross-Plugins,martijn00/MvvmCross-Plugins | Cirrious/Email/Cirrious.MvvmCross.Plugins.Email.Droid/MvxComposeEmailTask.cs | Cirrious/Email/Cirrious.MvvmCross.Plugins.Email.Droid/MvxComposeEmailTask.cs | // MvxComposeEmailTask.cs
// (c) Copyright Cirrious Ltd. http://www.cirrious.com
// MvvmCross is licensed using Microsoft Public License (Ms-PL)
// Contributions and inspirations noted in readme.md and license.txt
//
// Project Lead - Stuart Lodge, @slodge, me@slodge.com
using Android.Content;
using Cirrious.CrossCor... | // MvxComposeEmailTask.cs
// (c) Copyright Cirrious Ltd. http://www.cirrious.com
// MvvmCross is licensed using Microsoft Public License (Ms-PL)
// Contributions and inspirations noted in readme.md and license.txt
//
// Project Lead - Stuart Lodge, @slodge, me@slodge.com
using Android.Content;
using Cirrious.CrossCor... | mit | C# |
269ce605a289cb866ab211c9a9a22f28fd83e19b | rename user management to users | neurral/enterprise,neurral/enterprise,neurral/enterprise,neurral/enterprise | Enterprise/Enterprise.Web/Modules/Administration/AdministrationNavigation.cs | Enterprise/Enterprise.Web/Modules/Administration/AdministrationNavigation.cs | using Serenity.Navigation;
using Administration = Enterprise.Administration.Pages;
[assembly: NavigationMenu(1000, "Administration", icon: "fa-gear")]
[assembly: NavigationLink(1000, "Administration/Roles", typeof(Administration.RoleController), icon: "icon-lock")]
[assembly: NavigationLink(1000, "Administration/User... | using Serenity.Navigation;
using Administration = Enterprise.Administration.Pages;
[assembly: NavigationMenu(1000, "Administration", icon: "fa-gear")]
[assembly: NavigationLink(1000, "Administration/Roles", typeof(Administration.RoleController), icon: "icon-lock")]
[assembly: NavigationLink(1000, "Administration/User... | mit | C# |
5d0ae85a61dc5d20117e77f24950ccc8ac079c0e | Update IComparisonOperators.cs | Flepper/flepper,Flepper/flepper | Flepper.QueryBuilder/Operators/Comparison/Interfaces/IComparisonOperators.cs | Flepper.QueryBuilder/Operators/Comparison/Interfaces/IComparisonOperators.cs | namespace Flepper.QueryBuilder
{
/// <summary>
/// Comparison Operator Interface
/// </summary>
public interface IComparisonOperators : IQueryCommand
{
/// <summary>
/// Equal Comparison Operator Contract
/// </summary>
/// <param name="value">Value used to compare</... | namespace Flepper.QueryBuilder
{
/// <summary>
/// Comparison Operator Interface
/// </summary>
public interface IComparisonOperators : IQueryCommand
{
/// <summary>
/// Equal Comparison Operator Contract
/// </summary>
/// <param name="value">Value</param>
/... | mit | C# |
b196dd9e3d7a9afb3401530669bbc8681ad8c503 | Fix horizontal scroll for Virtual list | Silphid/Silphid.Unity,Silphid/Silphid.Unity | Sources/Silphid.Showzup/Sources/Controls/ListLayouts/HorizontalListLayout.cs | Sources/Silphid.Showzup/Sources/Controls/ListLayouts/HorizontalListLayout.cs | using Silphid.Extensions;
using UnityEngine;
namespace Silphid.Showzup.ListLayouts
{
public class HorizontalListLayout : ListLayout
{
public float HorizontalSpacing;
public float ItemWidth;
protected float ItemOffsetX => ItemWidth + HorizontalSpacing;
private Rect VisibleRect ... | using Silphid.Extensions;
using UnityEngine;
namespace Silphid.Showzup.ListLayouts
{
public class HorizontalListLayout : ListLayout
{
public float HorizontalSpacing;
public float ItemWidth;
protected float ItemOffsetX => ItemWidth + HorizontalSpacing;
public override ... | mit | C# |
8d1b3e53e631512588b549fe0a0dbd86c2445564 | Fix redundancy | PKI-InVivo/reactive-domain | src/ReactiveDomain.Foundation.Tests/Logging/with_message_logging_disabled.cs | src/ReactiveDomain.Foundation.Tests/Logging/with_message_logging_disabled.cs | using System;
using System.Threading;
using EventStore.ClientAPI;
using ReactiveDomain.Foundation.EventStore;
using ReactiveDomain.Messaging.Testing;
namespace ReactiveDomain.Foundation.Tests.Logging
{
// ReSharper disable once InconsistentNaming
public abstract class with_message_logging_disabled : CommandBu... | using System;
using System.Threading;
using EventStore.ClientAPI;
using ReactiveDomain.Foundation.EventStore;
using ReactiveDomain.Messaging.Testing;
namespace ReactiveDomain.Foundation.Tests.Logging
{
// ReSharper disable once InconsistentNaming
public abstract class with_message_logging_disabled : CommandBu... | mit | C# |
24d9cdad023c8f2c07161d605f545d43202e5208 | Fix bug with test cases not working with different timezone | stranne/Vasttrafik.NET,stranne/Vasttrafik.NET | src/Stranne.VasttrafikNET.Tests/JsonParsing/HistoricalAvailabilityJsonTest.cs | src/Stranne.VasttrafikNET.Tests/JsonParsing/HistoricalAvailabilityJsonTest.cs | using System;
using System.Collections.Generic;
using Stranne.VasttrafikNET.ApiModels.CommuterParking;
using Stranne.VasttrafikNET.Tests.Json;
using Xunit;
namespace Stranne.VasttrafikNET.Tests.JsonParsing
{
public class HistoricalAvailabilityJsonTest : BaseJsonTest
{
protected override string Json =... | using System;
using System.Collections.Generic;
using Stranne.VasttrafikNET.ApiModels.CommuterParking;
using Stranne.VasttrafikNET.Tests.Json;
using Xunit;
namespace Stranne.VasttrafikNET.Tests.JsonParsing
{
public class HistoricalAvailabilityJsonTest : BaseJsonTest
{
protected override string Json =... | mit | C# |
f3e62680640e9aa130cc3ebe7db8073ce43ffca9 | Make polymorphic schema generation opt-in | domaindrivendev/Ahoy,domaindrivendev/Ahoy,domaindrivendev/Ahoy,domaindrivendev/Swashbuckle.AspNetCore,domaindrivendev/Swashbuckle.AspNetCore,domaindrivendev/Swashbuckle.AspNetCore | src/Swashbuckle.AspNetCore.SwaggerGen/SchemaGen/PolymorphicSchemaGenerator.cs | src/Swashbuckle.AspNetCore.SwaggerGen/SchemaGen/PolymorphicSchemaGenerator.cs | using System;
using System.Linq;
using Microsoft.OpenApi.Models;
using Newtonsoft.Json.Serialization;
namespace Swashbuckle.AspNetCore.SwaggerGen
{
public class PolymorphicSchemaGenerator : ChainableSchemaGenerator
{
public PolymorphicSchemaGenerator(
SchemaGeneratorOptions options,
... | using System;
using System.Linq;
using Microsoft.OpenApi.Models;
using Newtonsoft.Json.Serialization;
namespace Swashbuckle.AspNetCore.SwaggerGen
{
public class PolymorphicSchemaGenerator : ChainableSchemaGenerator
{
public PolymorphicSchemaGenerator(
SchemaGeneratorOptions options,
... | mit | C# |
cf53811cc70a3adf00b4456770be715ef82acaa0 | update to unity web request | iBicha/ChromeAppBuilder,iBicha/ChromeAppBuilder,iBicha/ChromeAppBuilder | Assets/ChromeAppBuilder/Scripts/WebRequest.cs | Assets/ChromeAppBuilder/Scripts/WebRequest.cs | /*This is a helper class to wrap around the WWW class and the coroutine system
* so it can be called without a MonoBehaviour or a game object
* basically we will create one, and destroy it when we're done.
* Of course other solutions exists, but this is a way to use unity's stock option.
* Note that this can be repla... | /*This is a helper class to wrap around the WWW class and the coroutine system
* so it can be called without a MonoBehaviour or a game object
* basically we will create one, and destroy it when we're done.
* Of course other solutions exists, but this is a way to use unity's stock option.
* Note that this can be repla... | mit | C# |
632a751458abb2e0e8f193d5faf881e7d068d85f | Allow AvroExtractor to handle empty files | Azure/usql | Examples/DataFormats/Microsoft.Analytics.Samples.Formats/Avro/AvroExtractor.cs | Examples/DataFormats/Microsoft.Analytics.Samples.Formats/Avro/AvroExtractor.cs | //
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless requ... | //
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless requ... | mit | C# |
767ef576718da58c8a888e2c28edea4d4ac9b061 | Use the new form of the binding function in the bytecode solver | Logicalshift/Reason | LogicalShift.Reason/Solvers/ClauseCompiler.cs | LogicalShift.Reason/Solvers/ClauseCompiler.cs | using LogicalShift.Reason.Api;
using System;
using System.Collections.Generic;
using System.Linq;
namespace LogicalShift.Reason.Solvers
{
/// <summary>
/// Methods for compiling clauses to a bytecode program
/// </summary>
public static class ClauseCompiler
{
/// <summary>
/// Comp... | using LogicalShift.Reason.Api;
using System;
using System.Collections.Generic;
using System.Linq;
namespace LogicalShift.Reason.Solvers
{
/// <summary>
/// Methods for compiling clauses to a bytecode program
/// </summary>
public static class ClauseCompiler
{
/// <summary>
/// Comp... | apache-2.0 | C# |
76dad08d8831564be883adda2498e014b9494c31 | Update server.cs | ahmedkhaled4d/Dot-NET-Projects,ahmedkhaled4d/C-Projects,ahmedkhaled4d/Dot-NET-Projects | client-server/server.cs | client-server/server.cs | using System;
using System.Threading;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace server
{
public class server
{
ManualResetEvent tcpClientConnected = new ManualResetEvent(false);
void ProcessIncomingData(object obj)
{
TcpClient client = (TcpC... | using System;
using System.Threading;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace server
{
public class server
{
ManualResetEvent tcpClientConnected = new ManualResetEvent(false);
void ProcessIncomingData(object obj)
{
TcpClient client = (TcpC... | mit | C# |
a09b5b37b13c5f6e750e1b5dc8894b65a93c79ac | bump version | alecgorge/adzerk-dot-net | Adzerk.Api/Properties/AssemblyInfo.cs | Adzerk.Api/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ad... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ad... | mit | C# |
7885ac02e00a50f7b4fd1c1c4190c7ce7404d2e4 | Fix voice delay double serialization | Barleytree/NitoriWare,NitorInc/NitoriWare,NitorInc/NitoriWare,Barleytree/NitoriWare | Assets/Scripts/Microgame/Microgame.cs | Assets/Scripts/Microgame/Microgame.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
using UnityEngine.Events;
using System.Linq;
#if UNITY_EDITOR
using UnityEditor;
#endif
[CreateAssetMenu(menuName = "Microgame/Normal")]
public class Microgame : ScriptableObject
{
public string microgameId => name;
... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
using UnityEngine.Events;
using System.Linq;
#if UNITY_EDITOR
using UnityEditor;
#endif
[CreateAssetMenu(menuName = "Microgame/Normal")]
public class Microgame : ScriptableObject
{
public string microgameId => name;
... | mit | C# |
55998f25b99f37b569024df119e52350a5244f8d | Fix LinkedIn claims, add linkedIn locality claim support | brockallen/BrockAllen.OAuth2,hattonpoint/BrockAllen.OAuth2 | BrockAllen.OAuth2/LinkedInProvider.cs | BrockAllen.OAuth2/LinkedInProvider.cs | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace BrockAllen.OAuth2
{
class LinkedInProvider : Provider
{
public LinkedInProvider(strin... | using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace BrockAllen.OAuth2
{
class LinkedInProvider : Provider
{
public LinkedInProvider(string clientID, string clie... | bsd-3-clause | C# |
cad97086ab05ee357a7f9f58727cb1281f654718 | Add HttpClient to GetToolConsumerProfileAsync convenience method to make it easier to call from an integration test. | andyfmiller/LtiLibrary | LtiLibrary.NetCore/Profiles/ToolConsumerProfileClient.cs | LtiLibrary.NetCore/Profiles/ToolConsumerProfileClient.cs | using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using LtiLibrary.NetCore.Common;
using LtiLibrary.NetCore.Extensions;
namespace LtiLibrary.NetCore.Profiles
{
public static class ToolConsumerProfileClient
{
/// <summary>
/// Get a ToolConsumerProfile from the... | using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using LtiLibrary.NetCore.Common;
using LtiLibrary.NetCore.Extensions;
namespace LtiLibrary.NetCore.Profiles
{
public static class ToolConsumerProfileClient
{
/// <summary>
/// Get a ToolConsumerProfile from the... | apache-2.0 | C# |
82b999307bd1b516056ed43be1c6bed7388999af | Update version to 1.3 | CryptonZylog/carbonator,lhoworko/carbonator | Carbonator/Properties/AssemblyInfo.cs | Carbonator/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ca... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ca... | mit | C# |
68126fda3f6f28e7de91d884e55a3ddd64ebf35c | Add asteroid to store | gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer | Client/Systems/Asteroid/AsteroidEvents.cs | Client/Systems/Asteroid/AsteroidEvents.cs | using LunaClient.Base;
using LunaClient.Systems.Lock;
using LunaClient.Systems.SettingsSys;
using LunaClient.Systems.VesselProtoSys;
using LunaClient.VesselStore;
using System;
namespace LunaClient.Systems.Asteroid
{
public class AsteroidEventHandler : SubSystem<AsteroidSystem>
{
public void OnAsteroi... | using LunaClient.Base;
using LunaClient.Systems.Lock;
using LunaClient.Systems.SettingsSys;
using LunaClient.Systems.VesselProtoSys;
using System;
namespace LunaClient.Systems.Asteroid
{
public class AsteroidEventHandler : SubSystem<AsteroidSystem>
{
public void OnAsteroidSpawned(Vessel asteroid)
... | mit | C# |
f31a405c5e9cfc0e1e4afda854d8749872c7bbef | update test env | qiniu/csharp-sdk | src/QiniuTests/TestEnv.cs | src/QiniuTests/TestEnv.cs | namespace Qiniu.Tests
{
public class TestEnv
{
public string AccessKey;
public string SecretKey;
public string Bucket;
public string Domain;
public string LocalFile;
public TestEnv()
{
string isTravisTest = System.Environment.GetEnvironmentVa... | namespace Qiniu.Tests
{
public class TestEnv
{
public string AccessKey;
public string SecretKey;
public string Bucket;
public string Domain;
public string LocalFile;
public TestEnv()
{
string isTravisTest = System.Environment.GetEnvironmentVa... | mit | C# |
07fc5372ed8e28eae1bd0806af6adeca5db0f48a | Update PermissionState | one-signal/OneSignal-Xamarin-SDK,one-signal/OneSignal-Xamarin-SDK | Com.OneSignal.Core/PermissionState.cs | Com.OneSignal.Core/PermissionState.cs | using System;
using System.Collections.Generic;
namespace Com.OneSignal.Core {
/// <summary>
/// Status of ability to send push notification as determined by the current user
/// </summary>
public enum NotificationPermission {
/// <summary>The user has not yet made a choice regarding whether your ap... | using System;
using System.Collections.Generic;
namespace Com.OneSignal.Core {
public class PermissionState {
readonly bool hasPrompted = false;
readonly bool provisional = false;
NotificationPermission status;
//public PermissionState(Dictionary<string, dynamic> json) {
/... | mit | C# |
369db139c1f2a442b7b352ba0d67b4219a574134 | bump version to 0.2 | danbarua/Cedar.EventStore,damianh/SqlStreamStore,SQLStreamStore/SQLStreamStore,SQLStreamStore/SQLStreamStore,damianh/Cedar.EventStore | src/SharedAssemblyInfo.cs | src/SharedAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyProduct("SqlStreamStore")]
[assembly: AssemblyCopyright("Copyright Damian Hickey & Contributors 2015 - 2016")]
[assembly: AssemblyVersion("0.2.0.0")]
[assembly: AssemblyFileVersion("0.2.0.0")]
| using System.Reflection;
[assembly: AssemblyProduct("SqlStreamStore")]
[assembly: AssemblyCopyright("Copyright Damian Hickey & Contributors 2015 - 2016")]
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]
| mit | C# |
6054aad2b157b4cdbf3ea70d6f21d085e951f3ed | Fix URL to test & character. | cube-soft/Cube.Forms,cube-soft/Cube.Forms,cube-soft/Cube.Core,cube-soft/Cube.Core | Demo/Sources/Interactions/Behaviors/ShowVersionBehavior.cs | Demo/Sources/Interactions/Behaviors/ShowVersionBehavior.cs | /* ------------------------------------------------------------------------- */
//
// Copyright (c) 2010 CubeSoft, 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.... | /* ------------------------------------------------------------------------- */
//
// Copyright (c) 2010 CubeSoft, 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-2.0 | C# |
86fcd6e32232ec160e604224b5564ba33d3d9bef | use durationExpression | MehdyKarimpour/extensions,AlejandroCano/extensions,MehdyKarimpour/extensions,signumsoftware/extensions,AlejandroCano/extensions,signumsoftware/framework,signumsoftware/framework,signumsoftware/extensions | Signum.Entities.Extensions/RestLog/RestLog.cs | Signum.Entities.Extensions/RestLog/RestLog.cs | using Signum.Entities;
using Signum.Utilities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using Signum.Entities.Basics;
using static System.Int32;
namespace Signum.Entities.RestLog
{
[Serializable,... | using Signum.Entities;
using Signum.Utilities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using Signum.Entities.Basics;
using static System.Int32;
namespace Signum.Entities.RestLog
{
[Serializable,... | mit | C# |
5aef145649d95eb00dd0ca183d1e3d55ac9cd565 | Make ResolveEventArgs.Name not nullable (dotnet/corefx#41415) | krk/coreclr,poizan42/coreclr,cshung/coreclr,krk/coreclr,cshung/coreclr,krk/coreclr,cshung/coreclr,poizan42/coreclr,krk/coreclr,cshung/coreclr,poizan42/coreclr,krk/coreclr,cshung/coreclr,cshung/coreclr,poizan42/coreclr,poizan42/coreclr,poizan42/coreclr,krk/coreclr | src/System.Private.CoreLib/shared/System/ResolveEventArgs.cs | src/System.Private.CoreLib/shared/System/ResolveEventArgs.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Reflection;
namespace System
{
public class ResolveEventArgs : EventArgs
{
public Reso... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Reflection;
namespace System
{
public class ResolveEventArgs : EventArgs
{
public Reso... | mit | C# |
735464e9e3393cd96d91240998e396d240961647 | Update to 0.0.4 | superkarn/RatanaLibrary | src/RatanaLibrary.Common/Properties/AssemblyInfo.cs | src/RatanaLibrary.Common/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ra... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ra... | apache-2.0 | C# |
a83bf3316926fbd7bc3360dcd7a79a1333066886 | Fix typo in method header | rapidcore/rapidcore,rapidcore/rapidcore | src/core/main/Network/UriWithHostnameToUriWithIp.cs | src/core/main/Network/UriWithHostnameToUriWithIp.cs | using System;
using System.Threading.Tasks;
namespace RapidCore.Network
{
public class UriWithHostnameToUriWithIp
{
private readonly HostnameToIpResolver resolver;
public UriWithHostnameToUriWithIp(HostnameToIpResolver resolver)
{
this.resolver = resolver;
}
... | using System;
using System.Threading.Tasks;
namespace RapidCore.Network
{
public class UriWithHostnameToUriWithIp
{
private readonly HostnameToIpResolver resolver;
public UriWithHostnameToUriWithIp(HostnameToIpResolver resolver)
{
this.resolver = resolver;
}
... | mit | C# |
9ecd71fef48ac20e5ff72c89a66a974e1d8f8628 | implement GetContext support | Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek | services/api/Tweek.ApiService.NetCore/Controllers/ContextController.cs | services/api/Tweek.ApiService.NetCore/Controllers/ContextController.cs | using Engine.DataTypes;
using Engine.Drivers.Context;
using FSharpUtils.Newtonsoft;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Tweek.ApiService.NetCore.Security;
namespace Tweek.ApiServi... | using Engine.DataTypes;
using Engine.Drivers.Context;
using FSharpUtils.Newtonsoft;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Tweek.ApiService.NetCore.Security;
namespace Tweek.ApiServi... | mit | C# |
47e846eff7909ba211244eec35d82a65fca17a21 | Use property initializers for 'PersistedCityBudgetConfiguration'. | Miragecoder/Urbanization,Miragecoder/Urbanization,Miragecoder/Urbanization | src/Mirage.Urbanization.Simulation/PersistedCityBudgetConfiguration.cs | src/Mirage.Urbanization.Simulation/PersistedCityBudgetConfiguration.cs | using System;
namespace Mirage.Urbanization.Simulation
{
public class PersistedCityBudgetConfiguration : ICityBudgetConfiguration
{
public decimal ResidentialTaxRate { get; set; } = 0.7M;
public decimal CommercialTaxRate { get; set; } = 0.7M;
public decimal IndustrialTaxRate { get; set... | namespace Mirage.Urbanization.Simulation
{
public class PersistedCityBudgetConfiguration : ICityBudgetConfiguration
{
public decimal ResidentialTaxRate { get; set; }
public decimal CommercialTaxRate { get; set; }
public decimal IndustrialTaxRate { get; set; }
public decimal Poli... | mit | C# |
5a190d7cd7464c2c50bb80563982d6e208fc8edf | Add Good Night | promusic1974/TestingGitPlamen | HiGitPlamen/HiGitPlamen/Program.cs | HiGitPlamen/HiGitPlamen/Program.cs | using System;
namespace HiGitPlamen
{
class Program
{
static void Main()
{
Console.WriteLine("Git,hello!");
Console.WriteLine("Plamen Git");
Console.WriteLine("Good Night");
}
}
}
| using System;
namespace HiGitPlamen
{
class Program
{
static void Main()
{
Console.WriteLine("Git,hello!");
Console.WriteLine("Plamen Git");
}
}
}
| mit | C# |
486efb8499fa8a0d47281291601458515c9b8e0c | handle null values | Pondidum/Magistrate,Pondidum/Magistrate,Pondidum/Magistrate,Pondidum/Magistrate | Magistrate/Domain/UserKeyConverter.cs | Magistrate/Domain/UserKeyConverter.cs | using System;
using Newtonsoft.Json;
namespace Magistrate.Domain
{
public class UserKeyConverter : JsonConverter
{
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
writer.WriteValue(value.ToString());
}
public override object ReadJson(JsonReader reader, Type ob... | using System;
using Newtonsoft.Json;
namespace Magistrate.Domain
{
public class UserKeyConverter : JsonConverter
{
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
writer.WriteValue(value.ToString());
}
public override object ReadJson(JsonReader reader, Type ob... | lgpl-2.1 | C# |
8928ae3e45ede49931cac0fbf413fcf0b927510f | Remove unused functions (that generate by unity :p) | insthync/LiteNetLibManager,insthync/LiteNetLibManager | Scripts/Events/LiteNetLibLoadSceneEvent.cs | Scripts/Events/LiteNetLibLoadSceneEvent.cs | using UnityEngine.Events;
[System.Serializable]
public class LiteNetLibLoadSceneEvent : UnityEvent<string, bool, float>
{
}
| using UnityEngine.Events;
[System.Serializable]
public class LiteNetLibLoadSceneEvent : UnityEvent<string, bool, float>
{
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}
| mit | C# |
8c7c4f0ffc434d8a9b7d2138dd84e3238c1a283b | Add Mission tracking to data model | iamdavidfrancis/AFO2015,iamdavidfrancis/AFO2015 | Orlandia2015/Models/OrlandiaModels.cs | Orlandia2015/Models/OrlandiaModels.cs | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity;
namespace Orlandia2015.Models
{
public class Player
{
[Key]
public Guid uPlayerID { get; set; }
public Guid uFacti... | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity;
namespace Orlandia2015.Models
{
public class Player
{
[Key]
public Guid uPlayerID { get; set; }
public Guid uFacti... | apache-2.0 | C# |
3eb644d67ab9cfffe276a69c2909b91498d5669d | add Unregister and WipeContainer methods | aloisdeniel/Mvvmicro | Sources/Mvvmicro/Dependencies/Container.cs | Sources/Mvvmicro/Dependencies/Container.cs | namespace Mvvmicro
{
using System;
using System.Collections.Generic;
public class Container : IContainer
{
#region Default
private static Lazy<IContainer> instance = new Lazy<IContainer>(() => new Container());
/// <summary>
/// Gets the default container.
///... | namespace Mvvmicro
{
using System;
using System.Collections.Generic;
public class Container : IContainer
{
#region Default
private static Lazy<IContainer> instance = new Lazy<IContainer>(() => new Container());
/// <summary>
/// Gets the default container.
///... | mit | C# |
674aa3518b6fcc8b2b0cec446462b462568636cd | Fix mock authentication wrapper implementation | ginach/onedrive-sdk-csharp,OneDrive/onedrive-sdk-csharp | tests/Test.OneDriveSdk.WinRT/Mocks/MockAuthenticationContextWrapper.cs | tests/Test.OneDriveSdk.WinRT/Mocks/MockAuthenticationContextWrapper.cs | // ------------------------------------------------------------------------------
// Copyright (c) 2015 Microsoft Corporation
//
// 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 witho... | // ------------------------------------------------------------------------------
// Copyright (c) 2015 Microsoft Corporation
//
// 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 witho... | mit | C# |
d5f77b5215f22e64b6ab3d0cc402bd4097d3b232 | Remove unnecessary usings | mmitche/xunit-performance,Microsoft/xunit-performance,pharring/xunit-performance,Microsoft/xunit-performance,visia/xunit-performance,ianhays/xunit-performance,ericeil/xunit-performance | xunit.performance/MathExtensions.cs | xunit.performance/MathExtensions.cs | using MathNet.Numerics.Statistics;
using System;
namespace Microsoft.Xunit.Performance.Analysis
{
public static class MathExtensions
{
public static double MarginOfError(this RunningStatistics stats, double confidence)
{
if (stats.Count < 2)
return double.NaN;
... | using MathNet.Numerics.Statistics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Xunit.Performance.Analysis
{
public static class MathExtensions
{
public static double MarginOfError(this RunningStatistics stats, ... | mit | C# |
8d5e2c00758c9846473af4ccd348113a85a46344 | Update HeightCalculatorFromBones.cs | cwesnow/Net_Fiddle | 2017oct/HeightCalculatorFromBones.cs | 2017oct/HeightCalculatorFromBones.cs | // Original Source Information
// Author: GitGub on Reddit
// Link: https://www.reddit.com/r/learnprogramming/comments/77a49n/c_help_refactoring_an_ugly_method_with_lots_of_if/
// Refactored using .NET Fiddle - https://dotnetfiddle.net/F8UcJW
using System;
public class Program
{
static Random random = new Rando... | // Original Source Information
// Author: GitGub on Reddit
// Link: https://www.reddit.com/r/learnprogramming/comments/77a49n/c_help_refactoring_an_ugly_method_with_lots_of_if/
// Refactored using .NET Fiddle - https://dotnetfiddle.net/F8UcJW
using System;
public class Program
{
static Random random = new Rando... | mit | C# |
f6c65a10950435d4bd61f2483003ff1d1f7949a3 | Fix the build | grantcolley/origin | Projects/DevelopmentInProgress.AuthorisationManager/Model/UserEntity.cs | Projects/DevelopmentInProgress.AuthorisationManager/Model/UserEntity.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevelopmentInProgress.AuthorisationManager.Model
{
class UserEntity
{
}
}
| =using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevelopmentInProgress.AuthorisationManager.Model
{
class UserEntity
{
}
}
| apache-2.0 | C# |
8e05667cced410dcdd16485e8201bdf79b060c7d | Rewrite Action Attack erased by mistake | allmonty/BrokenShield,allmonty/BrokenShield | Assets/Scripts/Enemy/Action_Attack.cs | Assets/Scripts/Enemy/Action_Attack.cs | using UnityEngine;
[CreateAssetMenu (menuName = "AI/Actions/Enemy_Attack")]
public class Action_Attack : Action {
[SerializeField] float staminaRequired = 2f;
[SerializeField] float attackDelay = 1f;
[SerializeField] float attackDuration = 1f;
[SerializeField] float attackDamage = 1f;
[SerializeField] fl... | using UnityEngine;
[CreateAssetMenu (menuName = "AI/Actions/Enemy_Attack")]
public class Action_Attack : Action {
public override void Init(StateController controller) {
return;
}
public override void Act(StateController controller) {
}
}
| apache-2.0 | C# |
6e1499dc99035e210e761a16f6a7706cfef43c4f | edit reset cone position | ChristianHemann/HTW_Motorsport_Simulator | Assets/Scripts/UnityInterface/Cone.cs | Assets/Scripts/UnityInterface/Cone.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace UnityInterface
{
public class Cone : MonoBehaviour
{
private Vector3 _normalPosition;
void Start()
{
_normalPosition = transform.position;
}
v... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace UnityInterface
{
public class Cone : MonoBehaviour
{
}
}
| bsd-2-clause | C# |
cfab44b9d87f8a307ce613c811e1ceb0448e1662 | バージョン番号更新。 | YKSoftware/YKToolkit.Controls | YKToolkit.Controls/Properties/AssemblyInfo.cs | YKToolkit.Controls/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
[assembly: AssemblyTitle("YKToolkit.Controls")]
#if NET4
[assembly: AssemblyDescription(".NET Framework 4.0 用 の WPF カスタムコントロールライブラリです。")]
#else
[assembly: AssemblyDescription("WPF カスタムコントロールライブラリです。")]
#endif
[assembly: Ass... | using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
[assembly: AssemblyTitle("YKToolkit.Controls")]
#if NET4
[assembly: AssemblyDescription(".NET Framework 4.0 用 の WPF カスタムコントロールライブラリです。")]
#else
[assembly: AssemblyDescription("WPF カスタムコントロールライブラリです。")]
#endif
[assembly: Ass... | mit | C# |
fcf60135b5eb85d6cce1bf198ef22f0a400269e0 | Modify assembly info | Blue0500/JoshuaKearney.Measurements | JoshuaKearney.Measurements/JoshuaKearney.Measurements/Properties/AssemblyInfo.cs | JoshuaKearney.Measurements/JoshuaKearney.Measurements/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("JoshuaKearney.Measurements")]
[assembly: AssemblyDescrip... | using System.Reflection;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("JoshuaKearney.Measurements")]
[assembly: AssemblyDescrip... | mit | C# |
c63d213a6289dfbdaba22cd47065cc2a8fd5825c | Fix crash when items are added from non-WPF main thread | GeorgeHahn/SOVND | SOVND.Client/Util/ChannelDirectory.cs | SOVND.Client/Util/ChannelDirectory.cs | using System.Collections.ObjectModel;
using System.Linq;
using SOVND.Lib.Models;
namespace SOVND.Client.Util
{
public class ChannelDirectory
{
private readonly SyncHolder _sync;
public ObservableCollection<Channel> channels = new ObservableCollection<Channel>();
public ChannelDirectory... | using System.Collections.ObjectModel;
using System.Linq;
using SOVND.Lib.Models;
namespace SOVND.Client.Util
{
public class ChannelDirectory
{
public ObservableCollection<Channel> channels = new ObservableCollection<Channel>();
public bool AddChannel(Channel channel)
{
if (... | epl-1.0 | C# |
b03bca8cf8088f775a0d1cbf3af60ba11ae687ec | build 0.0.10 | rachmann/qboAccess,rachmann/qboAccess,rachmann/qboAccess | src/Global/GlobalAssemblyInfo.cs | src/Global/GlobalAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "QuickBooksOnlineAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) 2014 Agile Harbor, LLC" ) ]
[ assembly : Assemb... | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "QuickBooksOnlineAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) 2014 Agile Harbor, LLC" ) ]
[ assembly : Assemb... | bsd-3-clause | C# |
9b489896767e32a710b3f471b72b30c7ef944b8e | Edit IdentificationCode Id to Guid | KristianMariyanov/VotingSystem,KristianMariyanov/VotingSystem,KristianMariyanov/VotingSystem | VotingSystem.Models/IdentificationCode.cs | VotingSystem.Models/IdentificationCode.cs | namespace VotingSystem.Models
{
using System;
using System.ComponentModel.DataAnnotations;
public class IdentificationCode
{
public IdentificationCode()
{
this.Id = Guid.NewGuid();
}
[Key]
public Guid Id { get; set; }
public ... | namespace VotingSystem.Models
{
using System.ComponentModel.DataAnnotations;
public class IdentificationCode
{
[Key]
public int Id { get; set; }
public int? PollId { get; set; }
public virtual Poll Poll { get; set; }
public int? VoteId { get; set; }
... | mit | C# |
1a00fce5a8bedf7d0e9553b284a2ec84127f197f | Remove Drawable.PaintHandler. | bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,PowerOfCode/Eto,l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,l8s/Eto,PowerOfCode/Eto,l8s/Eto | Source/Eto/Forms/Controls/Drawable.cs | Source/Eto/Forms/Controls/Drawable.cs | using System;
using Eto.Drawing;
namespace Eto.Forms
{
public partial interface IDrawable : IControl
{
void Create ();
void Update (Rectangle rect);
bool CanFocus { get; set; }
}
public class PaintEventArgs : EventArgs
{
Graphics graphics;
Rectangle clipRectangle;
public PaintEventArgs (Graphic... | using System;
using Eto.Drawing;
namespace Eto.Forms
{
public partial interface IDrawable : IControl
{
void Create ();
void Update (Rectangle rect);
bool CanFocus { get; set; }
}
public class PaintEventArgs : EventArgs
{
Graphics graphics;
Rectangle clipRectangle;
public PaintEventArgs (Graphic... | bsd-3-clause | C# |
55f0022a59523187fa5d26f008f40b69954002ba | Disable Clear of oderbys | sdanyliv/linq2db,MaceWindu/linq2db,linq2db/linq2db,genusP/linq2db,sdanyliv/linq2db,inickvel/linq2db,linq2db/linq2db,AK107/linq2db,LinqToDB4iSeries/linq2db,MaceWindu/linq2db,enginekit/linq2db,lvaleriu/linq2db,lvaleriu/linq2db,AK107/linq2db,genusP/linq2db,jogibear9988/linq2db,ronnyek/linq2db,LinqToDB4iSeries/linq2db,jogi... | Source/Linq/Builder/OrderByBuilder.cs | Source/Linq/Builder/OrderByBuilder.cs | using System;
using System.Linq;
using System.Linq.Expressions;
namespace LinqToDB.Linq.Builder
{
using Common;
using LinqToDB.Expressions;
class OrderByBuilder : MethodCallBuilder
{
protected override bool CanBuildMethodCall(ExpressionBuilder builder, MethodCallExpression methodCall, BuildInfo buil... | using System;
using System.Linq;
using System.Linq.Expressions;
namespace LinqToDB.Linq.Builder
{
using Common;
using LinqToDB.Expressions;
class OrderByBuilder : MethodCallBuilder
{
protected override bool CanBuildMethodCall(ExpressionBuilder builder, MethodCallExpression methodCall, BuildInfo buil... | mit | C# |
fa0af247a2325a9219d1549a6bc112744e386c0b | Rename previously unknown GAF field | MHeasell/Mappy,MHeasell/Mappy | TAUtil/Gaf/Structures/GafFrameData.cs | TAUtil/Gaf/Structures/GafFrameData.cs | namespace TAUtil.Gaf.Structures
{
using System.IO;
public struct GafFrameData
{
public ushort Width;
public ushort Height;
public ushort XPos;
public ushort YPos;
public byte TransparencyIndex;
public bool Compressed;
public ushort FrameP... | namespace TAUtil.Gaf.Structures
{
using System.IO;
public struct GafFrameData
{
public ushort Width;
public ushort Height;
public ushort XPos;
public ushort YPos;
public byte Unknown1;
public bool Compressed;
public ushort FramePointers;
... | mit | C# |
6a61b311863d829837fdb918588c08b18d4d3746 | Change Assembly version to 2.3. | yolanother/DockPanelSuite | WinFormsUI/Properties/AssemblyInfo.cs | WinFormsUI/Properties/AssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Diagnostics.CodeAnalysis;
[assembly: AssemblyTitle("DockPanel Suite for .Net 2.0")]
[assembly: AssemblyDescription(".Net Docking Library for Windows Forms")]
[assembly: AssemblyConf... | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Diagnostics.CodeAnalysis;
[assembly: AssemblyTitle("DockPanel Suite for .Net 2.0")]
[assembly: AssemblyDescription(".Net Docking Library for Windows Forms")]
[assembly: AssemblyConf... | mit | C# |
3b62e4d0b0acb083e8d3350714c1aaff1fa8c2b1 | Add Safeguards for modules throwing exceptions causing the bot to crash | Luke-Wolf/wolfybot | WolfyBot.Core/BotController.cs | WolfyBot.Core/BotController.cs | //
// Copyright 2014 luke
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or... | //
// Copyright 2014 luke
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or... | apache-2.0 | C# |
b6239ebcd52f22d9698a86a33ec053fdb8e3eb3c | Fix CloudFoundry Configuration sample | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples | Configuration/src/AspDotNetCore/SimpleCloudFoundry/Program.cs | Configuration/src/AspDotNetCore/SimpleCloudFoundry/Program.cs | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Logging;
using Pivotal.Extensions.Configuration.ConfigServer;
namespace SimpleCloudFoundry
{
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
... | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Logging;
using Pivotal.Extensions.Configuration.ConfigServer;
namespace SimpleCloudFoundry
{
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
... | apache-2.0 | C# |
76847705e7ecc1e0d75d4cbaf66ca3117d75abdf | fix descriptorbuilder test paths | Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen | Dashen.Tests/Infrastructure/Spark/DescriptorBuilderTests.cs | Dashen.Tests/Infrastructure/Spark/DescriptorBuilderTests.cs | using Dashen.Endpoints.Index;
using Dashen.Endpoints.Stats;
using Dashen.Infrastructure.Spark;
using NSubstitute;
using Shouldly;
using Spark;
using Spark.FileSystem;
using Xunit;
namespace Dashen.Tests.Infrastructure.Spark
{
public class DescriptorBuilderTests
{
private readonly IViewFolder _viewFolder;
privat... | using Dashen.Endpoints.Index;
using Dashen.Endpoints.Stats;
using Dashen.Infrastructure.Spark;
using NSubstitute;
using Shouldly;
using Spark;
using Spark.FileSystem;
using Xunit;
namespace Dashen.Tests.Infrastructure.Spark
{
public class DescriptorBuilderTests
{
private readonly IViewFolder _viewFolder;
privat... | lgpl-2.1 | C# |
13c4520c80af22bfa58916919f2e0eda9e0ae509 | Add ThrowsWithMessage() overload with format string | whampson/cascara,whampson/bft-spec | Cascara.Tests/Src/AssertExtension.cs | Cascara.Tests/Src/AssertExtension.cs | using System;
using Xunit;
namespace Cascara.Tests
{
public class AssertExtension : Assert
{
public static T ThrowsWithMessage<T>(Func<object> testCode, string message)
where T : Exception
{
var ex = Assert.Throws<T>(testCode);
Assert.Equal(ex.Message, messa... | using System;
using Xunit;
namespace Cascara.Tests
{
public class AssertExtension : Assert
{
public static T ThrowsWithMessage<T>(Func<object> testCode, string message)
where T : Exception
{
var ex = Assert.Throws<T>(testCode);
Assert.Equal(ex.Message, messa... | mit | C# |
e9b12a47c37a18766910f3678ef6206db301f1f7 | Tag version 0.2.0.0. | AeonLucid/POGOLib,m5219/POGOLib | POGOLib/Properties/AssemblyInfo.cs | POGOLib/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("POGOLib.Official")]
[assembly: AssemblyD... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("POGOLib.Official")]
[assembly: AssemblyD... | mit | C# |
d11595e09ca6265037e2358dcd6ca8148b73724e | Rename test feature class for hostname tests | junderhill/Foggle | Foggle.Tests/EnableByHostnameTests.cs | Foggle.Tests/EnableByHostnameTests.cs | using System;
using Moq;
using Xunit;
using Should;
namespace Foggle
{
public class EnableByHostnameTests
{
[Fact]
public void IsEnabled_ClassMarkedWithFoggleByHostName_TrysToGetListOfHostname()
{
var mockConfig = new Mock<IConfigWrapper>();
Feature.configurationWrapper = mockConfig.Object;
Feature.... | using System;
using Moq;
using Xunit;
using Should;
namespace Foggle
{
public class EnableByHostnameTests
{
[Fact]
public void IsEnabled_ClassMarkedWithFoggleByHostName_TrysToGetListOfHostname()
{
var mockConfig = new Mock<IConfigWrapper>();
Feature.configurationWrapper = mockConfig.Object;
Feature.... | mit | C# |
2fa5b9df828b74abf9c9fe8935c8d270628d8f4a | Change log time format to formal one | SaladLab/Unity3D.IncrementalCompiler,SaladbowlCreative/Unity3D.IncrementalCompiler | extra/UniversalCompiler/Logger.cs | extra/UniversalCompiler/Logger.cs | using System;
using System.IO;
using System.Text;
using System.Threading;
internal class Logger : IDisposable
{
private enum LoggingMethod
{
Immediate,
Retained,
/*
- Immediate
Every message will be written to the log file right away in real time.
- Retained
All the messages will be retained in a ... | using System;
using System.IO;
using System.Text;
using System.Threading;
internal class Logger : IDisposable
{
private enum LoggingMethod
{
Immediate,
Retained,
/*
- Immediate
Every message will be written to the log file right away in real time.
- Retained
All the messages will be retained in a ... | mit | C# |
c5a7d18a79c793b2137f967f93ae8539eef68b87 | Tweak indentation. | ejball/XmlDocMarkdown | src/XmlDocMarkdown/CommonArgs.cs | src/XmlDocMarkdown/CommonArgs.cs | using ArgsReading;
using XmlDocMarkdown.Core;
namespace XmlDocMarkdown
{
internal static class CommonArgs
{
public static string ReadSettingsOption(this ArgsReader args)
{
return args.ReadOption("settings");
}
public static string ReadSourceOption(this ArgsReader args)
{
return args.ReadOption("sour... | using ArgsReading;
using XmlDocMarkdown.Core;
namespace XmlDocMarkdown
{
internal static class CommonArgs
{
public static string ReadSettingsOption(this ArgsReader args)
{
return args.ReadOption("settings");
}
public static string ReadSourceOption(this ArgsReader args)
{
return args.ReadOption("sou... | mit | C# |
57a25b5b95478e2285d45f634b3dde7bfc80cfd4 | Add logical operations to NuGit operations | macro187/produce | produce/Modules/NuGitModule.cs | produce/Modules/NuGitModule.cs | using MacroDiagnostics;
using MacroExceptions;
using MacroGuards;
namespace
produce
{
public class
NuGitModule : Module
{
public override void
Attach(ProduceRepository repository, Graph graph)
{
Guard.NotNull(repository, nameof(repository));
Guard.NotNull(graph, nameof(graph));
... | using MacroDiagnostics;
using MacroExceptions;
using MacroGuards;
namespace
produce
{
public class
NuGitModule : Module
{
public override void
Attach(ProduceRepository repository, Graph graph)
{
Guard.NotNull(repository, nameof(repository));
Guard.NotNull(graph, nameof(graph));
... | mit | C# |
a9d82421ea5055ef400a40fadfb03573dcb88334 | Add missing attribute to mouse effect | CoraleStudios/Colore,WolfspiritM/Colore | Corale.Colore/Razer/Mouse/Effects/SpectrumCycling.cs | Corale.Colore/Razer/Mouse/Effects/SpectrumCycling.cs | // ---------------------------------------------------------------------------------------
// <copyright file="SpectrumCycling.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software... | // ---------------------------------------------------------------------------------------
// <copyright file="SpectrumCycling.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software... | mit | C# |
d423afb9e3ff440e2577e7984a88818ac16dab15 | Improve code | sakapon/Tools-2017 | EpidemicSimulator/EpidemicSimulator/MainViewModel.cs | EpidemicSimulator/EpidemicSimulator/MainViewModel.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Reactive.Bindings;
namespace EpidemicSimulator
{
public class MainViewModel
{
const int PopulationBarWidth = 800;
public AppModel AppModel { get; } = new AppModel();
pub... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Reactive.Bindings;
namespace EpidemicSimulator
{
public class MainViewModel
{
const int PopulationBarWidth = 800;
public AppModel AppModel { get; } = new AppModel();
pub... | mit | C# |
1b317bdee49b6483f50b4297bf9c3f3bcf183a66 | Simplify handler | einaregilsson/ChordImageGenerator,einaregilsson/ChordImageGenerator,einaregilsson/ChordImageGenerator | ChordHandler.ashx.cs | ChordHandler.ashx.cs | /*
* Chord Image Generator
* http://einaregilsson.com/chord-image-generator/
*
* Copyright (C) 2009-2012 Einar Egilsson [einar@einaregilsson.com]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software F... | /*
* Chord Image Generator
* http://einaregilsson.com/chord-image-generator/
*
* Copyright (C) 2009-2012 Einar Egilsson [einar@einaregilsson.com]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software F... | mit | C# |
151703e593ea0869bce3a9ea1b3ab1aab7978bc7 | Update ViewTestPage.xaml.cs | thehunte199/mAppQuiz | mAppQuiz/mAppQuiz/ContentPages/ViewTestPage.xaml.cs | mAppQuiz/mAppQuiz/ContentPages/ViewTestPage.xaml.cs | using mAppQuiz.Data;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace mAppQuiz.ContentPages
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public pa... | using mAppQuiz.Data;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace mAppQuiz.ContentPages
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public pa... | mit | C# |
e431246903b6f88721ee23f68aa7020245b34be8 | update assemply to 1.0.0.7 | rocker8942/Utility | Utility/Properties/AssemblyInfo.cs | Utility/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Utility")]
[assembly: AssemblyDescriptio... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Utility")]
[assembly: AssemblyDescriptio... | mit | C# |
e2c8688d1d075ac92a8e8fc8f175b6189676028b | Fix issue where alpaca editor fields where not loaded when using IIS virtual directories | sachatrauwaen/openform,sachatrauwaen/openform,sachatrauwaen/openform | EditSettings.ascx.cs | EditSettings.ascx.cs | #region Copyright
//
// Copyright (c) 2015
// by Satrabel
//
#endregion
#region Using Statements
using System;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Common;
using DotNetNuke.Framework.JavaScriptLibraries;
using DotNetNuke.Framework;
using Satrabel.OpenContent.Components;
using Satrabel.OpenForm.Comp... | #region Copyright
//
// Copyright (c) 2015
// by Satrabel
//
#endregion
#region Using Statements
using System;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Common;
using DotNetNuke.Framework.JavaScriptLibraries;
using DotNetNuke.Framework;
using Satrabel.OpenContent.Components;
using Satrabel.OpenForm.Comp... | mit | C# |
a3702c486ff4cab83239b79e0cc6b372098a5682 | Fix CA1416 warning for GettextCatalog alls | mrward/monodevelop-nuget-extensions,mrward/monodevelop-nuget-extensions | src/MonoDevelop.PackageManagement.Extensions/Properties/AssemblyInfo.cs | src/MonoDevelop.PackageManagement.Extensions/Properties/AssemblyInfo.cs | //
// AssemblyInfo.cs
//
// Author:
// Matt Ward <matt.ward@xamarin.com>
//
// Copyright (c) 2014 Xamarin Inc. (http://xamarin.com)
//
// 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 Softwar... | //
// AssemblyInfo.cs
//
// Author:
// Matt Ward <matt.ward@xamarin.com>
//
// Copyright (c) 2014 Xamarin Inc. (http://xamarin.com)
//
// 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 Softwar... | mit | C# |
a48c1550021436fb9a33ef5d670d23828560feda | Update DeleteNotificationConfigSnippets.g.cs (#1151) | GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples | securitycenter/api/src/DeleteNotificationConfigSnippets.g.cs | securitycenter/api/src/DeleteNotificationConfigSnippets.g.cs | /*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | /*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | apache-2.0 | C# |
ed26c3359c9782b20d8927115deaeeb5e63e2836 | Remove private setters to make class immutable | productinfo/eShopOnContainers,andrelmp/eShopOnContainers,andrelmp/eShopOnContainers,albertodall/eShopOnContainers,albertodall/eShopOnContainers,andrelmp/eShopOnContainers,productinfo/eShopOnContainers,dotnet-architecture/eShopOnContainers,andrelmp/eShopOnContainers,productinfo/eShopOnContainers,skynode/eShopOnContainer... | src/Services/Ordering/Ordering.Domain/Events/OrderStartedDomainEvent.cs | src/Services/Ordering/Ordering.Domain/Events/OrderStartedDomainEvent.cs | using MediatR;
using Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate;
using System;
using System.Collections.Generic;
using System.Text;
namespace Ordering.Domain.Events
{
/// <summary>
/// Event used when an order is created
/// </summary>
public class OrderStarted... | using MediatR;
using Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate;
using System;
using System.Collections.Generic;
using System.Text;
namespace Ordering.Domain.Events
{
/// <summary>
/// Event used when an order is created
/// </summary>
public class OrderStarted... | mit | C# |
ab27c87d4b26a0ab16c87918de797ea8adbc967f | Fix non-existant ref vars in function calls. | KerbaeAdAstra/KerbalFuture | KerbalFuture/HelperFiles/WarpHelp.cs | KerbalFuture/HelperFiles/WarpHelp.cs | using System;
namespace Hlpr
{
class WarpHelp
{
public static double Distance(double x1, double y1, double z1, double x2, double y2, double z2)
{
double dis;
dis = Math.Pow(x1-x2,2) + Math.Pow(y1-y2,2) + Math.Pow(z1-z2,2);
dis = Math.Pow(dis,0.5);
return dis;
}
public static double Distance(Vecto... | using System;
namespace Hlpr
{
class WarpHelp
{
public static double Distance(double x1, double y1, double z1, double x2, double y2, double z2)
{
double dis;
dis = Math.Pow(x1-x2,2) + Math.Pow(y1-y2,2) + Math.Pow(z1-z2,2);
dis = Math.Pow(dis,0.5);
return dis;
}
public static double Distance(Vecto... | mit | C# |
067daf3d4a1d4bc7b94364905676086fe0ae3246 | Update AssemblyInfo.cs | getAddress/Sequence | getAddress.Sequence.Azure.Tests/Properties/AssemblyInfo.cs | getAddress.Sequence.Azure.Tests/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ge... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("In... | mit | C# |
785c76cb1bea4b06e7d7ed534a2a4206127d25a1 | test bug | Chaojincoolbean/Fly | Fly/Assets/_Script/InputManager.cs | Fly/Assets/_Script/InputManager.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InputManager : MonoBehaviour {
public GameObject CameraRig;
public GameObject LeftController;
public GameObject RightController;
public Vector3 LLT; //LLT = LastLeftContollerPosition
public Vector3 LRT; //LRT = LastRigh... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InputManager : MonoBehaviour {
public GameObject CameraRig;
public GameObject LeftController;
public GameObject RightController;
public Transform LLT; //LLT = LastLeftContollerTransform
public Transform LRT; //LRT = Last... | unlicense | C# |
f1b341d8723d75e16995aa3e2b6464216cd4cf7c | Bump version number. | chripf/My-FyiReporting,maratoss/My-FyiReporting,chripf/My-FyiReporting,daniellor/My-FyiReporting,daniellor/My-FyiReporting,majorsilence/My-FyiReporting,chripf/My-FyiReporting,maratoss/My-FyiReporting,maratoss/My-FyiReporting,daniellor/My-FyiReporting,majorsilence/My-FyiReporting,chripf/My-FyiReporting,maratoss/My-FyiRe... | LibRdlCrossPlatformViewer/Properties/AssemblyInfo.cs | LibRdlCrossPlatformViewer/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Li... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Li... | apache-2.0 | C# |
61b396f235bedbd8306a26f84cbf5472df9f92d8 | Remove redundant length check | ppy/osu,peppy/osu,ZLima12/osu,smoogipoo/osu,ZLima12/osu,ppy/osu,EVAST9919/osu,johnneijzen/osu,2yangk23/osu,ppy/osu,2yangk23/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,peppy/osu,UselessToucan/osu,EVAST9919/osu,smoogipoo/osu,UselessToucan/osu,johnneijzen/osu,smoogipooo/osu,pep... | osu.Game.Rulesets.Mania/Replays/ManiaReplayFrame.cs | osu.Game.Rulesets.Mania/Replays/ManiaReplayFrame.cs | // 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.Game.Beatmaps;
using osu.Game.Replays.Legacy;
using osu.Game.Rulesets.Mania.Beatmaps;
using osu.Game.Rulesets.Replays;
using o... | // 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.Game.Beatmaps;
using osu.Game.Replays.Legacy;
using osu.Game.Rulesets.Mania.Beatmaps;
using osu.Game.Rulesets.Replays;
using o... | mit | C# |
83a8fd136f5f0590bc81e627c4b4927af6b22647 | Fix tabs | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.AspNet.Http/Features/HttpResponseFeature.cs | src/Microsoft.AspNet.Http/Features/HttpResponseFeature.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.IO;
namespace Microsoft.AspNet.Http.Features.Internal
{
public class HttpResponseFeatu... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.IO;
namespace Microsoft.AspNet.Http.Features.Internal
{
public class HttpResponseFeatu... | apache-2.0 | C# |
765e0705a484b156127ad016b0f0ab777d83fc85 | Make sure ResourcesResourceStartup is passing through the registered type | Glimpse/Glimpse.Prototype,Glimpse/Glimpse.Prototype,zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,zanetdev/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,Glimpse/Glimpse.... | src/Glimpse.Server.Web/Framework/ResourcesResourceStartup.cs | src/Glimpse.Server.Web/Framework/ResourcesResourceStartup.cs | using System;
using System.Collections.Generic;
namespace Glimpse.Server.Web
{
public class ResourcesResourceStartup : IResourceStartup
{
private readonly IEnumerable<IResource> _resources;
public ResourcesResourceStartup(IExtensionProvider<IResource> resourceProvider)
{
_... | using System;
using System.Collections.Generic;
namespace Glimpse.Server.Web
{
public class ResourcesResourceStartup : IResourceStartup
{
private readonly IEnumerable<IResource> _resources;
public ResourcesResourceStartup(IExtensionProvider<IResource> resourceProvider)
{
_... | mit | C# |
4a4b9960a64635fd2d176dc0c5dc642f3091a0f2 | Relocate stopwatch.Reset call | Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training | src/ChessVariantsTraining/Models/Variant960/Clock.cs | src/ChessVariantsTraining/Models/Variant960/Clock.cs | using MongoDB.Bson.Serialization.Attributes;
using System.Diagnostics;
namespace ChessVariantsTraining.Models.Variant960
{
public class Clock
{
Stopwatch stopwatch;
[BsonElement("secondsLeftAfterLatestMove")]
public double SecondsLeftAfterLatestMove
{
get;
... | using MongoDB.Bson.Serialization.Attributes;
using System.Diagnostics;
namespace ChessVariantsTraining.Models.Variant960
{
public class Clock
{
Stopwatch stopwatch;
[BsonElement("secondsLeftAfterLatestMove")]
public double SecondsLeftAfterLatestMove
{
get;
... | agpl-3.0 | C# |
4316ce7a16be3563cca57fa886037eb680a74d8a | Correct IOperation.Accept annotation | weltkante/roslyn,panopticoncentral/roslyn,tmat/roslyn,wvdd007/roslyn,shyamnamboodiripad/roslyn,AmadeusW/roslyn,ErikSchierboom/roslyn,eriawan/roslyn,dotnet/roslyn,wvdd007/roslyn,CyrusNajmabadi/roslyn,mgoertz-msft/roslyn,KevinRansom/roslyn,tannergooding/roslyn,tannergooding/roslyn,dotnet/roslyn,physhi/roslyn,diryboy/rosl... | src/Compilers/Core/Portable/Operations/IOperation.cs | src/Compilers/Core/Portable/Operations/IOperation.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using Microsoft.CodeAnalysis.Operations;
... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using Microsoft.CodeAnalysis.Operations;
... | mit | C# |
ab06d21639ae5da3c157f257e8a254d2c34f7c46 | Fix namespace syntax | dawoe/Umbraco-CMS,robertjf/Umbraco-CMS,dawoe/Umbraco-CMS,abryukhov/Umbraco-CMS,dawoe/Umbraco-CMS,abryukhov/Umbraco-CMS,mattbrailsford/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,abjerner/Umbraco-CMS,arknu/Umbraco-CMS,umbraco/Umbraco-CMS,marcemarc/Umbraco-CMS,mattbrailsford/Umbraco-CMS,arknu/Umbraco-CMS,marcemarc/Umbraco-... | src/Umbraco.Core/Models/ContentEditing/HistoryCleanup.cs | src/Umbraco.Core/Models/ContentEditing/HistoryCleanup.cs | using System.Runtime.Serialization;
namespace Umbraco.Core.Models.ContentEditing
{
[DataContract(Name = "historyCleanup", Namespace = "")]
public class HistoryCleanup
{
[DataMember(Name = "preventCleanup")]
public bool PreventCleanup { get; set; }
[DataMember(Name = "keepAllVersion... | using System.Runtime.Serialization;
namespace Umbraco.Core.Models.ContentEditing;
[DataContract(Name = "historyCleanup", Namespace = "")]
public class HistoryCleanup
{
[DataMember(Name = "preventCleanup")]
public bool PreventCleanup { get; set; }
[DataMember(Name = "keepAllVersionsNewerThanDays")]
pu... | mit | C# |
27ce1f34bb43020526b5a07a75967ebd509610ee | Make the JSON model over the API control be the correct casing & make Mads happy :) | abryukhov/Umbraco-CMS,dawoe/Umbraco-CMS,NikRimington/Umbraco-CMS,KevinJump/Umbraco-CMS,marcemarc/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,arknu/Umbraco-CMS,abjerner/Umbraco-CMS,abjerner/Umbraco-CMS,tompipe/Umbraco-CMS,tcmorris/Umbraco-CMS,hfloyd/Umbraco-CMS,tcmorris/Umbraco-CMS,tcmorris/Umbraco-CMS,JimBobSquarePants/U... | src/Umbraco.Web/Models/ContentEditing/RollbackVersion.cs | src/Umbraco.Web/Models/ContentEditing/RollbackVersion.cs | using System;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
[DataContract(Name = "rollbackVersion", Namespace = "")]
public class RollbackVersion
{
[DataMember(Name = "versionId")]
public int VersionId { get; set; }
[DataMember(Name = "versionDa... | using System;
namespace Umbraco.Web.Models.ContentEditing
{
public class RollbackVersion
{
public int VersionId { get; set; }
public DateTime VersionDate { get; set; }
public string VersionAuthorName { get; set; }
}
}
| mit | C# |
28d40a3a2b1caf12d4e8037efe53a4c93bdd1375 | Fix the Xamarin encoding exception #1460 | restsharp/RestSharp,PKRoma/RestSharp | src/RestSharp/Extensions/StringEncodingExtensions.cs | src/RestSharp/Extensions/StringEncodingExtensions.cs | // Copyright © 2009-2020 John Sheehan, Andrew Young, Alexey Zimarev and RestSharp community
//
// 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... | // Copyright © 2009-2020 John Sheehan, Andrew Young, Alexey Zimarev and RestSharp community
//
// 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... | apache-2.0 | C# |
aa4a38760ee768e140bacc8c84d975f76d7f46aa | Bump version | sendwithus/sendwithus_csharp | Sendwithus/Properties/AssemblyInfo.cs | Sendwithus/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Sen... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Se... | apache-2.0 | C# |
cb5f4f6586ca4a9557956cf879779f7a53f8ac47 | Add new CefMenuCommand enum items | Livit/CefSharp,jamespearce2006/CefSharp,jamespearce2006/CefSharp,jamespearce2006/CefSharp,Livit/CefSharp,wangzheng888520/CefSharp,Livit/CefSharp,jamespearce2006/CefSharp,wangzheng888520/CefSharp,jamespearce2006/CefSharp,wangzheng888520/CefSharp,wangzheng888520/CefSharp,Livit/CefSharp | CefSharp/CefMenuCommand.cs | CefSharp/CefMenuCommand.cs | // Copyright © 2010-2016 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
public enum CefMenuCommand
{
NotFound = -1,
// Navigation.
Back = 100,
Forward = 101,... | // Copyright © 2010-2016 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
public enum CefMenuCommand
{
NotFound = -1,
// Navigation.
Back = 100,
Forward = 101,... | bsd-3-clause | C# |
842fe32003244c5934cf0f1b8bbeb8648c74f08d | Update test values | ppy/osu,ppy/osu,peppy/osu,peppy/osu,peppy/osu,ppy/osu | osu.Game.Rulesets.Osu.Tests/OsuDifficultyCalculatorTest.cs | osu.Game.Rulesets.Osu.Tests/OsuDifficultyCalculatorTest.cs | // 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.
#nullable disable
using NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Osu.Difficulty;
using osu.Game.Rulesets.Osu... | // 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.
#nullable disable
using NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Osu.Difficulty;
using osu.Game.Rulesets.Osu... | mit | C# |
1a60d71d3f1f6feb84943ae1e0ce715b8e4afba0 | Set Datawriter executing logs to debug level | pthivierge/data-collection-service-for-pi-system,pthivierge/web-service-reader-for-pi-system,pthivierge/data-collection-service-for-pi-system,pthivierge/web-service-reader-for-pi-system,pthivierge/web-service-reader-for-pi-system,pthivierge/data-collection-service-for-pi-system | Core/Scheduler/CronTask.cs | Core/Scheduler/CronTask.cs | using System;
using log4net;
using Quartz;
namespace DCS.Core.Scheduler
{
public sealed class CronTask : IJob
{
private readonly string _cronConfig;
private readonly ILog _logger = LogManager.GetLogger(typeof(CronTask));
private readonly Action _task;
private readonly string _t... | using System;
using log4net;
using Quartz;
namespace DCS.Core.Scheduler
{
public sealed class CronTask : IJob
{
private readonly string _cronConfig;
private readonly ILog _logger = LogManager.GetLogger(typeof(CronTask));
private readonly Action _task;
private readonly string _t... | apache-2.0 | C# |
6a3ec4a843300287dd0e11832b3e45407c584b34 | Use Moq<Random> with a sequence instead of custom MockRandom class | DnDGen/RollGen,DnDGen/RollGen | RollGen.Tests.Unit/ExplodeTests.cs | RollGen.Tests.Unit/ExplodeTests.cs | using Albatross.Expression;
using Moq;
using NUnit.Framework;
using RollGen.Expressions;
using RollGen.PartialRolls;
using System;
namespace RollGen.Tests.Unit
{
[TestFixture]
public class ExplodeTests
{
readonly ExpressionEvaluator evaluator = new AlbatrossExpressionEvaluator(Factory.Instance.Cre... | using Albatross.Expression;
using NUnit.Framework;
using RollGen.Expressions;
using RollGen.PartialRolls;
using System;
using System.Collections.Generic;
namespace RollGen.Tests.Unit
{
// False random class that returns a given array of ints, throws if exceeds array size
class MockRandom : Random
{
... | mit | C# |
41089a50f7d100656aa07de1649bea7aae7896c8 | Bump version to 1.3.1 | mwilliamson/dotnet-mammoth | Mammoth/Properties/AssemblyInfo.cs | Mammoth/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("Mammoth")]
[assembly: AssemblyDescription("Convert Word documents from docx to simple HTML")]
[as... | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("Mammoth")]
[assembly: AssemblyDescription("Convert Word documents from docx to simple HTML")]
[as... | bsd-2-clause | C# |
52f48cf414a180e95b9141935013b853a31a02fe | Add interface documentation. | matrostik/SQLitePCL.pretty,bordoley/SQLitePCL.pretty | SQLitePCL.pretty.Orm/Interfaces.cs | SQLitePCL.pretty.Orm/Interfaces.cs | using System;
using System.Collections.Generic;
namespace SQLitePCL.pretty.Orm
{
/// <summary>
/// The mapping of a type to a SQL Table.
/// </summary>
public interface ITableMapping : IReadOnlyDictionary<string, ColumnMapping>
{
/// <summary>
/// Gets the name of the table.
... | using System;
using System.Collections.Generic;
namespace SQLitePCL.pretty.Orm
{
public interface ITableMapping : IReadOnlyDictionary<string, ColumnMapping>
{
String TableName { get; }
ColumnMapping this[string column] { get; }
IEnumerable<IndexInfo> Indexes { get; }
}
publi... | apache-2.0 | C# |
da64a7f22c0df36ae927d58e42f98960c9d11671 | fix up AssemblyInfo.cs | NFig/NFig.UI,NFig/NFig.UI,NFig/NFig.UI,NFig/NFig.UI | NFig.UI/Properties/AssemblyInfo.cs | NFig.UI/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("NFi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("NFi... | mit | C# |
b83ecea705f551cd07ea883c967cdb55622d87b3 | fix net core tests | Fody/Fody,GeertvanHorrik/Fody | Tests/FodyHelpers/PeVerifierTests.cs | Tests/FodyHelpers/PeVerifierTests.cs | using System;
using System.IO;
using Fody;
using Mono.Cecil;
using Xunit;
#pragma warning disable 618
public class PeVerifierTests : TestBase
{
[Fact]
public void StaticPathResolution()
{
Assert.True(PeVerifier.FoundPeVerify);
}
[Fact]
public void Should_verify_current_assembly()
{... | using System;
using System.IO;
using System.Linq;
using Fody;
using Mono.Cecil;
using Xunit;
#pragma warning disable 618
public class PeVerifierTests : TestBase
{
[Fact]
public void StaticPathResolution()
{
Assert.True(PeVerifier.FoundPeVerify);
}
[Fact]
public void Should_verify_curre... | mit | C# |
1297632f5b09127a78426cefef03a07a93ed270a | Bump up fade in/out time | JetBrains/resharper-presentation-assistant | src/resharper-presentation-assistant/FadingWpfPopupWindow.cs | src/resharper-presentation-assistant/FadingWpfPopupWindow.cs | using System;
using System.Windows;
using System.Windows.Media.Animation;
using JetBrains.DataFlow;
using JetBrains.UI.PopupWindowManager;
namespace JetBrains.ReSharper.Plugins.PresentationAssistant
{
public class FadingWpfPopupWindow : WpfPopupWindow
{
private static readonly TimeSpan Duration = Time... | using System;
using System.Windows;
using System.Windows.Media.Animation;
using JetBrains.DataFlow;
using JetBrains.UI.PopupWindowManager;
namespace JetBrains.ReSharper.Plugins.PresentationAssistant
{
public class FadingWpfPopupWindow : WpfPopupWindow
{
private static readonly TimeSpan Duration = Time... | apache-2.0 | C# |
4c3160e6e23290ce96b8a6ad765923156ab4f890 | Update RectangleShapeControl.xaml.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D | src/Core2D.UI/Views/Shapes/RectangleShapeControl.xaml.cs | src/Core2D.UI/Views/Shapes/RectangleShapeControl.xaml.cs | using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Core2D.Editor;
using Core2D.Editors;
using Core2D.Shapes;
using Core2D.UI.Views.Editors;
namespace Core2D.UI.Views.Shapes
{
/// <summary>
/// Interaction logic for <see cref="RectangleShapeControl"/> xaml.
/// </summary>
public class Rectangle... | using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Core2D.Editor;
using Core2D.Editors;
using Core2D.Shapes;
using Core2D.UI.Views.Editors;
namespace Core2D.UI.Views.Shapes
{
/// <summary>
/// Interaction logic for <see cref="RectangleShapeControl"/> xaml.
/// </summary>
public class Rectangle... | mit | C# |
f43a80a92f58ebeb41ac93aaf6bcaf941e76ca06 | remove unneeded comments | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | src/FilterLists.Services/Implementations/TableService.cs | src/FilterLists.Services/Implementations/TableService.cs | using System.IO;
using System.Net.Http;
using System.Threading.Tasks;
using CsvHelper;
using FilterLists.Data.Models.Implementations;
using FilterLists.Data.Repositories.Contracts;
using FilterLists.Services.Contracts;
namespace FilterLists.Services.Implementations
{
public class TableService : ITableService
... | using System.IO;
using System.Net.Http;
using System.Threading.Tasks;
using CsvHelper;
using FilterLists.Data.Models.Implementations;
using FilterLists.Data.Repositories.Contracts;
using FilterLists.Services.Contracts;
namespace FilterLists.Services.Implementations
{
public class TableService : ITableService
... | mit | C# |
07596cd837dfcffab17b7a5e2d59f0a60c944cfb | Update REST API version to v3 | arthurrump/Zermelo.API | Zermelo.API/Services/UrlBuilder.cs | Zermelo.API/Services/UrlBuilder.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zermelo.API.Interfaces;
using Zermelo.API.Services.Interfaces;
namespace Zermelo.API.Services
{
internal class UrlBuilder : IUrlBuilder
{
const string _https = "https://";
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zermelo.API.Interfaces;
using Zermelo.API.Services.Interfaces;
namespace Zermelo.API.Services
{
internal class UrlBuilder : IUrlBuilder
{
const string _https = "https://";
... | mit | C# |
fcaf41e724763853828c8933af6a5139227ddbd8 | Fix message. | msgpack/msgpack-cli,scopely/msgpack-cli,modulexcite/msgpack-cli,modulexcite/msgpack-cli,msgpack/msgpack-cli,undeadlabs/msgpack-cli,scopely/msgpack-cli,undeadlabs/msgpack-cli | cli/test/MsgPack.UnitTest/Properties/AssemblyInfo.cs | cli/test/MsgPack.UnitTest/Properties/AssemblyInfo.cs | #region -- License Terms --
//
// MessagePack for CLI
//
// Copyright (C) 2010 FUJIWARA, Yusuke
//
// 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.or... | #region -- License Terms --
//
// MessagePack for CLI
//
// Copyright (C) 2010 FUJIWARA, Yusuke
//
// 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.or... | apache-2.0 | C# |
9aa4bd0c8ca3d2d23fcf8eef1d972c593c8b06aa | Remove Console debug line that broke logic | tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server | src/Tgstation.Server.Host/Database/MySqlDatabaseContext.cs | src/Tgstation.Server.Host/Database/MySqlDatabaseContext.cs | using Microsoft.EntityFrameworkCore;
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
using System;
using Tgstation.Server.Host.Configuration;
namespace Tgstation.Server.Host.Database
{
/// <summary>
/// <see cref="DatabaseContext"/> for MySQL
/// </summary>
sealed class MySqlDatabaseContext : DatabaseContex... | using Microsoft.EntityFrameworkCore;
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
using System;
using Tgstation.Server.Host.Configuration;
namespace Tgstation.Server.Host.Database
{
/// <summary>
/// <see cref="DatabaseContext"/> for MySQL
/// </summary>
sealed class MySqlDatabaseContext : DatabaseContex... | agpl-3.0 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.