added
string
created
string
id
string
metadata
dict
source
string
text
string
code-score
float64
md5
string
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68033
{ "extension": "c-sharp", "max_stars_count": "5.0", "max_stars_repo_name": "nmur/reddit-video-rotation-bot", "max_stars_repo_path": "src/RedditVideoRotationBot/Media/VideoDownloader.cs", "provenance": "train-00000-of-00045.jsonl.gz:68034" }
starcoder
using RedditVideoRotationBot.Exceptions; using RedditVideoRotationBot.Interfaces; using System; using System.Diagnostics.CodeAnalysis; using System.Net; namespace RedditVideoRotationBot.Media { [ExcludeFromCodeCoverage] public class VideoDownloader : IVideoDownloader { public void Downl...
2.495757
295ece17d380091ad83417437823b04e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68034
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "EliPedro/Patterns", "max_stars_repo_path": "Patterns/Patterns.Aplicacao/Utilitarios/Enum/TipoEmissor.cs", "provenance": "train-00000-of-00045.jsonl.gz:68035" }
starcoder
<filename>Patterns/Patterns.Aplicacao/Utilitarios/Enum/TipoEmissor.cs namespace Patterns.Aplicacao.Utilitarios.Enum { public enum TipoEmissor { Email = 1, SMS = 2, MasterCard = 3, Visa = 4 } }
1.949669
31a4735b935349328922a50653b4571b
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68035
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "polenter/web-form-email-sender", "max_stars_repo_path": "EmailSender.WebApi/Options/FormClientMetadata_IEquatable.cs", "provenance": "train-00000-of-00045.jsonl.gz:68036" }
starcoder
<gh_stars>0 using System; namespace EmailSender.WebApi.Options { public partial class FormClientMetadata : IEquatable<FormClientMetadata> { public bool Equals(FormClientMetadata other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, ...
2.267024
b7e37c171ac0e8a1178647932732072b
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68036
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "PieEatingNinjas/Comet", "max_stars_repo_path": "src/Comet/State.cs", "provenance": "train-00000-of-00045.jsonl.gz:68037" }
starcoder
<filename>src/Comet/State.cs using System; using System.Collections.Generic; using System.Dynamic; using System.Linq; using System.Runtime.CompilerServices; using Comet.Reflection; namespace Comet { public class State<T> : BindingObject { public State (T value) { Value = value; } public State () {...
2.79102
9c74be315e02463608d3bc7c21d78cbe
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68037
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "MrMYX/StartingUnity2D", "max_stars_repo_path": "Introducing/Library/PackageCache/com.unity.visualscripting@1.5.2/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_13_to_1_5_1.cs", "provenance": "train-00000-of-00045.jsonl.gz...
starcoder
<reponame>MrMYX/StartingUnity2D<gh_stars>1-10 using System.IO; using System.Text.RegularExpressions; using UnityEditor; using UnityEngine; namespace Unity.VisualScripting { [Plugin(BoltCore.ID)] internal class Migration_1_4_13_to_1_5_0 : PluginMigration { public Migration_1_4_13_to_1_5_0(Plugin plu...
1.850788
4a48c70840189a18d740545a56a53311
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68038
{ "extension": "c-sharp", "max_stars_count": "6.0", "max_stars_repo_name": "easy66/MsgCenter", "max_stars_repo_path": "Assets/Scripts/MsgInvoker.cs", "provenance": "train-00000-of-00045.jsonl.gz:68039" }
starcoder
<gh_stars>1-10 /* * 回调执行器,用于执行缓存的消息(用户调用 PostMessage 产生) */ using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IMsgInvoker { MsgId msgId { get; } void Invoke(); } /// <summary> /// 不定参数的 Invoker, 注意:此类型执行性能比较差 /// </summary> public class MsgInvoke...
2.330549
66efd44aae21c6c515caa05cff60f6f2
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68039
{ "extension": "c-sharp", "max_stars_count": "191.0", "max_stars_repo_name": "dbMundada/Merchello", "max_stars_repo_path": "src/Merchello.Web/Search/Provisional/PrimedProductFilterGroupTree.cs", "provenance": "train-00000-of-00045.jsonl.gz:68040" }
starcoder
<reponame>dbMundada/Merchello namespace Merchello.Web.Search.Provisional { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Merchello.Core; using Merchello.Core.Acquired; using Merchello.Core.Logging; using Merch...
2.140926
c909a3043570a9a8b0d2caee7afb62d0
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68040
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Hostur/Games-Core", "max_stars_repo_path": "Assets/_Scripts/Core/Collections/FixedLengthCollection.cs", "provenance": "train-00000-of-00045.jsonl.gz:68041" }
starcoder
using System.Collections.Generic; namespace Core.Collections { public abstract class FixedLengthCollection<T> : IFixedLengthCollection<T> { protected readonly List<T> Elements; protected FixedLengthCollection(int capacity) { Elements = new List<T>(capacity); Capacity = capacity; } ...
3.492009
9493b8f3bfb0fcbc67156f008c433cac
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68041
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "tlecomte/SpecFlow.VS", "max_stars_repo_path": "Connectors/SpecFlow.VisualStudio.SpecFlowConnector.V2/Discovery/LoadContextPluginLoader.cs", "provenance": "train-00000-of-00045.jsonl.gz:68042" }
starcoder
namespace SpecFlow.VisualStudio.SpecFlowConnector.Discovery; public abstract class LoadContextPluginLoader : RuntimePluginLoader_Patch { private readonly AssemblyLoadContext _loadContext; public LoadContextPluginLoader(AssemblyLoadContext loadContext) { _loadContext = loadContext; } prot...
1.703571
666f8e127c9e9a055daec27fc984f503
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68042
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "HasanShahjahan/Pokedex", "max_stars_repo_path": "src/domain/core/Pokedex.Api/Controllers/PokemonController.cs", "provenance": "train-00000-of-00045.jsonl.gz:68043" }
starcoder
<reponame>HasanShahjahan/Pokedex using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Microsoft.Net.Http.Headers; using Newtonsoft.Json; using Pokedex.Api.Filters; using Pokedex.Common.Exceptions; using Pokedex.Domain.Interfaces; using Pokedex.Validator; using Syst...
2.297747
6adf865f59ca2b02243893913eaccc06
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68043
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "jessalbarian/FractalForest", "max_stars_repo_path": "New Unity Project/Assets/FractalForest/Scripts/MajorLazers.cs", "provenance": "train-00000-of-00045.jsonl.gz:68044" }
starcoder
using System.Collections; using System.Collections.Generic; using System.Diagnostics; using UnityEngine; public class MajorLazers : MonoBehaviour { private SteamVR_TrackedObject trackedObj; public GameObject laserPrefab; private GameObject laser; private Transform laserTransform; ...
2.091234
2a37fffb30540aa48faff39b3c6600af
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68044
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "lprichar/mobile-calc", "max_stars_repo_path": "MobileCalc/MobileCalc/MobileCalc/ViewModels/CalculatorViewModel.cs", "provenance": "train-00000-of-00045.jsonl.gz:68045" }
starcoder
namespace MobileCalc.ViewModels { public class CalculatorViewModel : ViewModelBase { public string Display { get; private set; } private int _currentNumber = 0; private int _storedNumber = 0; public void PressEquals() { _currentNumber = _storedNumber + _curr...
3.352953
2210db0663daa5ec4935cda0a44137b5
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68045
{ "extension": "c-sharp", "max_stars_count": "161.0", "max_stars_repo_name": "mariloutb/EntityFramework-Classic", "max_stars_repo_path": "test/Misc/PowerTools.Test/Utilities/EdmxUtilityTests.cs", "provenance": "train-00000-of-00045.jsonl.gz:68046" }
starcoder
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. namespace Microsoft.DbContextPackage.Utilities { using System; using System.Collections.Generic; using System.Data.Mapping; using System.IO; using System.Linq; us...
2.002749
06adcc769230a97a24b667a9a8a5eb5e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68046
{ "extension": "c-sharp", "max_stars_count": "52.0", "max_stars_repo_name": "bobbyangers/XrmUnitTest", "max_stars_repo_path": "NMemory.Base/Execution/Optimization/Rewriters/TableAccessRewriter.cs", "provenance": "train-00000-of-00045.jsonl.gz:68047" }
starcoder
// ---------------------------------------------------------------------------------- // <copyright file="TableScanRewriter.cs" company="NMemory Team"> // Copyright (C) 2012-2014 NMemory Team // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associat...
2.143368
06f84e0d2d033cf78ed84fb8e6cc11c2
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68047
{ "extension": "c-sharp", "max_stars_count": "2.0", "max_stars_repo_name": "pensivebrian/catalogstore", "max_stars_repo_path": "Microsoft.SqlServer.CatalogStore/CodeGen/SysSymmetricKeyCatalog.g.cs", "provenance": "train-00000-of-00045.jsonl.gz:68048" }
starcoder
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //---...
1.61567
73bcd193a28a4cb0d264f8ef83d58d00
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68048
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "HristoIgnev/Bookmarks", "max_stars_repo_path": "Source/Web/Bookmarks.Web/Views/Home/Index.cshtml", "provenance": "train-00000-of-00045.jsonl.gz:68049" }
starcoder
<gh_stars>1-10 <div class="row"> <div class="col-md-8 col-md-offset-2"> <p> To use our web application bla bla ... </p> <p> Download extension ... </p> </div> </div>
1.763871
37eb17b8cdf8fed8cfb9d1cbc99de633
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68049
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "jphacks/KS_1605", "max_stars_repo_path": "MemoTech/Scripts/Utility/ConnectLog.cs", "provenance": "train-00000-of-00045.jsonl.gz:68050" }
starcoder
using System; using System.Diagnostics; using System.Collections.Generic; using System.Linq; namespace MemoTech.Scripts.Utility { public class ConnectLog { private static int connectionCount = 0; private const int FRIENT_PERCENT = 60; public static int ConnectionCount { get { return connectionCount; } s...
3.177326
8bba3a8bd9437a7c94ee19f6658b89cb
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68050
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "marinkobabic/NServiceBus", "max_stars_repo_path": "IntegrationTests/TimeoutManager/MyServer/Scheduling/ScheduledTaskExecutedHandler.cs", "provenance": "train-00000-of-00045.jsonl.gz:68051" }
starcoder
<reponame>marinkobabic/NServiceBus using System; using NServiceBus; namespace MyServer.Scheduling { public class ScheduledTaskExecutedHandler : IHandleMessages<ScheduledTaskExecuted> { public void Handle(ScheduledTaskExecuted message) { Console.WriteLine("ScheduledTaskExecuted hand...
1.490397
fd7cc603b4624afe10ac69df3f5e3fbd
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68051
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "negi0109/ColorGradientToTexture", "max_stars_repo_path": "Assets/Negi0109/ColorGradientToTexture/Scripts/ColorFilter.cs", "provenance": "train-00000-of-00045.jsonl.gz:68052" }
starcoder
<gh_stars>1-10 using System; using System.Collections.Generic; using UnityEngine; namespace Negi0109.ColorGradientToTexture { [Serializable] public class ColorFilter { public enum Type { Step, Noise, Repeat, Scale, Threshold, ...
2.707943
527dcb83b6b01d80a6c0e40b77e78700
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68052
{ "extension": "c-sharp", "max_stars_count": "50.0", "max_stars_repo_name": "jamiemaguiredotnet/nBayes", "max_stars_repo_path": "nBayes/Index.cs", "provenance": "train-00000-of-00045.jsonl.gz:68053" }
starcoder
<gh_stars>10-100 namespace nBayes { using System.Collections.Generic; using System.Linq; public abstract class Index { public Index() { } public abstract int EntryCount { get; } public virtual void Add(params Entry[] documents) { for (int ...
2.644729
93158e5cbb66285d3518af683a7bef0b
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68053
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "JoelWhittle/MonoGOAP", "max_stars_repo_path": "core/MainMenuState.cs", "provenance": "train-00000-of-00045.jsonl.gz:68054" }
starcoder
<gh_stars>0 using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Input; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MonoEngine.core { public class MainMenuState : State { public override void OnStateE...
1.587741
def7b9520182ecb21766c83e6a6de62e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68054
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "Invisionware/Net", "max_stars_repo_path": "src/Invisionware.Net.GeoCoding.Google/Model/Bounds.cs", "provenance": "train-00000-of-00045.jsonl.gz:68055" }
starcoder
// *********************************************************************** // Assembly : Invisionware.Net.GeoCoding.Google // Author : shawn.anderson // Created : 06-28-2015 // // Last Modified By : shawn.anderson // Last Modified On : 06-28-2015 // ******************************************...
2.196023
453438eb8d614c224899a5ebc1b215d5
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68055
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "RhuanThales/mtg-ultimate", "max_stars_repo_path": "Shop.Mtg/Shop.Mtg.Repositorios.Entity/EdicoesRepositorio.cs", "provenance": "train-00000-of-00045.jsonl.gz:68056" }
starcoder
<filename>Shop.Mtg/Shop.Mtg.Repositorios.Entity/EdicoesRepositorio.cs using Shop.Mtg.Dados.Entity.Context; using Shop.Mtg.Dominio; using Shop.Mtg.Repositorios.Comum.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Entity; nam...
2.355282
6da6178f4c7c4da946a79ec490fcd84e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68056
{ "extension": "c-sharp", "max_stars_count": "5.0", "max_stars_repo_name": "bbuerger/ndifference", "max_stars_repo_path": "src/Core/Files/AssemblyReference.cs", "provenance": "train-00000-of-00045.jsonl.gz:68057" }
starcoder
using System.Globalization; namespace NDifference { /// <summary> /// Reference to another assembly. /// </summary> public class AssemblyReference { public string Name { get; set; } public string Version { get; set; } public override string ToString() { return string.Format(CultureInfo.CurrentUICult...
2.83831
319384a77c3e5d4cb7c90a3312a1db88
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68057
{ "extension": "c-sharp", "max_stars_count": "1442.0", "max_stars_repo_name": "alanta/Wyam", "max_stars_repo_path": "src/core/Wyam.Common/Configuration/ISettings.cs", "provenance": "train-00000-of-00045.jsonl.gz:68058" }
starcoder
using System; using System.Collections.Generic; using System.Reflection; using Wyam.Common.Execution; using Wyam.Common.IO; using Wyam.Common.Meta; namespace Wyam.Common.Configuration { /// <summary> /// Stores global settings that control behavior and execution. /// </summary> /// <metadata cref="Key...
1.836817
3e58c782077292de86fdcf9819358d0a
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68058
{ "extension": "c-sharp", "max_stars_count": "176.0", "max_stars_repo_name": "Long-Man/ErsatzTV", "max_stars_repo_path": "ErsatzTV.Infrastructure/Jellyfin/Models/JellyfinStudioResponse.cs", "provenance": "train-00000-of-00045.jsonl.gz:68059" }
starcoder
namespace ErsatzTV.Infrastructure.Jellyfin.Models { public class JellyfinStudioResponse { public string Id { get; set; } public string Name { get; set; } } }
1.279854
c9aaebc47b74131a6a6dc1c8e571142f
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68059
{ "extension": "c-sharp", "max_stars_count": "26.0", "max_stars_repo_name": "NeutroniumCore/CodeDependencyScaner", "max_stars_repo_path": "codevis/DependencyForceGraph/Do/MethodCall.cs", "provenance": "train-00000-of-00045.jsonl.gz:68060" }
starcoder
<reponame>NeutroniumCore/CodeDependencyScaner // This code is distributed under MIT license. // Copyright (c) 2014 <NAME>, <NAME> // See license.txt or http://opensource.org/licenses/mit-license.php #region usings using System; using System.Reflection; #endregion namespace Gma.CodeVisuals.Generator.DependencyForc...
2.514914
2ffa88c61cd3792b19c92c676ce2eeb9
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68060
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "valu8/Plotly.Blazor", "max_stars_repo_path": "Plotly.Blazor/Traces/ParCoordsLib/Dimension.cs", "provenance": "train-00000-of-00045.jsonl.gz:68061" }
starcoder
/* * THIS FILE WAS GENERATED BY PLOTLY.BLAZOR.GENERATOR */ using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; using System.Text.Json.Serialization; namespace Plotly.Blazor.Traces.ParCoordsLib...
2.500877
dbd67b1c4ae6b66de43a43f9ea29db0b
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68061
{ "extension": "c-sharp", "max_stars_count": "37.0", "max_stars_repo_name": "ircnelson/enjoy-cqrs", "max_stars_repo_path": "test/EnjoyCQRS.UnitTests.Shared/StubApplication/Domain/FooAggregate/FooCreated.cs", "provenance": "train-00000-of-00045.jsonl.gz:68062" }
starcoder
<gh_stars>10-100 using System; using EnjoyCQRS.Events; namespace EnjoyCQRS.UnitTests.Shared.StubApplication.Domain.FooAggregate { public class FooCreated : DomainEvent { public FooCreated(Guid aggregateId) : base(aggregateId) { } } }
1.44552
b8334da5ecf38cae1937eaeaed8f6ad4
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68062
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "simcoster/DoppleTry2", "max_stars_repo_path": "GraphBuilder/InstructionNodes/NewObjectNode.cs", "provenance": "train-00000-of-00045.jsonl.gz:68063" }
starcoder
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Mono.Cecil; using Mono.Cecil.Cil; using System.Runtime.Serialization; namespace Dopple.InstructionNodes { [DataContract] public class NewObjectNode : InstructionNode { public i...
2.181691
a413e3806a7feb28828b1cce8bb494fb
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68063
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Aragas/NexusMods.Monitor", "max_stars_repo_path": "src/NexusMods.Monitor.Scraper.Application/Queries/Issues/IssueQueries.cs", "provenance": "train-00000-of-00045.jsonl.gz:68064" }
starcoder
<reponame>Aragas/NexusMods.Monitor<gh_stars>0 using NexusMods.Monitor.Scraper.Domain.AggregatesModel.IssueAggregate; using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace NexusMods.Monitor.Scraper.Applica...
1.955905
3d8bdb8cfa3713a08be501e1928ec15f
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68064
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "jpann/NerdBot", "max_stars_repo_path": "NerdBot/NerdBot.TestsHelper/ConfigReader.cs", "provenance": "train-00000-of-00045.jsonl.gz:68065" }
starcoder
using System; using System.IO; using System.Reflection; using Nini.Config; namespace NerdBot.TestsHelper { public class ConfigReader { private string AssemblyLocation() { var assembly = Assembly.GetExecutingAssembly(); var codebase = new Uri(assembly.CodeBas...
2.619447
f375592764eac4ea3233a32fee746a9c
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68065
{ "extension": "c-sharp", "max_stars_count": "8.0", "max_stars_repo_name": "JimCordwell/Free.FileFormats.VRML", "max_stars_repo_path": "05 Fields/ImplementationSpecific/MFNumbers.cs", "provenance": "train-00000-of-00045.jsonl.gz:68066" }
starcoder
using System.Collections.Generic; namespace Free.FileFormats.VRML.Fields { public class MFNumbers : X3DArrayField { public List<object> Values=new List<object>(); public MFNumbers() { } public MFNumbers(List<object> values) { Values=values; } } }
1.917496
29676d57d51a0a5c7e5f5fdb08660053
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68066
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "gamenet2/GameNetCore", "max_stars_repo_path": "src/Middleware/HeaderPropagation/src/HeaderPropagationValues.cs", "provenance": "train-00000-of-00045.jsonl.gz:68067" }
starcoder
<reponame>gamenet2/GameNetCore<filename>src/Middleware/HeaderPropagation/src/HeaderPropagationValues.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.Gener...
2.021535
e3047d053f5063280cff53e92f7779af
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68067
{ "extension": "c-sharp", "max_stars_count": "4.0", "max_stars_repo_name": "masastack/MASA.Auth", "max_stars_repo_path": "src/Services/Masa.Auth.Service.Admin/Infrastructure/EntityConfigurations/Organizations/PositionEntityTypeConfiguration.cs", "provenance": "train-00000-of-00045.jsonl.gz:68068" }
starcoder
<gh_stars>1-10 // Copyright (c) MASA Stack All rights reserved. // Licensed under the Apache License. See LICENSE.txt in the project root for license information. namespace Masa.Auth.Service.Admin.Infrastructure.EntityConfigurations.Organizations; public class PositionEntityTypeConfiguration : IEntityTypeConfigurati...
1.561592
f759e25609ce678c8610a490b4e7386e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68068
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "ritter-ti/goal", "max_stars_repo_path": "tests/Infra.Crosscutting.Tests/Paginng/Pagination_Paginate.cs", "provenance": "train-00000-of-00045.jsonl.gz:68069" }
starcoder
<reponame>ritter-ti/goal using System; using System.Collections.Generic; using System.Linq; using FluentAssertions; using Goal.Seedwork.Infra.Crosscutting.Collections; using Goal.Seedwork.Infra.Crosscutting.Extensions; using Goal.Seedwork.Infra.Crosscutting.Tests.Mocks; using Xunit; namespace Goal.Seedwork.Infra.Cross...
1.922966
6d69c3acc08c2ffdbb4d0653da4024a5
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68069
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "vnessa-su/Factory.Solution", "max_stars_repo_path": "Factory/Models/Engineer.cs", "provenance": "train-00000-of-00045.jsonl.gz:68070" }
starcoder
<filename>Factory/Models/Engineer.cs using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Factory.Models { public class Engineer { public int EngineerId { get; set; } [Display(Name = "First Name")] [C...
2.707609
dc797c22a12ec28922d6787a2f222706
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68070
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "luhenry/xamarin-macios", "max_stars_repo_path": "tests/generator/bug15799.cs", "provenance": "train-00000-of-00045.jsonl.gz:68071" }
starcoder
<gh_stars>0 using System; using System.Drawing; using MonoTouch.ObjCRuntime; using MonoTouch.Foundation; using MonoTouch.UIKit; using MonoTouch.CoreBluetooth; namespace Bug15799 { // Device Manager [BaseType (typeof (NSObject))] public partial interface Foo : ICBCentralManagerDelegate, ICBPeripheralDelegate { } }
0.928554
b46184d6d08b9c212eb242b9f6200f74
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68071
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "adams85/reactivemvvm", "max_stars_repo_path": "source/Karambolo.ReactiveMvvm/Binding/IDataBindingEvent.cs", "provenance": "train-00000-of-00045.jsonl.gz:68072" }
starcoder
<reponame>adams85/reactivemvvm namespace Karambolo.ReactiveMvvm.Binding { public interface IDataBindingEvent<TSource, TTarget> : IReactiveBindingEvent<TSource, TTarget> { bool FlowsToSource { get; } bool ConversionFailed { get; } } }
1.603722
7795701e00d91b4810a8ebbd3a2802fa
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68072
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "CheeseSharp/cheese-sharp-lambda-runner", "max_stars_repo_path": "tests/CheeseSharp.Lambda.TestTool.Runner.Unit/SimpleServiceShould.cs", "provenance": "train-00000-of-00045.jsonl.gz:68073" }
starcoder
<filename>tests/CheeseSharp.Lambda.TestTool.Runner.Unit/SimpleServiceShould.cs using Amazon.Lambda.TestTool; using Amazon.Lambda.TestTool.Runtime; using CheeseSharp.Lambda.TestTool.Runner.Models; using CheeseSharp.Lambda.TestTool.Runner.Processors; using CheeseSharp.Lambda.TestTool.Runner.Services; using FluentAsserti...
2.12898
9b36f141e176d2f6a722fd43b2ab0164
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68073
{ "extension": "c-sharp", "max_stars_count": "11.0", "max_stars_repo_name": "maxild/CsLex", "max_stars_repo_path": "CsLexLibTest/Program.cs", "provenance": "train-00000-of-00045.jsonl.gz:68074" }
starcoder
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CsLexLib; using System.IO; namespace CsLexLibTest { class Program { static void Main(string[] args) { var s = new StreamReader(args[0]); MyLex yy = ...
2.649418
1515f1350f0602bc7f75ee55876affa4
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68074
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Maurokarc/net-core-api-starter", "max_stars_repo_path": "NetCoreApi.Infrastructure/Migrations/20210523061526_InitialMigration.cs", "provenance": "train-00000-of-00045.jsonl.gz:68075" }
starcoder
<gh_stars>0 using System; using Microsoft.EntityFrameworkCore.Migrations; namespace NetCoreApi.Infrastructure.Migrations { public partial class InitialMigration : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( ...
1.751253
2ee638d228bb6544c409c5d8ee565ea4
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68075
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "HDDecisions/Polly.Contrib.CachePolicy", "max_stars_repo_path": "src/Polly.Contrib.CachePolicy/Providers/Logging/LoggingProviderOptions.cs", "provenance": "train-00000-of-00045.jsonl.gz:68076" }
starcoder
namespace Polly.Contrib.CachePolicy.Providers.Logging { /// <summary> /// Configuration option for <see cref="LoggingProvider{TResult}"/>. /// </summary> public class LoggingProviderOptions { /// <summary> /// Metric name for cache get operation latencies. /// </summary> ...
2.04278
5b24d497a5d0ecaa2a0bb0394c2d81a6
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68076
{ "extension": "c-sharp", "max_stars_count": "2.0", "max_stars_repo_name": "hoangduit/MapSuiteGisEditor", "max_stars_repo_path": "MapSuiteGisEditor/GisEditorInfrastructure/Shares/UIs/Projections/ViewModel/OtherProjectionViewModel.cs", "provenance": "train-00000-of-00045.jsonl.gz:68077" }
starcoder
<reponame>hoangduit/MapSuiteGisEditor<filename>MapSuiteGisEditor/GisEditorInfrastructure/Shares/UIs/Projections/ViewModel/OtherProjectionViewModel.cs /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional...
1.889486
e86ad4bc5ade8c92e8f41fc868e04a73
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68077
{ "extension": "c-sharp", "max_stars_count": "2.0", "max_stars_repo_name": "lightning-rmc/lightning", "max_stars_repo_path": "src/core/Lightning.Core/Rendering/Layers/ILayer.cs", "provenance": "train-00000-of-00045.jsonl.gz:68078" }
starcoder
<filename>src/core/Lightning.Core/Rendering/Layers/ILayer.cs<gh_stars>1-10 using OpenCvSharp; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lightning.Core.Rendering { public interface ILayer<in TFrame> : IDisposable { string Name { get...
2.328094
06b524c4b4a6eae973a36dd70977e5bb
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68078
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Sankra/DIPSbot", "max_stars_repo_path": "src/Tests/BikeShareClientTests.cs", "provenance": "train-00000-of-00045.jsonl.gz:68079" }
starcoder
<gh_stars>0 using System.Linq; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading.Tasks; using BikeshareClient; using Hjerpbakk.DIPSBot.Clients; using Hjerpbakk.DIPSBot.Configuration; using Hjerpbakk.DIPSBot.Model.BikeSharing; using Microsoft.Extensions.Caching.Memory; using Tests.Te...
1.762483
a91fa3be61f6031f9664809cc4af7f1a
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68079
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "dragobaltov/Programming-Basics-And-Fundamentals", "max_stars_repo_path": "BikeRace2/BikeRace2/Program.cs", "provenance": "train-00000-of-00045.jsonl.gz:68080" }
starcoder
<filename>BikeRace2/BikeRace2/Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BikeRace2 { class Program { static void Main(string[] args) { int juniors = int.Parse(Console.ReadLine()); ...
3.265739
3975b45f14f40185314a3ebd9728345a
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68080
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "RenatoPacheco/IntegracaoContinua.Csharp", "max_stars_repo_path": "test/CpfTypeTest.cs", "provenance": "train-00000-of-00045.jsonl.gz:68081" }
starcoder
<reponame>RenatoPacheco/IntegracaoContinua.Csharp<filename>test/CpfTypeTest.cs using System; using Xunit; namespace IntegracaoContinua.Csharp.Teste { public class CpfTypeTest { [Theory] [InlineData("153.179.966-35", "153.179.966-35")] [InlineData("15317996635", "153.179.966-35")] ...
2.869458
0bc64f778b697ffb702883948555f933
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68081
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "xmj-alliance/pit", "max_stars_repo_path": "dotnet/web-yaml-config/WebYamlConfig.App/Controllers/APIController.cs", "provenance": "train-00000-of-00045.jsonl.gz:68082" }
starcoder
<gh_stars>0 using System.Text.Json; using Microsoft.AspNetCore.Mvc; using WebYamlConfig.Models; namespace WebYamlConfig.Controllers { [ApiController] [Route("[controller]")] public class APIController : ControllerBase { private readonly MySecret appSecret; public APIController(MySecr...
2.482191
137d506138405e726b1bc8734c267ecc
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68082
{ "extension": "c-sharp", "max_stars_count": "10.0", "max_stars_repo_name": "dustinspecker/pulumi-libvirt", "max_stars_repo_path": "sdk/dotnet/Outputs/DomainDisk.cs", "provenance": "train-00000-of-00045.jsonl.gz:68083" }
starcoder
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; names...
1.979446
7f27bd65bb1c8ad03c4fd8f91b8402ee
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68083
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "sala91/voat", "max_stars_repo_path": "src/Voat.UI/Models/AddSubverse.cs", "provenance": "train-00000-of-00045.jsonl.gz:68084" }
starcoder
<filename>src/Voat.UI/Models/AddSubverse.cs #region LICENSE /* Copyright(c) Voat, Inc. This file is part of Voat. This source file is subject to version 3 of the GPL license, that is bundled with this package in the file LICENSE, and is available online at http://www.gnu.org/licenses/gpl-3.0...
2.556997
aa1f855fcb0c67bf62897860d98616b2
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68084
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "mintyfusion/moov-dotnet-sdk", "max_stars_repo_path": "src/Service/InstitutionService.cs", "provenance": "train-00000-of-00045.jsonl.gz:68085" }
starcoder
namespace Tutkoo.mintyfusion.Moov.Sdk.Service { #region Namespace using Interface; using Model.Institution; using System; using System.Collections.Generic; using System.Threading.Tasks; using Tutkoo.Essentials; #endregion Namespace #region Class public class InstitutionService ...
2.386114
0464231190ba67bac69a8867d52c8027
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68085
{ "extension": "c-sharp", "max_stars_count": "46.0", "max_stars_repo_name": "DavidRieman/WheelMUD", "max_stars_repo_path": "src/Actions/Admin/GoTo.cs", "provenance": "train-00000-of-00045.jsonl.gz:68086" }
starcoder
<reponame>DavidRieman/WheelMUD //----------------------------------------------------------------------------- // <copyright file="GoTo.cs" company="WheelMUD Development Team"> // Copyright (c) WheelMUD Development Team. See LICENSE.txt. This file is // subject to the Microsoft Public License. All other rights ...
2.575055
25b53f0219ab3ce8ef171ad47f949e73
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68086
{ "extension": "c-sharp", "max_stars_count": "34.0", "max_stars_repo_name": "StevenTCramer/BlazorSerialization", "max_stars_repo_path": "Client/BenchmarkHttpHandler.cs", "provenance": "train-00000-of-00045.jsonl.gz:68087" }
starcoder
<reponame>StevenTCramer/BlazorSerialization<filename>Client/BenchmarkHttpHandler.cs using System; using System.Diagnostics; using System.IO; using System.Net; using System.Net.Http; using System.Threading; using System.Threading.Tasks; namespace Client { public class BenchmarkHttpHandler : DelegatingHandler {...
2.436823
c422cb37f4cf182c5fecd5767154e5ca
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68087
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "openjw/nenter", "max_stars_repo_path": "nenter/Nenter.Dapper.Linq/Helpers/EntityTableCacheHelper.cs", "provenance": "train-00000-of-00045.jsonl.gz:68088" }
starcoder
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Reflection; namespace Nenter.Dapper.Linq.Helpers { internal static class EntityTableCacheHelp...
2.759344
fdbf738ce5286a1855bcbc14ed66acad
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68088
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "OBeautifulCode/OBeautifulCode.CodeGen", "max_stars_repo_path": "OBeautifulCode.CodeGen.ModelObject.Test/Models/Scripted/Cloning/PublicSet/Nullable/ModelCloningPublicSetNullableChild2.cs", "provenance": "train-00000-of-00045.jsonl.gz:6...
starcoder
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="ModelCloningPublicSetNullableChild2.cs" company="OBeautifulCode"> // Copyright (c) OBeautifulCode 2018. All rights reserved. // </copyright> // <auto-generated> // Sourced fro...
1.634256
598308b3a380bf96980d1da07766db7d
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68089
{ "extension": "c-sharp", "max_stars_count": "51.0", "max_stars_repo_name": "riQQ/MTGAHelper-Windows-Client", "max_stars_repo_path": "MTGAHelper.Lib.OutputLogParser.Models/UnityCrossThreadLogger/_GetEventPlayerCourseV2/_ModelRaw.cs", "provenance": "train-00000-of-00045.jsonl.gz:68090" }
starcoder
<reponame>riQQ/MTGAHelper-Windows-Client //using System; //using System.Collections.Generic; //using MTGAHelper.Entity.OutputLogParsing; //namespace MTGAHelper.Lib.OutputLogParser.Models.UnityCrossThreadLogger //{ // public class WinLossGate // { // public int MaxWins { get; set; } // public int M...
1.367468
ff5c6dd1b16c3a952f48fa82bd7c1f0b
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68090
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Revature-Cinephiliacs/ForumRepo", "max_stars_repo_path": "Testing/ForumLogicTests.cs", "provenance": "train-00000-of-00045.jsonl.gz:68091" }
starcoder
using BusinessLogic; using CineAPI.Controllers; using Repository.Models; using Microsoft.AspNetCore.Mvc; using Moq; using Repository; using System; using System.Threading.Tasks; using Xunit; using GlobalModels; using Comment = Repository.Models.Comment; using Microsoft.Extensions.Logging; using Microsoft.Extensions.De...
2.15104
ea892248707ba7a5c40ac501686dffcf
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68091
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "RVCorp/GamesToGo", "max_stars_repo_path": "GamesToGo.Editor/Project/Arguments/ComparePlayerHasTokenTypeArgument.cs", "provenance": "train-00000-of-00045.jsonl.gz:68092" }
starcoder
using GamesToGo.Common.Game; using JetBrains.Annotations; namespace GamesToGo.Editor.Project.Arguments { [UsedImplicitly] public class ComparePlayerHasTokenTypeArgument : Argument { public override int ArgumentTypeID => 14; public override ArgumentReturnType Type => ArgumentReturnType.Co...
2.323435
12a00bcffcedd7ddb2a89397359c9341
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68092
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "openplannerteam/Itinero-Transit", "max_stars_repo_path": "test/Itinero.Transit.Tests.Functional/Utils/StringConstants.cs", "provenance": "train-00000-of-00045.jsonl.gz:68093" }
starcoder
using System; namespace Itinero.Transit.Tests.Functional.Utils { public static class StringConstants { public static readonly DateTime TestDate = new DateTime(2020, 01, 06, 09, 00, 00).ToUniversalTime().Date; public const string OsmNearStationBruggeLatLon = "https://www.openstreetmap.org/#map...
1.748713
137294813c4b655b2d395c64a397220e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68093
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "tomtomdurrant/tax_calculator", "max_stars_repo_path": "exercises/dotnet/TaxCalculator/StaticEmissions.cs", "provenance": "train-00000-of-00045.jsonl.gz:68094" }
starcoder
using System.Collections.Generic; using static System.Int32; namespace TaxCalculator { public static class StaticEmissions { public static Dictionary<int, int> PetrolEmissionsDictionary = new Dictionary<int, int> { {0, 0}, {50, 10}, {75, 25}, {90...
2.341133
db45ea9dbaf3c6b8ff36d516fa1762f4
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68094
{ "extension": "c-sharp", "max_stars_count": "946.0", "max_stars_repo_name": "hexrain/utymap", "max_stars_repo_path": "unity/library/UtyMap.Unity/Data/MapDataStore.cs", "provenance": "train-00000-of-00045.jsonl.gz:68095" }
starcoder
<filename>unity/library/UtyMap.Unity/Data/MapDataStore.cs using System; using System.Collections.Generic; using System.Linq; using UtyDepend; using UtyDepend.Config; using UtyMap.Unity.Infrastructure.Primitives; using UtyRx; namespace UtyMap.Unity.Data { /// <summary> Defines behavior of class responsible of mapd...
2.399379
2c3eba71f46f952858e9a4b9380649b3
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68095
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "dubrie/Telepathy", "max_stars_repo_path": "future/sparrow-poc/SchedulerClient/Program.cs", "provenance": "train-00000-of-00045.jsonl.gz:68096" }
starcoder
<gh_stars>1-10 // Copyright (c) Microsoft Corporation. // Licensed under the MIT license using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; using Grpc.Core; using Grpc.Net.Client; using Scheduler; namespace SchedulerClient { ...
2.457746
7c77d622e4745610f9fc61e6228b8eae
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68096
{ "extension": "c-sharp", "max_stars_count": "46.0", "max_stars_repo_name": "SunsetQuest/Asm4GCN", "max_stars_repo_path": "NOpenCL/NOpenCL/AddressQualifier.cs", "provenance": "train-00000-of-00045.jsonl.gz:68097" }
starcoder
<gh_stars>10-100 /* * Copyright (c) Tunnel Vision Laboratories, LLC. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project root for full license information. * Modified for use in Asm4GCN. See https://github.com/tunnelvisionlabs/NOpenCL for original.*/ namespace NOpenCL { /// <...
2.2876
31486cce251dba23eb296320356d1a03
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68097
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "zxz13561/WebFormMiniSample", "max_stars_repo_path": "WebFormMiniSample/AccountingNote/SystemAdmin/UserList.aspx.cs", "provenance": "train-00000-of-00045.jsonl.gz:68098" }
starcoder
<filename>WebFormMiniSample/AccountingNote/SystemAdmin/UserList.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using AccointingNote.Auth; using AccountingNote; namespace AccountingNote.SystemAdmin { public partial ...
1.979932
dfd7dad1bbd668bae08a92c63acecf91
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68098
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "aricooperman/Lean", "max_stars_repo_path": "Indicators/DeMarkerIndicator.cs", "provenance": "train-00000-of-00045.jsonl.gz:68099" }
starcoder
<filename>Indicators/DeMarkerIndicator.cs /* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with...
2.603871
470eb98cfa61a4ee48b94ee2ff3c9151
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68099
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "aliv59git/C-2N_HomeAndExam", "max_stars_repo_path": "8.HomeTexFiles/10.ExtraactTextFromXML/ExtraactTextFromXML.cs", "provenance": "train-00000-of-00045.jsonl.gz:68100" }
starcoder
<reponame>aliv59git/C-2N_HomeAndExam using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; class ExtraactTextFromXML { //• Write a program that extracts from given XML file all the text without the tags. static void Main(string[] ...
3.089632
41013a622ce0c9665579d30c7ad66f63
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68100
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "ToTo-Mo/MLAgent-RTS-Unity", "max_stars_repo_path": "Assets/Scripts/ModularUnit/MovementMouse.cs", "provenance": "train-00000-of-00045.jsonl.gz:68101" }
starcoder
<filename>Assets/Scripts/ModularUnit/MovementMouse.cs<gh_stars>0 using ToToMo.Utiltiy; using UnityEngine; [RequireComponent(typeof(IMovePosition))] public class MovementMouse : MonoBehaviour { private void Update() { if(Input.GetMouseButtonDown(1)) { GetComponent<IMovePosition>().SetMov...
2.009592
516e27c11deb8562da788e7dab2900f7
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68101
{ "extension": "c-sharp", "max_stars_count": "12.0", "max_stars_repo_name": "ekonyukov/Tochka.JsonRpc", "max_stars_repo_path": "src/Tochka.JsonRpc.Common/Models/Response/Errors/Error.cs", "provenance": "train-00000-of-00045.jsonl.gz:68102" }
starcoder
<filename>src/Tochka.JsonRpc.Common/Models/Response/Errors/Error.cs using System.Diagnostics.CodeAnalysis; namespace Tochka.JsonRpc.Common.Models.Response.Errors { [ExcludeFromCodeCoverage] public class Error<T> : IError { public int Code { get; set; } // SHOULD be limited to a concise sin...
2.385398
37ef71ad2759d5bee1ec63489addb7b2
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68102
{ "extension": "c-sharp", "max_stars_count": "2.0", "max_stars_repo_name": "craigs100/Umbraco-CMS", "max_stars_repo_path": "src/Umbraco.Core/Persistence/Factories/ContentBaseFactory.cs", "provenance": "train-00000-of-00045.jsonl.gz:68103" }
starcoder
using System; using System.Collections.Generic; using System.Linq; using Umbraco.Core.Models; using Umbraco.Core.Persistence.Dtos; using Umbraco.Core.Persistence.Repositories; using Umbraco.Core.PropertyEditors; namespace Umbraco.Core.Persistence.Factories { internal class ContentBaseFactory { /// <su...
2.0803
b5ead0d918e362a06e0830498da7c5f0
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68103
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "guy-murphy/conclave-public", "max_stars_repo_path": "Conclave.CMS/Resources/Views/Razor/default.cshtml", "provenance": "train-00000-of-00045.jsonl.gz:68104" }
starcoder
<gh_stars>1-10 <!DOCTYPE html> <html> <head> <title>default template</title> </head> <body> <h1>default template</h1> <p> To be or not to be that is the question. </p> </body> </html>
2.379243
b1f11d63a9533e256daeab565cbaad14
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68104
{ "extension": "c-sharp", "max_stars_count": "2.0", "max_stars_repo_name": "thewoodknight/TheCardboardKnight", "max_stars_repo_path": "CardboardKnight.UI/Views/VideosView.xaml.cs", "provenance": "train-00000-of-00045.jsonl.gz:68105" }
starcoder
using CardboardKnight.Core.ViewModels; using MvvmCross.Forms.Views; using Xamarin.Forms.Xaml; namespace CardboardKnight.UI.Views { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class VideosView : MvxContentView<VideosViewModel> { public VideosView() { Initiali...
1.384146
7bb51b511f4646105a42ada5a271848f
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68105
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "queenbeans/ggj-2021-client", "max_stars_repo_path": "Assets/PanZoom/Scripts/Third-Party Dependent/PanZoomEasingBehavior.cs", "provenance": "train-00000-of-00045.jsonl.gz:68106" }
starcoder
using System.Collections; using System.Collections.Generic; using UnityEngine; using System; using DentedPixel; namespace Dossamer.PanZoom { [RequireComponent(typeof(PanZoomBehavior))] public class PanZoomEasingBehavior : MonoBehaviour { PanZoomBehavior pz; Camera pzCam; List<int>...
2.014642
b141b1ef86b1f316426e09fa8a53a6a6
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68106
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "xueshzhao/CSharpSamples", "max_stars_repo_path": "DotCoreTrial/TutorialSample/EnumerableSample.cs", "provenance": "train-00000-of-00045.jsonl.gz:68107" }
starcoder
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SampleProgrames.TutorialSample { class EnumerableSample { static void Main() { /* IEnumerable<Student> ies=Enumerable.Range(1, 5).Select((i,inde...
3.231175
69ac6447cbedab24803b827995ad77c1
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68107
{ "extension": "c-sharp", "max_stars_count": "3.0", "max_stars_repo_name": "brminnick/HelloMauiMarkup", "max_stars_repo_path": "src/ViewModels/MainViewModel.cs", "provenance": "train-00000-of-00045.jsonl.gz:68108" }
starcoder
<filename>src/ViewModels/MainViewModel.cs using System.Windows.Input; using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.Input; namespace HelloMauiMarkup; partial class MainViewModel : BaseViewModel { [ObservableProperty] int _clickCount = 0; [ICommand] public void IncrementClickMeButton() ...
1.697625
94248e2dcdfb7497a93e95dda73c4df4
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68108
{ "extension": "c-sharp", "max_stars_count": "178.0", "max_stars_repo_name": "wisdark/SharpImpersonation", "max_stars_repo_path": "SharpImpersonation/Resources/CheckPrivileges.cs", "provenance": "train-00000-of-00045.jsonl.gz:68109" }
starcoder
using System; using System.Runtime.InteropServices; using System.Text; namespace SharpImpersonation { class CheckPrivileges { //////////////////////////////////////////////////////////////////////////////// //https://blogs.msdn.microsoft.com/cjacks/2006/10/08/how-to-determine-if-a-user-is-a-m...
2.461023
07715a68b5bccf7150bda63a8cb7d40a
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68109
{ "extension": "c-sharp", "max_stars_count": "64.0", "max_stars_repo_name": "manfred-brands/nunit.analyzers", "max_stars_repo_path": "src/nunit.analyzers/SameAsIncompatibleTypes/SameAsIncompatibleTypesConstants.cs", "provenance": "train-00000-of-00045.jsonl.gz:68110" }
starcoder
namespace NUnit.Analyzers.SameAsIncompatibleTypes { internal class SameAsIncompatibleTypesConstants { internal const string Title = "Incompatible types for SameAs constraint"; internal const string Message = "The SameAs constraint always fails because the actual and expected values have mutually...
1.594399
42459e104dcd0b500e2eb4dbb3c44c5e
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68110
{ "extension": "c-sharp", "max_stars_count": "91.0", "max_stars_repo_name": "Const-me/Vrmac", "max_stars_repo_path": "VrmacVideo/IO/Kernel/eFileFlags.cs", "provenance": "train-00000-of-00045.jsonl.gz:68111" }
starcoder
using System; namespace VrmacVideo.IO { [Flags] public enum eFileFlags: int { None = 0, O_RDONLY = 0, O_WRONLY = 1, O_RDWR = 2, // See printEnums.cpp O_CREAT = 0x40, O_EXCL = 0x80, O_NOCTTY = 0x100, O_TRUNC = 0x200, O_APPEND = 0x400, O_NONBLOCK = 0x800, O_ASYNC = 0x2000, O_DIRECTORY = 0...
2.192744
4d98371f81c538de2f9b1b21d04d9427
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68111
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "anseketamen/DisableFadein", "max_stars_repo_path": "FormMain.cs", "provenance": "train-00000-of-00045.jsonl.gz:68112" }
starcoder
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; using System.Media; namespace DisableFadein { public partial class FormMain : Form ...
2.548758
9421b7610ecbf167f4ee9b4d3a7940b2
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68112
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Mayrond/ExampleWebApi", "max_stars_repo_path": "ExampleWebApi/Infrastructure/DependencyInjector.cs", "provenance": "train-00000-of-00045.jsonl.gz:68113" }
starcoder
using System; using System.Data.Entity; using System.Linq; using System.Reflection; using System.Web.Http; using Autofac; using Autofac.Integration.WebApi; using AutoMapper; using ExampleWebApi.Converters; using ExampleWebApi.Services; using ExampleWebApi.Services.Interfaces; namespace ExampleWebApi.Infrastructure { ...
2.146727
f5a88a4175aaede41d5d43a5d52b0dd3
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68113
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "liwenyu1120/test", "max_stars_repo_path": "NFine.Web/Areas/SystemManage/Controllers/ItemsDataController.cs", "provenance": "train-00000-of-00045.jsonl.gz:68114" }
starcoder
/******************************************************************************* * Copyright © 2016 NFine.Framework 版权所有 * Author: NFine * Description: NFine快速开发平台 *********************************************************************************/ using NFine.Application.SystemManage; using NFine.Code; using NFine...
1.905614
0fc3931df5fcf893b041edaea996726a
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68114
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "loganwol/csvserialization", "max_stars_repo_path": "src/CSV.Serialization/CsvSerializer.cs", "provenance": "train-00000-of-00045.jsonl.gz:68115" }
starcoder
<gh_stars>0 namespace CSV.Serialization { using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tas...
2.427257
90eaff87a142875827558c68838081ba
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68115
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "dvpz/CleanArchitecture.WorkerService", "max_stars_repo_path": "src/CleanArchitecture.Core/Interfaces/IQueueSender.cs", "provenance": "train-00000-of-00045.jsonl.gz:68116" }
starcoder
<filename>src/CleanArchitecture.Core/Interfaces/IQueueSender.cs using System.Threading.Tasks; namespace CleanArchitecture.Core.Interfaces { public interface IQueueSender { Task SendMessageToQueue(string message, string queueName); } }
1.956704
2077ab6786f9c7a341bbc8b19bef867d
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68116
{ "extension": "c-sharp", "max_stars_count": "7.0", "max_stars_repo_name": "Hyperlnq/HyperSerializer", "max_stars_repo_path": "HyperSerializer.Benchmarks/Experiments/TestObjects.cs", "provenance": "train-00000-of-00045.jsonl.gz:68117" }
starcoder
using MessagePack; using ProtoBuf; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hyper.Benchmarks.Experiments { [MessagePackObject(), ProtoContract()] public class TestWithStrings { [Key(1), ProtoMember(1)] pub...
2.061283
d22e27baa5632d13e30327499db028e0
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68117
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "FoxDieSolid/Mantle", "max_stars_repo_path": "v0/Mantle/Mantle.Messaging.Azure/AzureStorageQueueEndpointManager.cs", "provenance": "train-00000-of-00045.jsonl.gz:68118" }
starcoder
using System; using Mantle.Azure; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Queue; namespace Mantle.Messaging.Azure { public abstract class AzureStorageQueueEndpointManager : IPublisherEndpointManager { protected readonly CloudQueue CloudQueue; protected readon...
2.266617
f686cd9defa82d4b9ae63faa0cbd2047
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68118
{ "extension": "c-sharp", "max_stars_count": "3.0", "max_stars_repo_name": "uranometrical/aurora", "max_stars_repo_path": "Aurora.Game/Overlays/UtilityBarBackground.cs", "provenance": "train-00000-of-00045.jsonl.gz:68119" }
starcoder
<reponame>uranometrical/aurora<gh_stars>1-10 using osu.Framework.Graphics; using osu.Framework.Graphics.Colour; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Framework.Input.Events; namespace Aurora.Game.Overlays { public class UtilityBarBackground : Container { ...
2.229385
7a5cbfd7181399526ee4b00d581f0dfd
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68119
{ "extension": "c-sharp", "max_stars_count": "2.0", "max_stars_repo_name": "XDKSerenity/Ascension", "max_stars_repo_path": "Ascension/Halo_Reach/Values/mBitmask.cs", "provenance": "train-00000-of-00045.jsonl.gz:68120" }
starcoder
<filename>Ascension/Halo_Reach/Values/mBitmask.cs namespace Ascension.Halo_Reach.Values { using System; using System.Collections.Generic; public class mBitmask : mValue { private List<mBitOption> _options; public List<mBitOption> Options { get { ...
2.271021
97cfc1034d41efcccf309ab647783225
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68120
{ "extension": "c-sharp", "max_stars_count": "50.0", "max_stars_repo_name": "outbred/Google.Music", "max_stars_repo_path": "GoogleMusicApi/Requests/GetAlbum.cs", "provenance": "train-00000-of-00045.jsonl.gz:68121" }
starcoder
using GoogleMusicApi.Sessions; using GoogleMusicApi.Structure; namespace GoogleMusicApi.Requests { public class GetAlbum : StructuredRequest<GetAlbumRequest, Album> { public override string RelativeRequestUrl => "fetchalbum"; } public class GetAlbumRequest : GetRequest { public st...
2.589883
a9375ac759bb2993694e33e893d61460
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68121
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "ismailnguyen/XamarinForms-CognitiveServices-Sample", "max_stars_repo_path": "XamarinForms-CognitiveServices-Sample/XamarinForms_CognitiveServices_Sample/ViewModel/MainPageViewModel.cs", "provenance": "train-00000-of-00045.jsonl.gz:681...
starcoder
<reponame>ismailnguyen/XamarinForms-CognitiveServices-Sample using Microsoft.ProjectOxford.Emotion; using Plugin.Media; using Plugin.Media.Abstractions; using System; using System.ComponentModel; using System.IO; using System.Runtime.CompilerServices; using System.Threading.Tasks; using Xamarin.Forms; using XamarinFor...
2.318902
ca8508a0d3dda10db0bae4e5b3ef7479
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68122
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "kamit9171/csharp-language-server-protocol", "max_stars_repo_path": "src/Protocol/Models/SetTraceParams.cs", "provenance": "train-00000-of-00045.jsonl.gz:68123" }
starcoder
<reponame>kamit9171/csharp-language-server-protocol<filename>src/Protocol/Models/SetTraceParams.cs using MediatR; using OmniSharp.Extensions.JsonRpc; namespace OmniSharp.Extensions.LanguageServer.Protocol.Models { [Method(GeneralNames.SetTrace, Direction.ClientToServer)] public class SetTraceParams : IRequest ...
1.748779
c7e53aa3e8221d40a0e80bbbdcf33a93
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68123
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "enclave-networks/Enclave.Sdk.Api", "max_stars_repo_path": "src/Enclave.Sdk/Data/PatchModel/IPatchModel.cs", "provenance": "train-00000-of-00045.jsonl.gz:68124" }
starcoder
<reponame>enclave-networks/Enclave.Sdk.Api<gh_stars>0 namespace Enclave.Sdk.Api.Data.PatchModel; /// <summary> /// An interface for use with a PatchBuilder. /// </summary> [System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1040:Avoid empty interfaces", Justification = "Useful for using PatchBuilder")] publ...
1.498497
72cbd1bbb94003e4cd7492a0d47b0685
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68124
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "Carbonfrost/f-core-runtime-expressions", "max_stars_repo_path": "dotnet/src/Carbonfrost.Commons.Core.Runtime.Expressions/Mixins.cs", "provenance": "train-00000-of-00045.jsonl.gz:68125" }
starcoder
<filename>dotnet/src/Carbonfrost.Commons.Core.Runtime.Expressions/Mixins.cs<gh_stars>0 // // Copyright 2010 Carbonfrost Systems, Inc. (http://carbonfrost.com) // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a cop...
2.044782
1d9cccf6be19854db4339b01f7b79406
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68125
{ "extension": "c-sharp", "max_stars_count": "80.0", "max_stars_repo_name": "bunbup/c-sharp", "max_stars_repo_path": "src/Api/PubnubApi/Model/Server/SubscribeEnvelope.cs", "provenance": "train-00000-of-00045.jsonl.gz:68126" }
starcoder
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace PubnubApi { internal class SubscribeEnvelope { /// <summary> /// messages /// </summary> private List<SubscribeMessage> m { get; set; } /// <summary> /// ...
2.126379
d7cab76ab387eaf5e49a9c48e8c9fad9
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68126
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "superlime/LEDMatrix", "max_stars_repo_path": "UWP/RemoteLedMatrix/Helpers/IEnumerableExtensions.cs", "provenance": "train-00000-of-00045.jsonl.gz:68127" }
starcoder
<reponame>superlime/LEDMatrix // Copyright (c) Microsoft. All rights reserved. namespace RemoteLedMatrix { using System; using System.Collections.Generic; using System.Linq; public static class IEnumerableExtensions { /// <summary> /// Groups an IEnumerable into sets of a given si...
3.432579
bfe030a7c954728017498f5960c9d5a9
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68127
{ "extension": "c-sharp", "max_stars_count": "12.0", "max_stars_repo_name": "emeraudeframework/emeraude", "max_stars_repo_path": "src/Emeraude.Infrastructure.Identity/Extensions/ServiceCollectionExtensions.cs", "provenance": "train-00000-of-00045.jsonl.gz:68128" }
starcoder
<filename>src/Emeraude.Infrastructure.Identity/Extensions/ServiceCollectionExtensions.cs using System; using System.Collections.Generic; using Emeraude.Infrastructure.Identity.EventHandlers; using Emeraude.Infrastructure.Identity.ExternalProviders; using Emeraude.Infrastructure.Identity.Services; using Microsoft.AspNe...
2.052885
2dcb83d453e41f15349875388a5c9222
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68128
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "DmitriyBuranov/WebAppForAuctions", "max_stars_repo_path": "src/Services/UserBackgroundService.cs", "provenance": "train-00000-of-00045.jsonl.gz:68129" }
starcoder
<reponame>DmitriyBuranov/WebAppForAuctions<gh_stars>0 using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using Newtonsoft.Json; using Otus.PublicSale.Core.Abstractions.Repositories; using Otus.PublicSale.Core.Domain.Administration; using RabbitMQ.Cli...
2.251742
69431f3327afbfa8e8ff87c888a6943c
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68129
{ "extension": "c-sharp", "max_stars_count": "1.0", "max_stars_repo_name": "delsoft/NCache", "max_stars_repo_path": "Src/NCCommon/Monitoring/Node.cs", "provenance": "train-00000-of-00045.jsonl.gz:68130" }
starcoder
// Copyright (c) 2019 Alachisoft // // 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...
2.580638
f434df43a67e35789aca59484466cbd2
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68130
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "HaloImageEngine/EmpowerClaim-hotfix-1.25.1", "max_stars_repo_path": "EmpowerBusiness/Models/Reports/WeeklyCheckApprovalModel.cs", "provenance": "train-00000-of-00045.jsonl.gz:68131" }
starcoder
using System; namespace EmpowerBusiness.Models.Reports { public class WeeklyCheckApprovalModel { public int? UserId { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public DateTime ActionDate { get; set; } } }
1.724476
cb3da09a5ea4a9b09c28a454af0509d4
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68131
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "marcelogmonteiro/eDne", "max_stars_repo_path": "SQLHelper.cs", "provenance": "train-00000-of-00045.jsonl.gz:68132" }
starcoder
<filename>SQLHelper.cs using System.Collections.Generic; using System.Data; using System.Data.SqlClient; namespace WebAPIWithSwagger { public class SQLHelper { private static string _connectionString; public SQLHelper(string ConnectionString) { _connectionString = Connecti...
2.821841
27ea4244efd082369b376ee0238dd75d
2023-09-08T23:13:54.392Z
2023-09-08T23:13:54.392Z
68132
{ "extension": "c-sharp", "max_stars_count": "0.0", "max_stars_repo_name": "KL44S/WeatherAPI", "max_stars_repo_path": "Business/Mappers/Abstractions/MultipleEntitiesMapper.cs", "provenance": "train-00000-of-00045.jsonl.gz:68133" }
starcoder
<filename>Business/Mappers/Abstractions/MultipleEntitiesMapper.cs<gh_stars>0 using System; using System.Collections.Generic; using System.Text; namespace Business.Mappers.Abstractions { public abstract class MultipleEntitiesMapper<T, K> : ISingleEntityMapper<T, K>, IMultipleEntitiesMapper<T, K> { publ...
2.941983
39212cfd3f850c6547ef2b7d6e71964e