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 | 4437 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "jakubsuchybio/GitVersion",
"max_stars_repo_path": "src/GitVersionCore/Helpers/VerbosityLevel.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4438"
} | starcoder | namespace GitVersion.Helpers
{
public enum VerbosityLevel
{
None,
Error,
Warn,
Info,
Debug
}
}
| 1.665751 | b34c70765d8b7ed41adf8e23006e7323 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4438 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Katsarov/CSharpWEB",
"max_stars_repo_path": "SIS/SIS.Http/Response/HtmlResponse.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4439"
} | starcoder | <gh_stars>0
using System.Text;
namespace SIS.HTTP.Response
{
public class HtmlResponse : HttpResponse
{
public HtmlResponse(string html)
{
this.StatusCode = HttpResponseCode.Ok;
byte[] byteData = Encoding.UTF8.GetBytes(html);
this.Body = byteData;
... | 2.173676 | a105a75ad6c696c079e3b1c47232777b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4439 | {
"extension": "c-sharp",
"max_stars_count": "4.0",
"max_stars_repo_name": "EndGameGl/DotNetBungieAPI",
"max_stars_repo_path": "DotNetBungieAPI.Generated/Models/Destiny/Definitions/DestinyPlugItemCraftingRequirements.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4440"
} | starcoder | <filename>DotNetBungieAPI.Generated/Models/Destiny/Definitions/DestinyPlugItemCraftingRequirements.cs
namespace DotNetBungieAPI.Generated.Models.Destiny.Definitions;
public class DestinyPlugItemCraftingRequirements
{
[JsonPropertyName("unlockRequirements")]
public List<Destiny.Definitions.DestinyPlugItemCrafti... | 2.025915 | 413c3be9ee573e73e7b3fb839763de97 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4440 | {
"extension": "c-sharp",
"max_stars_count": "3.0",
"max_stars_repo_name": "slodge/XamarinWorkbooksExtensions",
"max_stars_repo_path": "Slodge.XamarinWorkbookExtensions/SlodgeExtensions.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4441"
} | starcoder | using System.Collections.Generic;
using Slodge.XamarinWorkbookExtensions;
using Xamarin.Interactive.Representations;
// Dear Xam, please forgive me for invading your namespace ...
// ... but using your namespace helps the extension "just work"
// ... and I would love to get `AsTable()` inside the workbooks
namespace ... | 2.585086 | acee98b88f881760080b544de3d496b0 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4441 | {
"extension": "c-sharp",
"max_stars_count": "7.0",
"max_stars_repo_name": "wagnerhsu/packt-Hands-On-Enterprise-application-development-with-.Net-Core-3.0",
"max_stars_repo_path": "Chapter1/Draken.Web/Draken.Web/Views/Shared/Components/Navigation/Default.cshtml",
"provenance": "train-00000-of-00045.jsonl.gz:4... | starcoder | <filename>Chapter1/Draken.Web/Draken.Web/Views/Shared/Components/Navigation/Default.cshtml
@model System.Collections.Generic.Dictionary<string,string>
<ul class="navbar-nav flex-grow-1">
@foreach (var menu in Model)
{
<li class="nav-item">
<a class="nav-link text-dark"
asp-... | 2.5642 | 295092950a411e389979a1d3eb848f77 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4442 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "OlsonDev/Dazor",
"max_stars_repo_path": "Dazor/InternalsVisibleToUnitTests.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4443"
} | starcoder | using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Dazor.Test")] | 0.663936 | c3b70ecf50277b8598e1e4c2f88247c2 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4443 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "NathanClouseAX/AAXDataEntityPerfTest",
"max_stars_repo_path": "Projects/AAXDataEntityPerfTest/ConsoleApp1/Connected Services/D365/Season.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4444"
} | 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>
//--... | 2.067973 | a66580a534a650df7322aca8c207fce5 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4444 | {
"extension": "c-sharp",
"max_stars_count": "5.0",
"max_stars_repo_name": "Pjotrtje/ConsoleAsksFor",
"max_stars_repo_path": "src/ConsoleAsksFor/Sdk/Question/IQuestion.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4445"
} | starcoder | namespace ConsoleAsksFor.Sdk;
/// <summary>
/// Interface for asking question with <see cref="IConsole"/>.
/// </summary>
/// <typeparam name="TAnswer"></typeparam>
public interface IQuestion<TAnswer>
where TAnswer : notnull
{
/// <summary>
/// SubType Identifier for grouping answers in history.
/// <... | 2.748697 | 0e50a73bf5e12790e402db923f19d00f |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4445 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "nileshlg2003/VR-WhackAMole",
"max_stars_repo_path": "Assets/Scripts/Player.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4446"
} | starcoder | <gh_stars>0
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("I am Here");
}
// Update is called once per frame
void Update()
{
... | 1.897281 | d4bc1071fb1438b788e8aa3e46ae06aa |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4446 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "nicolasgustafsson/AttackLeague",
"max_stars_repo_path": "AttackLeague/AttackLeague/AttackLeague/Blocks/Angry/AngryInfo.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4447"
} | starcoder | <reponame>nicolasgustafsson/AttackLeague<filename>AttackLeague/AttackLeague/AttackLeague/Blocks/Angry/AngryInfo.cs
using Microsoft.Xna.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AttackLeague.AttackLeague.Blocks.Angry
{
p... | 2.667445 | 6215fc179250d5853255496a9bb3495b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4447 | {
"extension": "c-sharp",
"max_stars_count": "24.0",
"max_stars_repo_name": "AAATechGuy/TDSProxy",
"max_stars_repo_path": "src/TDSProtocol/SslPacketType.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4448"
} | starcoder | using System;
namespace TDSProtocol
{
public enum SslPacketType : byte
{
ChangeCipherSpec = 20,
Alert = 21,
Handshake = 22,
ApplicationData = 23
}
}
| 1.433071 | 0ac8533d269c07e3ff47bf092e3203d4 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4448 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "dalenewman/Transformalize.Provider.Json",
"max_stars_repo_path": "src/Transformalize.Provider.Json.Autofac.Shared/JsonProviderBuilder.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4449"
} | starcoder | <gh_stars>1-10
using Autofac;
using System;
using System.IO;
using System.Linq;
using Transformalize.Configuration;
using Transformalize.Context;
using Transformalize.Contracts;
using Transformalize.Nulls;
using System.IO;
namespace Transformalize.Providers.Json.Autofac {
public class JsonProviderBuilder {
... | 2.123798 | 50658ffeeeed8d43633382938452e0de |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4449 | {
"extension": "c-sharp",
"max_stars_count": "5.0",
"max_stars_repo_name": "lejiebianlidian/codearts",
"max_stars_repo_path": "src/CodeArts.Db.Lts/DatabaseFor.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4450"
} | starcoder | using CodeArts.Db.Exceptions;
using CodeArts.Db.Expressions;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq.Expressions;
#if NET45_OR_GREATER || NETSTANDARD2_0_OR_GREATER
using System.Threading;
using System.Threading.Tasks;
#endif
namespace CodeArts.Db.Lts
{
/// <summary>
... | 2.541226 | 70373a0b9ce9e29cda2a4bbdb3abad98 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4450 | {
"extension": "c-sharp",
"max_stars_count": "2.0",
"max_stars_repo_name": "bastie/NetVampire",
"max_stars_repo_path": "NetVampiro/javax/xml/crypto/OctetStreamData.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4451"
} | starcoder | /*
* 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 in writing, software
* di... | 2.486861 | 2a3d03c875e65b228ea67ff9631e58e0 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4451 | {
"extension": "c-sharp",
"max_stars_count": "5.0",
"max_stars_repo_name": "Tiltification/sonic-tilt",
"max_stars_repo_path": "android/PdCore/src/main/jni/libpd/samples/csharp/naudio/NewApiPdProvider.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4452"
} | starcoder | <reponame>Tiltification/sonic-tilt<filename>android/PdCore/src/main/jni/libpd/samples/csharp/naudio/NewApiPdProvider.cs
/*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.
*
* Copyright(c) 2016 <NAME><<EMAIL>>
*/
using Syst... | 2.229239 | aa0fa2c738150a1d97a1a34db1abc6ad |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4452 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "gregg-miskelly/MIEngine",
"max_stars_repo_path": "src/MIDebugEngine/Engine.Impl/DebuggedThread.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4453"
} | starcoder | <filename>src/MIDebugEngine/Engine.Impl/DebuggedThread.cs
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using MICore... | 2.386302 | 8634977b962da8bfed661ca74eaea394 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4453 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "filipetoscano/Platinum",
"max_stars_repo_path": "tests/Platinum.VisualStudio.Tests/ConfigGenTool.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4454"
} | starcoder | <reponame>filipetoscano/Platinum
// Platinum.VisualStudio.ToolException: XML does not comply against XSD schema. ---> Platinum.VisualStudio.ToolException: The element 'configuration' in namespace 'urn:platinum/config' has incomplete content. List of possible elements expected: 'section' in namespace 'urn:platinum/confi... | 1.451745 | 10a9d09be874497c93bc90202ff4f0f1 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4454 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "davidaramant/PashuaNetBindings",
"max_stars_repo_path": "src/PashuaNetBindings.Tests/ComboBoxTests.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4455"
} | starcoder | using FluentAssertions;
using Xunit;
namespace Pashua.Tests
{
public class ComboBoxTests
{
[Fact]
public void ShouldRequireAtLeastOneOption()
{
var comboBox = new ComboBox();
comboBox.GetValidationIssues().Should().HaveCount(1);
}
[Theory]
... | 2.525558 | 22fb280add7ee2283244d159802d219f |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4455 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Kalystee/TacticalTurnedBase",
"max_stars_repo_path": "Assets/StatView.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4456"
} | starcoder | <filename>Assets/StatView.cs
using PNN;
using PNN.Entities;
using PNN.Entities.Events;
using Sirenix.OdinInspector;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using TMPro;
using UnityEngine;
public class StatView : MonoBehaviour
{
[BoxGroup("GameObjects")] public GameObject sta... | 2.353446 | ae1aacb8a46fed320b821137aeabcec8 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4456 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "bclnet/GameEstate",
"max_stars_repo_path": "src/Estates/Red/GameEstate.Red.Format/Red/W3/RTTIConvert/W3KillTrigger.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4457"
} | starcoder | using System.IO;
using System.Runtime.Serialization;
using GameEstate.Red.Formats.Red.CR2W.Reflection;
using FastMember;
using static GameEstate.Red.Formats.Red.Records.Enums;
namespace GameEstate.Red.Formats.Red.Types
{
[DataContract(Namespace = "")]
[REDMeta]
public class W3KillTrigger : CEntity
{
... | 1.429827 | 87dabf7bc9655c549143c02c3ec851b4 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4457 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "csf-dev/agiil",
"max_stars_repo_path": "Tests/Agiil.Web.TestBuild/Services/IServicesNamespaceMarker.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4458"
} | starcoder | <filename>Tests/Agiil.Web.TestBuild/Services/IServicesNamespaceMarker.cs
using System;
namespace Agiil.Web.Services
{
public interface IServicesNamespaceMarker
{
}
}
| 0.961836 | 01ea45fbff3107b7450060b2787fa33f |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4458 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Mathieu-Lichtsteiner/MathieusEffizienzApp",
"max_stars_repo_path": "ModelLayer/Classes/DateSpan.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4459"
} | starcoder | <reponame>Mathieu-Lichtsteiner/MathieusEffizienzApp
using ModelLayer.Utility;
using PropertyChanged;
using System;
#if SQLite
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#endif
namespace ModelLayer.Classes {
public class DateSpan : ObservableObject {
#region pr... | 2.643723 | 32e49f7bfafba04a8ddc4d423059b08b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4459 | {
"extension": "c-sharp",
"max_stars_count": "295.0",
"max_stars_repo_name": "SteeltoeOSS/steeltoe",
"max_stars_repo_path": "src/Messaging/src/RabbitMQ/Listener/DirectReplyToMessageListenerContainer.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4460"
} | starcoder | <reponame>SteeltoeOSS/steeltoe<filename>src/Messaging/src/RabbitMQ/Listener/DirectReplyToMessageListenerContainer.cs
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more inform... | 1.729405 | 5fb140939192a784f56311ca79f2b0ba |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4460 | {
"extension": "c-sharp",
"max_stars_count": "768.0",
"max_stars_repo_name": "kfzteile24/IDDD_Samples_NET",
"max_stars_repo_path": "iddd_collaboration/Domain.Model/Calendars/CalendarSharer.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4461"
} | starcoder | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SaaSOvation.Common.Domain.Model;
using SaaSOvation.Collaboration.Domain.Model.Collaborators;
namespace SaaSOvation.Collaboration.Domain.Model.Calendars
{
public class CalendarSharer : ValueObject, IComparable<CalendarShar... | 2.405348 | b5c3017747dd1b9196da81678e5f19b5 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4461 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "LykkeCity/Lykke.Service.BinanceAdapter",
"max_stars_repo_path": "src/Lykke.Service.BinanceAdapter.Services/RestClient/RestClient.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4462"
} | starcoder | <filename>src/Lykke.Service.BinanceAdapter.Services/RestClient/RestClient.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Lykke.Common.ExchangeAdapter.Server;
using Lykke.Common.Log;
using Lykke.Service.BinanceAdapter.Ser... | 2.390791 | 675ecfa2c5e39d3293ace52737fd699b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4462 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "CUSTIS-public/CUSTIS.NetCore.Lightbox",
"max_stars_repo_path": "src/CUSTIS.NetCore.Lightbox/Utils/EnumerableExtensions.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4463"
} | starcoder | <reponame>CUSTIS-public/CUSTIS.NetCore.Lightbox
using System;
using System.Collections.Generic;
using System.Linq;
namespace CUSTIS.NetCore.Lightbox.Utils
{
/// <summary>
/// Методы расширения для <see cref="IEnumerable{T}" />
/// </summary>
internal static class EnumerableExtensions
{
... | 3.207006 | db7d7e05154fd6e13b91f29d1d872ab0 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4463 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "mao29/CompetenceManagementSystem",
"max_stars_repo_path": "Code/CompetenceManagementSystem/Application/Employees/Commands/UpdateEmployeeCompetence/UpdateEmployeeCompetenceQuery.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4464"
} | starcoder | <reponame>mao29/CompetenceManagementSystem<filename>Code/CompetenceManagementSystem/Application/Employees/Commands/UpdateEmployeeCompetence/UpdateEmployeeCompetenceQuery.cs
using Application.Common.Interfaces;
using AutoMapper;
using AutoMapper.QueryableExtensions;
using MediatR;
using Microsoft.EntityFrameworkCore;
u... | 2.40522 | fa93e93eff6f1e0b6f0eb912b2b3c41d |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4464 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "smuth98/Kyles-Fantastic-Dialogue-System",
"max_stars_repo_path": "Kyles-Fantastic-Dialogue-System/Library/PackageCache/com.unity.quicksearch@3.0.0-preview.8/Editor/PropertyDatabase/PropertyDatabase.cs",
"provenance": "train-00000-of-0... | starcoder | <reponame>smuth98/Kyles-Fantastic-Dialogue-System<filename>Kyles-Fantastic-Dialogue-System/Library/PackageCache/com.unity.quicksearch@3.0.0-preview.8/Editor/PropertyDatabase/PropertyDatabase.cs
#if USE_PROPERTY_DATABASE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.T... | 2.039054 | 9cc1b7c87e290815d50582dee85e8b82 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4465 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "justin0522/SharpZLib",
"max_stars_repo_path": "ICSharpCode.SharpZLib/AssemblyInfo.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4466"
} | starcoder | <reponame>justin0522/SharpZLib<filename>ICSharpCode.SharpZLib/AssemblyInfo.cs
/*
*********************************
* Justin
* 2016/10/24
* 1.0.0.0
*********************************
*/
// AssemblyInfo.cs
//
// Copyright (C) 2001 <NAME>
// Copyright 2004 <NAME>
//
// This program is free software; you can redistribute i... | 1.707775 | d99e3cce3b9b6293eb227419b50bbdb7 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4466 | {
"extension": "c-sharp",
"max_stars_count": "4.0",
"max_stars_repo_name": "parithon/Fritz.StreamTools",
"max_stars_repo_path": "Fritz.StreamTools/Models/GitHubUpdatedEventArgs.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4467"
} | starcoder | <reponame>parithon/Fritz.StreamTools<gh_stars>1-10
using System;
using System.Collections.Generic;
namespace Fritz.StreamTools.Models
{
public class GitHubUpdatedEventArgs : EventArgs
{
public GitHubUpdatedEventArgs(IEnumerable<GitHubInformation> newInformation, DateTime lastUpdate)
{
this.Contribu... | 2.193467 | 8b50eb47a0730c115fecfb1861164387 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4467 | {
"extension": "c-sharp",
"max_stars_count": "5.0",
"max_stars_repo_name": "geertjanw/ignite",
"max_stars_repo_path": "modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryProcessorClient.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4468"
} | starcoder | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1.76251 | 945b3bf74f5d416807981c645f9d83c1 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4468 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "RudyYang/BusinessLight",
"max_stars_repo_path": "tests/BusinessLight.Validation.Fluent.Tests/UnitTest1.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4469"
} | starcoder | <filename>tests/BusinessLight.Validation.Fluent.Tests/UnitTest1.cs<gh_stars>1-10
using System;
using System.Linq;
using BusinessLight.Tests.Common.Entities;
using BusinessLight.Tests.Common.Validators;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using SharpTestsEx;
namespace BusinessLight.Validation.Fluent.Te... | 2.388072 | 62542c9f570a268624d5c86e4ad87d2e |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4469 | {
"extension": "c-sharp",
"max_stars_count": "100.0",
"max_stars_repo_name": "joshuarose/FluentAutomation",
"max_stars_repo_path": "FluentAutomation.WatiN/Element.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4470"
} | starcoder | <filename>FluentAutomation.WatiN/Element.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FluentAutomation.Interfaces;
using WatiNCore = global::WatiN.Core;
namespace FluentAutomation
{
public class Element : IElement
{
privat... | 2.677287 | b080706dfdfa9547c81755dee3455c37 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4470 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "CSProjectsEAL/EALAdministrationProject",
"max_stars_repo_path": "Repository.EntityFramework/Config/InterviewerConfig.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4471"
} | starcoder | <reponame>CSProjectsEAL/EALAdministrationProject<filename>Repository.EntityFramework/Config/InterviewerConfig.cs
using System;
using System.Collections.Generic;
using System.Text;
using Domain.Concrete;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Repository.En... | 2.382378 | 8bdad824f0ed4d8d46cc6b7b66aeb926 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4471 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "nickmaybin/titlebarclock",
"max_stars_repo_path": "src/titlebarclock/MeetingPlanner.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4472"
} | starcoder | <filename>src/titlebarclock/MeetingPlanner.cs<gh_stars>1-10
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;
namespace TitleBarClock
{
public partial... | 2.542738 | e27441614883963526168324aa4329ba |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4472 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Ideine/Apptracktive-Plugins",
"max_stars_repo_path": "AzureForMobile/AzureForMobile.Sample/AzureForMobile.Sample.Droid/MainActivity.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4473"
} | starcoder | <gh_stars>0
using System.Net.Http;
using Android.App;
using Android.OS;
using Aptk.Plugins.AzureForMobile;
using Aptk.Plugins.AzureForMobile.Identity;
using Aptk.Plugins.AzureForMobile.LocalStore;
using AzureForMobile.Sample.Core;
using AzureForMobile.Sample.Core.Helpers;
using AzureForMobile.Sample.Core.Services;
usi... | 1.816481 | 42e6a8a5231ea390628481577889e5c4 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4473 | {
"extension": "c-sharp",
"max_stars_count": "3.0",
"max_stars_repo_name": "robbaman/Umbraco-CMS",
"max_stars_repo_path": "src/Umbraco.Tests/PublishedContent/PublishedContentDataTableTests.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4474"
} | starcoder | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using NUnit.Framework;
using Umbraco.Core;
using Umbraco.Core.Dynamics;
using Umbraco.Core.Models;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Tests.TestHelpers;
using Umbraco.Web;
namespa... | 2.19346 | 139c20d45fcf39c979884db057945420 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4474 | {
"extension": "c-sharp",
"max_stars_count": "114.0",
"max_stars_repo_name": "Johnanater/openmod",
"max_stars_repo_path": "framework/OpenMod.API/Commands/ICommandParameterResolveProvider.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4475"
} | starcoder | <reponame>Johnanater/openmod
using System;
using System.Threading.Tasks;
namespace OpenMod.API.Commands
{
/// <summary>
/// A provider for resolving command parameters.
/// </summary>
public interface ICommandParameterResolveProvider
{
/// <summary>
/// Determines whether the given... | 1.977884 | a1660e2dcffbf7245f1427a9a45f0952 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4475 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "oskvr/TodoApp",
"max_stars_repo_path": "Todo.Core/Components/SidebarFilteredListsViewComponent.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4476"
} | starcoder | using System.Collections.Generic;
using System.Threading.Tasks;
using Todo.Core.Models.ViewModels;
using Microsoft.AspNetCore.Mvc;
using Todo.Core.Data;
using Todo.Core.Models;
using System.Linq;
using Todo.Core.Helpers;
public class SidebarFilteredListsViewComponent : ViewComponent
{
public SidebarListItemViewModel ... | 2.292179 | 527ccc41643a753f07eb351585ad40f4 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4476 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "Gebelexis/Fluent.Ribbon",
"max_stars_repo_path": "Fluent/Metro/MetroColors.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4477"
} | starcoder | <filename>Fluent/Metro/MetroColors.cs
namespace Fluent
{
using System.Windows;
/// <summary>
/// Collection of some <see cref="ComponentResourceKey"/> for the Metro/Office 2013 theme
/// </summary>
public static class MetroColors
{
/// <summary>
/// Gets the theme col... | 2.351495 | 4b543e76a0ab283166db9b19cfbad708 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4477 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Toadstool/Fork-WatiN",
"max_stars_repo_path": "source/src/UnitTests/DialogHandlerTests/DialogHandlerHelperTests.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4478"
} | starcoder | #region WatiN Copyright (C) 2006-2011 <NAME>
//Copyright 2006-2011 <NAME>
//
// 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
//... | 2.128466 | a7bdc06c5aa0b7261567589db09ea03d |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4478 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "codesanook/Codesanook.OrganizationProfile",
"max_stars_repo_path": "Startup.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4479"
} | starcoder | <filename>Startup.cs
using System;
using Codesanook.OrganizationProfile.Controllers;
using Codesanook.OrganizationProfile.Drivers;
using Codesanook.OrganizationProfile.Handlers;
using Codesanook.OrganizationProfile.Models;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extension... | 1.591974 | 1aa94e76467d43468ebc8d90441ee352 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4479 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "tomkerkhove/dotnet-operator-sdk",
"max_stars_repo_path": "src/KubeOps/Operator/Watcher/ResourceWatcher.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4480"
} | starcoder | <reponame>tomkerkhove/dotnet-operator-sdk<gh_stars>0
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using DotnetKubernetesClient;
using k8s;
using k8s.Models;
using KubeOps.Operator.DevOps;
using KubeOps.Operator.Errors;
using Microsoft.Extensions.Logging;
namespace KubeOps.Opera... | 2.177778 | aafe45f818cf0abef97bd5fb643da55e |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4480 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "MusapKahraman/Battleship",
"max_stars_repo_path": "Battleship-Client/Assets/Scripts/Managers/BattleManager.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4481"
} | starcoder | using System.Collections.Generic;
using System.Linq;
using BattleshipGame.AI;
using BattleshipGame.Core;
using BattleshipGame.Network;
using BattleshipGame.Tiling;
using BattleshipGame.UI;
using Colyseus.Schema;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.SceneManagement;
using static Battleshi... | 1.656215 | 7ed0f097e992747effe6b8ace90e95aa |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4481 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "playgen/it-alert",
"max_stars_repo_path": "Simulation/PlayGen.ITAlert.Simulation.Scoring/Team/ITeamScoringExtension.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4482"
} | starcoder | using System;
using Engine.Systems;
namespace PlayGen.ITAlert.Simulation.Scoring.Team
{
public interface ITeamScoringExtension : ISystemExtension
{
event Action<int, decimal> Score;
}
}
| 1.307679 | 110b0a90f29935bb57c7cc577bbe63cb |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4482 | {
"extension": "c-sharp",
"max_stars_count": "253.0",
"max_stars_repo_name": "cevitcejbo/lwf",
"max_stars_repo_path": "csharp/core/lwf_property.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4483"
} | starcoder | <reponame>cevitcejbo/lwf
/*
* Copyright (C) 2012 GREE, Inc.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any pu... | 2.035581 | ffe14cb84319b73819373684b00f3d9d |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4483 | {
"extension": "c-sharp",
"max_stars_count": "2.0",
"max_stars_repo_name": "BigBadBleuCheese/OpenAddOnManager",
"max_stars_repo_path": "OpenAddOnManager/AddOnManifestEntry.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4484"
} | starcoder | <filename>OpenAddOnManager/AddOnManifestEntry.cs
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
namespace OpenAddOnManager
{
public class AddOnManifestEntry
{
public AddOnManifestEntry() => Flavor = Flavor.wow;
public Uri AddOnPageUrl { get; set; }
public strin... | 2.062958 | 409d6141d2624a08164f2c31078bd50e |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4484 | {
"extension": "c-sharp",
"max_stars_count": "10.0",
"max_stars_repo_name": "PULSAR-Modders/pulsar-plugin-loader",
"max_stars_repo_path": "PulsarModLoader/Content/Components/CaptainsChair/CaptainsChairMod.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4485"
} | starcoder | <gh_stars>1-10
namespace PulsarModLoader.Content.Components.CaptainsChair
{
public abstract class CaptainsChairMod : ComponentModBase
{
public CaptainsChairMod()
{
}
}
}
| 1.266625 | 88c39ee3dc4ac9c209dfe54de4497cff |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4485 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Ambratolm/gestionnaire-location-voitures",
"max_stars_repo_path": "versions-alternatives/Car Rental Manager/Solution/Car_Rental_Project/GUI/Gestion/Parcs_Detail.Designer.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4486"
} | starcoder | <reponame>Ambratolm/gestionnaire-location-voitures<filename>versions-alternatives/Car Rental Manager/Solution/Car_Rental_Project/GUI/Gestion/Parcs_Detail.Designer.cs<gh_stars>0
namespace Car_Rental_Project.GUI.Gestion
{
partial class Parcs_Detail
{
/// <summary>
/// Required designer variable.
... | 1.68755 | 47cf46c73c751f8659de1a4b9ab03ab6 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4486 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "cykelbud/lrms",
"max_stars_repo_path": "src/Employee/Core.DomainModel/EmployeeCreatedEvent.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4487"
} | starcoder | <reponame>cykelbud/lrms
using EventFlow.Aggregates;
namespace Employee.Core.DomainModel
{
public class EmployeeCreatedEvent : AggregateEvent<EmployeeAggregate, EmployeeId>
{
public string UserName { get; }
public string PersonalIdentificationNumber { get; }
public EmployeeCreatedEvent... | 1.823309 | 5e6dc0eb6c1b3dffe42f79f28b641fbf |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4487 | {
"extension": "c-sharp",
"max_stars_count": "457.0",
"max_stars_repo_name": "Peullo/uwp-experiences",
"max_stars_repo_path": "apps/social/Adventure Works/Adventure Works/Rome/RomeHelper.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4488"
} | starcoder | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.ApplicationModel.AppService;
using Windows.ApplicationModel.Core;
using Windows.Foundation.Collections;
using Windows.System.... | 2.351165 | 4990711d8d94a757b7b6a772624160a8 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4488 | {
"extension": "c-sharp",
"max_stars_count": "4.0",
"max_stars_repo_name": "mastertnt/XRay",
"max_stars_repo_path": "XControls/Core/Input/IValidateInput.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4489"
} | starcoder | <gh_stars>1-10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XControls.Core.Input
{
/// <summary>
/// Interface defining an input that can be validating.
/// </summary>
public interface IValidateInput
{
#region Events
/// <summary>... | 2.396262 | 13afe134401d5ecdc91e88873d4cd198 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4489 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "nataren/mono",
"max_stars_repo_path": "mcs/errors/cs0034-2.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4490"
} | starcoder | // cs0034-2.cs : Operator `+' is ambiguous on operands of type `A' and `A'
// Line: 22
public class A {
public static implicit operator int (A a)
{
return 0;
}
public static implicit operator string (A a)
{
return "a";
}
public static void Main ()
{
A a = new A ();
object o = a + a;
System.Console.... | 2.751649 | ef46d8f9dcb0a3c56e0d674ffdcef229 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4490 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "hashtobewild/GenesisFullNode",
"max_stars_repo_path": "src/Stratis.Bitcoin.IntegrationTests.Common/TestNetworks/BitcoinRegTestOverrideCoinbaseMaturity.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4491"
} | starcoder | using System;
using Stratis.Bitcoin.Networks;
namespace Stratis.Bitcoin.IntegrationTests.Common.TestNetworks
{
public class BitcoinRegTestOverrideCoinbaseMaturity : BitcoinRegTest
{
public BitcoinRegTestOverrideCoinbaseMaturity(int coinbaseMaturity, string name = null) : base()
{
t... | 1.664688 | bf343ade72c31a4f5e016eb7e5a4b23e |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4491 | {
"extension": "c-sharp",
"max_stars_count": "6.0",
"max_stars_repo_name": "JustOxlamon/TwoRatChat",
"max_stars_repo_path": "JabberNet-2.1.0.710/Example/PubSubDisplay.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4492"
} | starcoder | <filename>JabberNet-2.1.0.710/Example/PubSubDisplay.cs<gh_stars>1-10
/* --------------------------------------------------------------------------
* Copyrights
*
* Portions created by or assigned to Cursive Systems, Inc. are
* Copyright (c) 2002-2008 Cursive Systems, Inc. All Rights Reserved. Contact
* informati... | 1.99059 | 7bf0ed58ab68aae250934e8335281ff9 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4492 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "panoukos41/Theatre-Tickets",
"max_stars_repo_path": "src/TheatreTickets.Models/Ticket.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4493"
} | starcoder | using System.Text.Json.Serialization;
namespace TheatreTickets.Models
{
public class Ticket
{
public string Id { get; set; }
public Seat Seat { get; set; }
public string ForDateId { get; set; }
[JsonIgnore]
public PlayDateTime ForDate { get; set; }
public Ti... | 2.25507 | d095c4ae58ec4ec78e9f6b5b346077d9 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4493 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Aaron-Strong/BotBuilder",
"max_stars_repo_path": "CSharp/Samples/AnnotatedSandwichBot/AnnotatedSandwich.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4494"
} | starcoder | using Microsoft.Bot.Builder.Dialogs;
using Microsoft.Bot.Builder.FormFlow;
using Microsoft.Bot.Builder.FormFlow.Advanced;
using Microsoft.Bot.Builder.FormFlow.Json;
using Microsoft.Bot.Sample.AnnotatedSandwichBot.Resource;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Concurrent;
using Sys... | 2.788472 | 9b5c1567ae683c1b7744b46b2baf097c |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4494 | {
"extension": "c-sharp",
"max_stars_count": "4.0",
"max_stars_repo_name": "IowaComputerGurus/dnn.SimpleFileList",
"max_stars_repo_path": "SimpleFileList/Components/FileUtility.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4495"
} | starcoder | /*
* Copyright (c) 2006 - 2011 IowaComputerGurus Inc, All rights reserved.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
* TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE A... | 2.971756 | a13ee8ab7bd3e308e9be5ad2c454334f |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4495 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "trmcnealy/Vulkan",
"max_stars_repo_path": "Vulkan/Structs/VkPhysicalDeviceConservativeRasterizationPropertiesEXT.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4496"
} | starcoder | <gh_stars>0
using System.Runtime.InteropServices;
namespace Vulkan
{
[StructLayout(LayoutKind.Sequential)]
public struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT
{
public VkStructureType SType;
[NativeTypeName("void *")] public nuint PNext;
public float PrimitiveOver... | 1.214314 | 1525fb7dfb230da9617ec60ca750bf00 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4496 | {
"extension": "c-sharp",
"max_stars_count": "218.0",
"max_stars_repo_name": "ericsp59/PrtgAPI",
"max_stars_repo_path": "src/PrtgAPI/Enums/Deserialization/ClusterNodeType.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4497"
} | starcoder | <reponame>ericsp59/PrtgAPI
using System.Xml.Serialization;
namespace PrtgAPI
{
/// <summary>
/// Specifies roles PRTG Servers can take in a PRTG Cluster.
/// </summary>
public enum ClusterNodeType
{
/// <summary>
/// Node is the Master Node. Changes made on the Master Node will be ... | 2.145192 | b2d3231256516c9ac39b0f12fe16bda7 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4497 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "iothua/ExperimentOS",
"max_stars_repo_path": "Unity/Assets/ThirdParty/LoxodonFramework/XLua/Runtime/Framework/Views/LuaView.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4498"
} | starcoder | /*
* MIT License
*
* Copyright (c) 2018 <NAME>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, cop... | 1.871377 | 5c293260ed6372a97f48e04f3645015b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4498 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "sampathsris/Redux.NET",
"max_stars_repo_path": "Redux/ReduxAction.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4499"
} | starcoder | <reponame>sampathsris/Redux.NET
using System;
using System.Globalization;
using System.Runtime.Serialization;
namespace Redux
{
/// <summary>
/// Represents a Redux action with no accompanying payload.
/// </summary>
[Serializable]
public class ReduxAction
{
private static ... | 2.827729 | 9c15630bc57d97bac111ab8311306018 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4499 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "felix-b/create-any-app",
"max_stars_repo_path": "l-lang/src/LLang/Tracing/RealTrace.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4500"
} | starcoder | <reponame>felix-b/create-any-app
using System;
using System.Collections.Generic;
using LLang.Abstractions;
namespace LLang.Tracing
{
public class RealTrace : ITrace
{
private readonly Stack<TraceSpan> _activeSpans = new Stack<TraceSpan>();
private ITraceOutput _output;
private RealTra... | 2.551337 | 7f5b3db5b03a20d52fa2be0b2b3c9e0f |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4500 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "xels-io/SideChain-SmartContract",
"max_stars_repo_path": "src/Xels.Bitcoin/P2P/Protocol/Payloads/ProvenHeadersPayload.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4501"
} | starcoder | <gh_stars>0
using System.Collections.Generic;
using NBitcoin;
namespace Xels.Bitcoin.P2P.Protocol.Payloads
{
/// <summary>
/// Proven headers payload which contains list of up to 2000 proven headers.
/// </summary>
/// <seealso cref="Xels.Bitcoin.P2P.Protocol.Payloads.Payload" />
[Payload("provhdr... | 2.182271 | c17d0c4654d837b12d074714510757d3 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4501 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "gktval/MonoGame.Extended",
"max_stars_repo_path": "Source/MonoGame.Extended.Gui/Controls/Control.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4502"
} | starcoder | <gh_stars>0
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using Microsoft.Xna.Framework;
using MonoGame.Extended.BitmapFonts;
using MonoGame.Extended.Input.InputListeners;
using Newtonsoft.Json;
namespace MonoGame.Extended.Gui.Controls
{
public abstract class Cont... | 1.983956 | 090047156c2dc283844076ea86745d59 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4502 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "bhbk/x9et3y6s",
"max_stars_repo_path": "Arch(.NetCore)/Bhbk.WebApi.Identity.Me.Tests/TestingTools/CollectionOrdererHelper.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4503"
} | starcoder | using System.Collections.Generic;
using System.Linq;
using Xunit;
using Xunit.Abstractions;
namespace Bhbk.WebApi.Identity.Me.Tests.TestingTools
{
public class CollectionOrdererHelper : ITestCollectionOrderer
{
public const string AssembyName = "Bhbk.WebApi.Identity.Me.Tests";
public const st... | 2.210391 | d3340af73619ed3529d410dc62661cf2 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4503 | {
"extension": "c-sharp",
"max_stars_count": "755.0",
"max_stars_repo_name": "Kolahzary/Binance.Net",
"max_stars_repo_path": "Binance.Net/AssemblyInfo.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4504"
} | starcoder | [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Binance.Net.UnitTests")] | 0.757748 | 7869658e8f8f86ce2f7a9b7aa090fbb9 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4504 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Miku-Bot/mN",
"max_stars_repo_path": "mN.DB/Models/MikuGuild.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4505"
} | starcoder | <gh_stars>0
using System.Collections.Generic;
namespace mN.DB.Models
{
public class MikuGuild
{
public ulong Id { get; set; }
public MikuMusic MikuMusic { get; set; }
/// <summary>
/// Don't use this!
/// </summary>
public MikuGuild() { }
/// <summary>... | 2.072874 | 4ac3758894a79cf24bc7f62703864c07 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4505 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "kamiljaved/MathLib",
"max_stars_repo_path": "function/tree/FunctionSimplifier.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4506"
} | starcoder | namespace com.@base.function.tree
{
public class FunctionSimplifier
{
}
} | 0.839591 | 04aaaca7477781b31bb54472371b047b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4506 | {
"extension": "c-sharp",
"max_stars_count": "121.0",
"max_stars_repo_name": "sisisin/pulumi-gcp",
"max_stars_repo_path": "sdk/dotnet/Monitoring/Inputs/SloWindowsBasedSliArgs.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4507"
} | starcoder | <filename>sdk/dotnet/Monitoring/Inputs/SloWindowsBasedSliArgs.cs<gh_stars>100-1000
// *** 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.Coll... | 1.895429 | a5f0a22bd986f9695d4bca5ef793285e |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4507 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "adnanioricce/StormyCommerce",
"max_stars_repo_path": "src/Modules/StormyCommerce.Module.Customer/ModuleInitializer.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4508"
} | starcoder | <reponame>adnanioricce/StormyCommerce<gh_stars>0
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Ex... | 1.722003 | fd74e309c46c38a11eb56f6c10034e7b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4508 | {
"extension": "c-sharp",
"max_stars_count": "3.0",
"max_stars_repo_name": "SpriteStudio/RiaJuSniper_UnrealEngine4Project",
"max_stars_repo_path": "Project/Riaju1/Plugins/SpriteStudio5/Source/SpriteStudio5/SpriteStudio5.Build.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4509"
} | starcoder | <gh_stars>1-10
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SpriteStudio5 : ModuleRules
{
public SpriteStudio5(TargetInfo Target)
{
DynamicallyLoadedModuleNames.AddRange(
new string[] {
}
);
PublicIncludePaths.AddRange(
new str... | 1.065272 | 3f8a0a6372b111e318f6f05604fb57b4 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4509 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "jcurl/RJCP.DLL.Log",
"max_stars_repo_path": "TraceReader.Core/TraceReader/LogTraceLine.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4510"
} | starcoder | namespace RJCP.Diagnostics.Log
{
using System;
/// <summary>
/// A Trace Line from a log file with a real-time clock time stamp.
/// </summary>
public class LogTraceLine : TraceLine
{
/// <summary>
/// Initializes a new instance of the <see cref="TraceLine"/> class.
///... | 2.959262 | 6522eb9e26d5f9d376d77b8b9d7a3b0a |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4510 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "freddycoder/message-builder-dotnet",
"max_stars_repo_path": "message-builder-release-ab-v02_r02/Main/Ca/Infoway/Messagebuilder/Model/Ab_mr2007_v02_r02/Common/Coct_mt470002ca/ConsentedToBy.cs",
"provenance": "train-00000-of-00045.jsonl... | starcoder | /**
* Copyright 2013 Canada Health Infoway, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | 1.653968 | 689256baea4e418fd9b21a3bb173273a |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4511 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "GMihalkow/CSharp",
"max_stars_repo_path": "CSharp Fundamentals 2018/Csharp OOP Advanced/Generics - Exercise/04_Generic_swap_integers/Box.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4512"
} | starcoder | <filename>CSharp Fundamentals 2018/Csharp OOP Advanced/Generics - Exercise/04_Generic_swap_integers/Box.cs
using System;
using System.Collections.Generic;
using System.Text;
public class Box<T>
{
private List<T> elements;
public Box(List<T> elements)
{
this.Elements = elements;
}
public ... | 3.939365 | 2ceeba7098ec789456b1ad8b44d19535 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4512 | {
"extension": "c-sharp",
"max_stars_count": "3268.0",
"max_stars_repo_name": "gjy5885/azure-sdk-for-net",
"max_stars_repo_path": "sdk/logic/Microsoft.Azure.Management.Logic/src/Generated/Models/RecurrenceSchedule.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4513"
} | starcoder | // <auto-generated>
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// re... | 2.015905 | b8e6f75e57b76414dce3ee8d5e7704bc |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4513 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "nataren/mono",
"max_stars_repo_path": "mcs/errors/cs0711.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4514"
} | starcoder | // cs0711.cs: `StaticClass': Static classes cannot contain destructor
// Line: 5
static class StaticClass {
~StaticClass () {}
}
| 1.910994 | 35566c16d20ef2483b4ae3df14f3e834 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4514 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "TsvetanMilanov/Employer-Employee-Hunt",
"max_stars_repo_path": "Web/EmployerEmployeeHuntSystem.Web/Areas/Administration/Controllers/UsersController.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4515"
} | starcoder | <reponame>TsvetanMilanov/Employer-Employee-Hunt<gh_stars>0
namespace EmployerEmployeeHuntSystem.Web.Areas.Administration.Controllers
{
using System.Linq;
using System.Web.Mvc;
using Infrastructure.Mapping;
using Services.Data.Contracts;
using ViewModels.Users;
public class UsersController : Ad... | 2.169676 | 057563ced5eeb6c9f860423cdad7b234 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4515 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "agents-net/agents.net",
"max_stars_repo_path": "src/Agents.Net.Tests/Tools/Communities/DefensiveProgrammingCommunity/Agents/ExceptionLogger.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4516"
} | starcoder | #region Copyright
// Copyright (c) <NAME> and contributors
// This file is licensed under MIT
#endregion
using System;
using Agents.Net;
using Agents.Net.Tests.Tools.Communities.DefensiveProgrammingCommunity.Messages;
namespace Agents.Net.Tests.Tools.Communities.DefensiveProgrammingCommunity.Agents
{
... | 2.392544 | e03637eeb3ec2bba8df71a2abc1b98b1 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4516 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Ed-ward/Armature",
"max_stars_repo_path": "src/Armature.Core/build/AssemblyInfo.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4517"
} | starcoder | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("Armature.Core")]
[assembly: AssemblyDescription("The core part of the Armature framework, can be used to build your own framework with syntax and features of your choice")]
[assembly: InternalsVisibleTo("Tests, PublicKey=" + Pu... | 1.499312 | d3390584e98dded634c7aceda2acfbec |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4517 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "paulmey/sphero-sdk-net",
"max_stars_repo_path": "src/shpero.Rvr/Protocol/MessageReceiver.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4518"
} | starcoder | <reponame>paulmey/sphero-sdk-net<filename>src/shpero.Rvr/Protocol/MessageReceiver.cs
namespace shpero.Rvr.Protocol
{
public class MessageReceiver
{
}
} | 0.966632 | 763d4c3b7be83930b0f5588921b3676a |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4518 | {
"extension": "c-sharp",
"max_stars_count": "10.0",
"max_stars_repo_name": "gpsnmeajp/Oredayo4V",
"max_stars_repo_path": "Assets/SimpleEncryptedDataSendSample/FileTransferSample/SEDSS_Client_File.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4519"
} | starcoder | /*
MIT License
Copyright (c) 2020 gpsnmeajp
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, dis... | 2.013855 | 50f1ebf019ac3b2575a43ece9b7fddb1 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4519 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "lucaslopezf/CienciaArgentina.Microservices",
"max_stars_repo_path": "CienciaArgentina.Microservices.Storage.Azure/QueueStorage/MessageQueue.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4520"
} | starcoder | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.WindowsAzure.Storage.Queue;
using Microsoft.WindowsAzure.Storage;
using Newtonsoft.Json;
namespace CienciaArgentina.Microservices.Storage.Azure.QueueStorage
{
public static class AzureQueue
{
... | 2.704469 | 2162d66c4cacc2df453cef1e97cc9056 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4520 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "zhaobingwang/blocks",
"max_stars_repo_path": "MicroServicesArchitecture/src/Skyline.WebRazor/Pages/_ViewImports.cshtml",
"provenance": "train-00000-of-00045.jsonl.gz:4521"
} | starcoder | @using Skyline.WebRazor
@namespace Skyline.WebRazor.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@using Microsoft.AspNetCore.Authorization;
@using Skyline.Domain.ContactAggregate;
@inject IAuthorizationService AuthorizationService; | 1.298769 | ada8a6867afc0e66f5f8a5706cb726fd |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4521 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Borlay/Borlay.Injection",
"max_stars_repo_path": "Borlay.Injection/Borlay.Injection/ResolverItem.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4522"
} | starcoder | <reponame>Borlay/Borlay.Injection
using System;
using System.Collections.Generic;
using System.Text;
namespace Borlay.Injection
{
public class ResolverItem<T> : IDisposable
{
public T Result { get; private set; }
public Action DisposeAction { get; private set; }
public bool IsSingle... | 2.732053 | 2d6998748182c85d6d768bcb24fa604c |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4522 | {
"extension": "c-sharp",
"max_stars_count": "26.0",
"max_stars_repo_name": "WeihanLi/runtime",
"max_stars_repo_path": "src/coreclr/tools/Common/Compiler/Logging/ReferenceSource/MessageOrigin.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4523"
} | starcoder | <gh_stars>10-100
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics;
using System.Linq;
using System.Text;
using Mono.Cecil;
using Mono.Cecil.Cil;
namespace Mono.Linker
{
public readonly stru... | 2.054125 | 4ac326d0aa06e8f3bce0bc72b5ad0bbd |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4523 | {
"extension": "c-sharp",
"max_stars_count": "2.0",
"max_stars_repo_name": "pacatum/Helmbet-RPS",
"max_stars_repo_path": "Assets/Scripts/BaseApi/Data/JsonConverters/Enums/RockPaperScissorsGestureEnumConverter.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4524"
} | starcoder | <reponame>pacatum/Helmbet-RPS
using System;
using Base.Config;
namespace Base.Data.Json {
public sealed class RockPaperScissorsGestureEnumConverter : JsonCustomConverter<ChainTypes.RockPaperScissorsGesture, string> {
const string ROCK = "rock"; // \m/,
const string PAPER = "paper";
const string SCISSORS = "... | 2.269379 | 50759d7a3ba3f2e899cf457017866d2e |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4524 | {
"extension": "c-sharp",
"max_stars_count": "54.0",
"max_stars_repo_name": "kiwec/HollowKnight.Multiplayer",
"max_stars_repo_path": "MultiplayerClient/MultiplayerClient/GetKnightAttacks.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4525"
} | starcoder | using ModCommon;
using UnityEngine;
namespace MultiplayerClient
{
internal partial class MPClient
{
/*public GameObject attacks;
public GameObject slash;
public GameObject altSlash;
public GameObject downSlash;
public GameObject upSlash;
public GameObject wallSl... | 1.971551 | 03950944efa0f184a3a3bd6bb557ef39 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4525 | {
"extension": "c-sharp",
"max_stars_count": "107.0",
"max_stars_repo_name": "mic-max/opentelemetry-dotnet-instrumentation",
"max_stars_repo_path": "test/test-applications/integrations/dependency-libs/Samples.ExampleLibrary/GenericTests/PointStruct.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4526"
} | starcoder | <filename>test/test-applications/integrations/dependency-libs/Samples.ExampleLibrary/GenericTests/PointStruct.cs
namespace Samples.ExampleLibrary.GenericTests
{
public struct PointStruct
{
public int X;
public int Y;
public PointStruct(int x, int y)
{
X = x;
... | 2.214142 | ecbf41c87af458fa5ea38c56b971133f |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4526 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "wwwhackcom/ASP.NET-MVC-Website",
"max_stars_repo_path": "NickZPS/Views/OrderDetails/Index.cshtml",
"provenance": "train-00000-of-00045.jsonl.gz:4527"
} | starcoder | @model IEnumerable<NickZPS.Models.OrderDetail>
@{
ViewBag.Title = "Index";
}
<h2>OrderDetail List</h2>
<p>
@Html.ActionLink("Create New OrderDetail", "Create")
</p>
<table style="width:100%">
<tr>
<th>Operation</th>
<th>
UnitPrice
</th>
<th>
... | 2.675025 | c43d463404b06e5cf3a2ccae590741cd |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4527 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "greenapp-debug/SapphireDb",
"max_stars_repo_path": "SapphireDb/Command/Execute/ExecuteResponse.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4528"
} | starcoder | namespace SapphireDb.Command.Execute
{
public class ExecuteResponse : ResponseBase
{
public object Result { get; set; }
public ExecuteResponseType Type { get; set; }
public enum ExecuteResponseType
{
End, Notify
}
}
}
| 1.858242 | e90073b2173c3a12d4e7d59a90651ccd |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4528 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "ursenzler/io",
"max_stars_repo_path": "source/Appccelerate.IO/Access/IFileExtension.g.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4529"
} | starcoder | //-------------------------------------------------------------------------------
// <copyright file="IFileExtension.cs" company="Appccelerate">
// Copyright (c) 2008-2014
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// ... | 1.688429 | 85c980a904c1609b0a9dc696169e436d |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4529 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "Gyokay/Telerik-Academy-Exam-Solutions",
"max_stars_repo_path": "CSharp-Part-1/Telerik_Logo/Telerik_Logo/Program.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4530"
} | starcoder | <reponame>Gyokay/Telerik-Academy-Exam-Solutions
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Telerik_Logo
{
class Program
{
static void Main(string[] args)
{
int x = int.Parse(Console.ReadL... | 2.713518 | e552f6006b7e4f94528edd2c07e2fbf0 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4530 | {
"extension": "c-sharp",
"max_stars_count": "1.0",
"max_stars_repo_name": "philasmar/aws-sdk-net",
"max_stars_repo_path": "sdk/src/Services/SecurityHub/Generated/Model/AwsCodeBuildProjectEnvironment.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4531"
} | starcoder | /*
* Copyright Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "li... | 1.615887 | 05f7b73f4f80b77237648816e8b0c719 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4531 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "junseougku/Proejct2",
"max_stars_repo_path": "Project3/Project3/SellManagement/SellItemRemoveForm.Designer.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4532"
} | starcoder | namespace Project3.SellManagement
{
partial class SellItemRemoveForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </sum... | 2.086501 | 265f97578ce458b996233f15466fb41b |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4532 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "git-martin/ssc",
"max_stars_repo_path": "Ssc/SSCWeb.Common/Models/IssueModel.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4533"
} | starcoder | namespace SSCWeb.Common.Models
{
public class IssueModel
{
public long Issue => long.Parse(StrIssue);
public int ShortIssue => int.Parse(StrIssue.Substring(8, 3));
public int Wan { get; set; }
public int Qian { get; set; }
public int Bai { get; set; }
public int S... | 1.822752 | 2caac25b3fb50f46873834613791a2f6 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4533 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "omajid/command-line-api",
"max_stars_repo_path": "src/System.CommandLine/Help/HelpOption.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4534"
} | starcoder | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace System.CommandLine.Help
{
internal class HelpOption : Option
{
public HelpOption() : base(new[]
{
... | 2.22636 | 9e6654a901e98966fab1812db9336d51 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4534 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "vitorbellotto/LoadProfileGenerator",
"max_stars_repo_path": "ChartCreator2/OxyCharts/SettlementPlots.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4535"
} | starcoder | <filename>ChartCreator2/OxyCharts/SettlementPlots.cs<gh_stars>0
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using Automation.ResultFiles;
using Common;
using JetBrains.Annotations;
using OxyPlot;
using OxyPlot.Axes;
using OxyPlot.Legends;
using OxyPlot.Series... | 2.436023 | 65fb68e60076d323ef73c7f778e78d8d |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4535 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "khairuzzaman/TaskManager",
"max_stars_repo_path": "TaskManagement.Core/TaskManagementContext.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4536"
} | starcoder | using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using TaskManagement.Core.DomainEntity;
namespace Task... | 2.495094 | c25b0126f8c74df5c129319e4c8af194 |
2023-09-08T23:13:54.392Z | 2023-09-08T23:13:54.392Z | 4536 | {
"extension": "c-sharp",
"max_stars_count": "0.0",
"max_stars_repo_name": "msavencov/MS.RestApi",
"max_stars_repo_path": "src/MS.RestApi.SourceGenerator/Pipe/IMiddleware.cs",
"provenance": "train-00000-of-00045.jsonl.gz:4537"
} | starcoder | namespace MS.RestApi.SourceGenerator.Pipe
{
internal interface IMiddleware<TContext>
{
public void Execute(TContext context);
}
} | 1.338139 | 64d75cb8b1c9cf1ebbf1470f7fddd1c2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.