content stringlengths 23 1.05M |
|---|
namespace CarsVelingrad.Services
{
using CarsVelingrad.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class WindowsFormService
{
private ApplicationDbContext dbContext;
public WindowsFormService(ApplicationDbContext dbCon... |
namespace DotnetModelFuzzing.Manipulations
{
public interface IGenerationManipulation<T>
{
T Manipulate(T input = default);
}
}
|
using System.Collections.Generic;
public interface ISensor
{
float[] GetReceptors();
IEnumerable<string> GetLabels();
void OnRefresh();
void OnReset();
} |
using System;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Microsoft.WindowsAzure.Storage.Table;
using Streamstone;
namespace Example.Scenarios
{
public class S06_Include_additional_entities : Scenario
{
public override async Task RunAsync()
{
var existent = await S... |
using System.Collections.Generic;
using UnityEngine;
namespace com.liteninja.unityextensions
{
public static class IListExtensions
{
/// <summary>
/// Pops element by index
/// </summary>
public static T Pop<T>(this IList<T> list, int index)
{
var element = l... |
using AutoMapper;
using LuizaLabs.Application.ViewModels;
using LuizaLabs.Domain.Commands.Customer;
namespace LuizaLabs.Application.AutoMapper
{
public class ViewModelToDomainMappingProfile : Profile
{
public ViewModelToDomainMappingProfile()
{
CreateMap<AddCustomerViewModel, AddNe... |
using System;
using System.Threading;
using Xunit;
using Yggrasil.Ai.BehaviorTree;
using Yggrasil.Ai.BehaviorTree.Leafs;
namespace Yggdrasil.Test.AI.BehaviorTree.Leafs
{
public class WaitTests
{
[Fact]
public void Wait_2000()
{
var state = new State();
var waitTime = 2000;
var routine = new Wait(Tim... |
using UnityEngine;
namespace CVRLabSJSU
{
public class DebugLogHelper : MonoBehaviour
{
public void DebugLog(string message)
{
Debug.Log(message);
}
public void DebugLog(float value)
{
Debug.Log(value);
}
}
} |
using SimControls.Model;
using SimControls.Model.CompositeElements;
using Xunit;
namespace SimControls.Test.Model
{
public class TwoStepDoubleItemTest
{
private readonly DataItem<double> innerItem = new();
private readonly TwoStepDoubleItem sut;
public TwoStepDoubleItemTest()
... |
using System;
namespace Job.Logger.Services.Flags
{
[Flags]
public enum ProviderKind
{
None = 0,
File = 1,
Console = 2,
Database = 4,
All = 7
}
}
|
using System;
using Psh;
/// <summary>PshGP executes a genetic programming run using the given parameter file.</summary>
/// <remarks>
/// PshGP executes a genetic programming run using the given parameter file. More
/// information about parameter files can be found in the README.
/// </remarks>
public class PshGP {
... |
using System.Text.Json.Serialization;
namespace Horizon.Payment.Alipay.Domain
{
/// <summary>
/// BakingItemOperationData Data Structure.
/// </summary>
public class BakingItemOperationData : AlipayObject
{
/// <summary>
/// 累计库存
/// </summary>
[JsonPropertyName("ac... |
using System;
using UnityEngine;
using System.Collections.Generic;
public class AssetBundleManager
{
private readonly Main _main;
public GameObject FrontCarGo;
public GameObject BackCarGo;
public GameObject[] Support_Go;
public GameObject[] AngledSupportGo;
public GameObject SupportHalf;
... |
using SystemDot.Messaging.Packaging;
namespace SystemDot.Messaging.Direct
{
public class DirectChannelMessageHeader : IMessageHeader
{
}
} |
/*
* Copyright (c) 2014, Furore (info@furore.com) and contributors
* See the file CONTRIBUTORS for details.
*
* This file is licensed under the BSD 3-Clause license
* available at https://raw.github.com/furore-fhir/spark/master/LICENSE
*/
using Hl7.Fhir.Model;
using Hl7.Fhir.Rest;
using System;
using System.C... |
using Sharpen;
namespace android.net
{
[Sharpen.NakedStub]
public class UrlQuerySanitizer
{
[Sharpen.NakedStub]
public class ParameterValuePair
{
}
[Sharpen.NakedStub]
public interface ValueSanitizer
{
}
[Sharpen.NakedStub]
public class IllegalCharacterValueSanitizer
{
}
}
}
|
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. Licensed under the MIT license.
//----------------------------------------------------------------
namespace Microsoft.Azure.Documents.ChangeFeedProcessor.FeedProcessing
{
using System;
using System.Coll... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Shapes;
namespace IronPlot
{
public class MarkersVisualHost : FrameworkElement
{
VisualCollection vis... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MicroService.TeamService.Models
{
/// <summary>
/// 团队成员模型
/// </summary>
public class Member
{
/// <summary>
/// 团队成员主键
/// </summary>
public int Id { set; ge... |
using NetSales.Entitys.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NetSales.Entitys.Tables
{
// fiş tablosu
public class Slip:IEntity
{
public int Id { get; set; }
public string SlipCode { get; se... |
namespace BusinessLayer.DTO
{
public class BandReviewDTO : ReviewDTO
{
public int BandId { get; set; }
}
}
|
using System;
using System.Threading.Tasks;
using ReactiveUI;
namespace NeptunLight.Services
{
public interface IRefreshManager : IReactiveObject
{
bool IsRefreshing { get; set; }
DateTime LastRefreshTime { get; set; }
Task RefreshAsync();
Task RefreshIfNeeded();
}
} |
using System.Threading.Tasks;
namespace HousingFinanceInterimApi.V1.Gateways.Interface
{
/// <summary>
/// The UP cash file name gateway interface.
/// </summary>
public interface IUPCashLoadGateway
{
public Task LoadCashFiles();
}
}
|
using DurableDice.Common.Models.Commands;
namespace DurableDice.Common.Abstractions;
public interface IGameEntity
{
Task AddPlayerAsync(AddPlayerCommand command);
Task AttackFieldAsync(AttackMoveCommand command);
Task EndRoundAsync(string playerId);
Task RemovePlayerAsync(string playerId);
Ta... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace MSt.Data.Entity
{
/// <summary>
/// User used to identify a authenticated user
/// </summary>
public class User
{
/// <summary>
/// ID User
/// </summary>
[Key]
public Guid Guid { get; set; }
/// <... |
using System;
namespace RootSE.ORM
{
[Serializable]
public class RepositoryException : Exception
{
public RepositoryException(string message)
: base(message)
{
}
}
[Serializable]
public class RepositoryException<InstanceT> : RepositoryException
{
public RepositoryException(string m... |
namespace CurrencyRateAgregator.Api.Services.BY
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text.Json;
using System.Threading.Tasks;
using CurrencyRateAgregator.Api.Models;
public class ProviderBY : IProvider
{
pri... |
using System;
using System.Collections.Generic;
using HotChocolate.Configuration;
using HotChocolate.Language;
using HotChocolate.Properties;
using HotChocolate.Types.Descriptors;
namespace HotChocolate.Types.Factories
{
internal class SchemaSyntaxVisitor
: SchemaSyntaxWalker<object>
{
private ... |
// ---------------------------------------------------------------------------------------
// ILGPU
// Copyright (c) 2020-2021 ILGPU Project
// www.ilgpu.net
//
// File: CLKernelTypeGenerator.cs
//
// This file is part of ... |
using System;
using System.Reflection;
using EasyNetQ;
using EasyNetQ.AutoSubscribe;
using EasyNetQ.DI;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace Sikiro.Bus.Extension
{
public static class IocExtension
{
public sta... |
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Logic;
using System.Collections.Generic;
namespace Tests
{
[TestClass]
public class Day23Tests
{
private List<int> input = new List<int> { 4, 8, 7, 9, 1, 2, 3, 6, 5 };
[TestMethod]
public void Day23Part1Example1Test()
... |
using System;
namespace NvimClient.API.NvimPlugin.Attributes
{
[AttributeUsage(AttributeTargets.Method)]
public class NvimCommandAttribute : Attribute
{
public string Addr { get; set; }
public string Complete { get; set; }
public long Count { get; set; }
public string Eval { get; set; }
publi... |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace RightClickAmplifier
{
public partial class FrmMakroEditor : Form
{
Con... |
using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace CyberEyes
{
public partial class EndScreenPage : ContentPage
{
public EndScreenPage()
{
InitializeComponent();
finalPhoto.Source = ImageSource.FromResource("CyberEyes.Images.finalImage.jpg");
var appData = (ScavengerHuntMa... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UIController : MonoBehaviour
{
private int scoreNum = 0;
public Text health, round, score, turret, timer;
public void DoHealth(int h)
{
health.text = h.ToString() + "%";
}
... |
using Community.Sitecore.ContentSearch.Azure.Tests.Mocks;
using Community.Sitecore.ContentSearch.Azure;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Sitecore.ContentSearch.Azure.Models;
using System.Collections;
using System.Collections.Generic;
namespace Community.Sitecore.ContentSearch.Azure.Tests
{
... |
using System;
using Lench.AdvancedControls.Blocks;
using Lench.AdvancedControls.Resources;
using UnityEngine;
// ReSharper disable UseNullPropagation
namespace Lench.AdvancedControls.Controls
{
/// <summary>
/// Input control creates analog input for otherwise one or two key actions.
/// </summary>
pu... |
using System;
using System.Linq;
using NknSdk.Client;
using NknSdk.Common.Extensions;
namespace NknSdk.Common
{
public static class Address
{
public const int Uint160Length = 20;
public const int CheckSumLength = 4;
public const string Prefix = "02b825";
public static readonl... |
using System;
using System.Collections.Generic;
using OctoPatch.Descriptions;
namespace OctoPatch.Server
{
/// <summary>
/// Repository for some plugin driven types
/// </summary>
public interface IRepository
{
/// <summary>
/// Returns all discovered messages
/// </summary... |
using System;
namespace Cupboard
{
public sealed class ChocolateyPackage : Resource
{
public string Package { get; set; }
public PackageState Ensure { get; set; }
public ChocolateyPackage(string name)
: base(name)
{
Package = name ?? throw new ArgumentNu... |
using System.Linq;
using System.Text;
using SQLite;
#if NETFX_CORE
using Microsoft.VisualStudio.TestPlatform.UnitTestFramework;
using SetUp = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestInitializeAttribute;
using TestFixture = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestClassAttribute;
usin... |
using Sirenix.OdinInspector;
using UnityEngine;
namespace Project.Store
{
public class StoreInstaller : SerializedMonoBehaviour
{
[SerializeField, Required] StoreSO storeScriptableObject;
}
} |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using System;
using System.Threading;
using System.Windows.Forms;
namespace OpenLiveWriter.CoreServices
{
public class PaddedWaitCursor : IDisposable
{
public Pad... |
using System;
using System.Linq;
using Flurl;
namespace NuGet.Net
{
public static class StringExtensions
{
public static Uri WithoutPathSegments(this Uri uri, int number)
{
var segments = uri
.Segments
.Take(uri.Segments.Length - number)
... |
using DomainValidation.Interfaces.Validation;
using DomainValidation.Validation;
using EP.CursoMvc.Domain.Validations.Clientes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EP.CursoMvc.Domain.Entities
{
public class Cliente : ISelfVa... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class static_Master_Admin_Admin_Master_Page : System.Web.UI.MasterPage
{
//protected void Page_Load(object sender, EventArgs e)
//{
//}
//protecte... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DesignPattern
{
/*
该模式涉及到三个角色:
环境角色(Context):持有一个Strategy类的引用
抽象策略角色(Strategy):这是一个抽象角色,通常由一个接口或抽象类来实现。此角色给出所有具体策略类所需实现的接口。
具体策略角色(ConcreteStrategy):包装了相关算法或行为。
... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
using System.Text;... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Models
{
public class StudentModel
{
public int Id { get; set; }
public int ClassId { get; set; }
public string CardId { get; set; }
... |
using System;
using Volo.Abp.Domain.Repositories;
namespace EShopOnAbp.PaymentService.PaymentRequests
{
public interface IPaymentRequestRepository : IBasicRepository<PaymentRequest, Guid>
{
}
}
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace SimpleRemote.Controls.Dragablz.Core
{
internal class CollectionTeaser
{
private readonly Action<object> _addMethod;
private readonly Action<object> _removeMethod;
private CollectionT... |
// Copyright (c) Jeremy Likness. All rights reserved.
// Licensed under the MIT License. See LICENSE in the repository root for license information.
using System;
using System.Linq.Expressions;
using ExpressionPowerTools.Core.Comparisons;
namespace ExpressionPowerTools.Core.Extensions
{
/// <summary>
/// Bui... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BoundingContextMenu : BaseMenu
{
FocusableButton button;
BoundingBoxMenu boundingBoxMenu;
protected override void Start()
{
base.Start();
boundingBoxMenu = transform.parent.Find("Bounding Box M... |
using System;
namespace Capabilities.Util
{
public static partial class Convert
{
private const ulong MaskUnsigned16Bit = 0b_1111_1111_1111_1111;
private const ulong MaskSigned16Bit = 0b_0111_1111_1111_1111;
private const ulong Mask16BitSign = 0b_1000_0000_0000_0000;
... |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Threading;
using CtfPlayback.FieldValues;
using LTTngCds.CookerData;
using LTTngDataExtensions.DataOutputTypes;
using M... |
using System;
namespace Survi.Prevention.ServiceLayer.Import.Base.Cache
{
public class CachedForeignKey
{
public Guid Id { get; set; }
public Type Type { get; set; }
public String ExternalId { get; set; }
public DateTime ExpiredAt { get; } = DateTime.Now.AddMinutes(30);
}
}... |
// System.Net.WebPermission.WebPermission();
// System.Net.WebPermission.AddPermission(NetworkAccess,stringuri);
// System.Net.WebPermission.Intersect;
/**
* This program shows the use of the WebPermission() constructor, the AddPermission,
* and Intersect' methods of the WebPermission' class.
* It first ... |
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Linq;
namespace MarsRoverConsole
{
class Program
{
public static void Main()
{
var inputMaxPoints = Console.ReadLine().Trim().Split(' ');
var inputInstructions = Console.ReadLine().Trim().Split('... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using System.Text;
using System;
public class startMenuDemo : MonoBehaviour
{
public InputField keyInputField;
public Text keyString = null;
public GameObject encryptButton;
public GameObject demoKey... |
using Eqstra.BusinessLogic.Helpers;
using Microsoft.Practices.Prism.PubSubEvents;
using Microsoft.Practices.Prism.StoreApps;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eqstra.BusinessLogic.ServiceSchedule
{
public class Address : V... |
using System.Collections.Generic;
namespace SlackLeadsBidder.Email
{
public interface IEmailDelivery
{
IEmailDelivery AddAttachment(string base64Data, string fileName, string fileType);
IEmailDelivery AddRecipient(string email);
List<EmailDeliveryResult> Send();
}
}
|
using NETCore.Encrypt.Extensions;
using System;
namespace WFw.GeTui.Models.Auth
{
/// <summary>
/// 鉴权
/// </summary>
public class AuthRequest
{
/// <summary>
/// 签名
/// </summary>
public string sign { get; set; }
/// <summary>
/// 时间戳
/// <... |
namespace StatHarvester.DAL.Models.Specs.Items
{
using SpecAttributes;
[ItemSpecType("Exterminator")]
public class Exterminator : ItemSpec
{
[IntField]
public int ActivationEnergy { get; set; }
[IntField]
public int Douses { get; set; }
public bool Fire { get;... |
using System;
using System.Collections.Generic;
using System.Text;
using Havit.Collections;
namespace Havit.Business.Query
{
/// <summary>
/// Kolekce položek SortItem.
/// Určeno pro položky ORDER BY skládače SQL dotazu (QueryParameters).
/// </summary>
public class OrderByCollection : Havit.Collections.SortIte... |
namespace Data.Enums
{
public enum NpcRace
{
None,
RedCap,
Pixie,
YoungCentaurs,
SaberToothCougar,
PollutedUnicorn,
LongTusk,
Pigling,
UnseelieNoble,
DyingGhillieDhu,
PollutedEarthSpirit,
FallenSpiritOfNature,
... |
namespace HoodedCrow.uCore.Core
{
public struct LoadDataMessageContent: IMessageContent
{
}
}
|
using System.Collections;
using System;
using UnityEngine;
namespace WellFired.Initialization
{
public class ContextInitializer<T> : MonoBehaviour where T : IInitializationContext
{
protected T Context
{
get;
set;
}
private void Start()
{
if(Context == null)
throw new Exception("Created an ... |
private sealed class LeftShiftInstruction.LeftShiftUInt16 : LeftShiftInstruction // TypeDefIndex: 2498
{
// Methods
// RVA: 0x17BFBF0 Offset: 0x17BFCF1 VA: 0x17BFBF0 Slot: 8
public override int Run(InterpretedFrame frame) { }
// RVA: 0x17BF560 Offset: 0x17BF661 VA: 0x17BF560
public void .ctor() { }
}
|
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Linq;
namespace RfgTools.Types
{
public class matrix43
{
//The names of these vectors are based on the common purpose of a 4x3 matrix in RFG
public vector3f rvec;
public vector3f uvec;
public ve... |
@using Template.Application.TodoLists.Commands.CreateTodoList;
@model CreateTodoListCommand;
<form class="form-inline" method="post" asp-controller="TodoLists" asp-action="Create">
<div class="form-group mx-sm-3 mb-2">
<input type="text" class="form-control" asp-for="Title" placeholder="New List">
</... |
using Microsoft.Identity.Client;
using System.Threading.Tasks;
namespace HDR_UK_Web_Application.IServices
{
public interface IAccessTokenService
{
Task<AuthenticationResult> GetAuthenticationResult();
}
}
|
using System;
namespace BusinessModel
{
public interface IBaseRequest
{
Guid RequestId { get; set; }
string Userid { get; set; }
}
}
|
/// <summary>
/// Camera zoom 2D
///
/// Programmer: Carl Childers
/// Date: 1/18/2015
///
/// Zooms a 2D camera using the mouse wheel.
/// </summary>
using UnityEngine;
using System.Collections;
public class CameraZoom2D : MonoBehaviour {
public float MinCameraSize = 1, MaxCameraSize = 20, SizeInterval = 1;
pu... |
using System;
using System.Collections.Generic;
/// <summary>
/// Represents a kind of action, as opposed to an instance of an action
/// </summary>
public class ActionType
{
/// <summary>
/// Name of this type of action
/// </summary>
public string ActionName;
/// <summary>
/// The frequency a... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Slack.Net.Core.Client;
using Slack.Net.Core.Model.Request;
using Slack.Net.Core.Model.Response;
using Slack.Net.Core.Repositories.Test;
namespace Slack.Net.Core.Console
{
public class Program
{
publi... |
using Microsoft.AspNetCore.Builder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SecureBank.Interfaces
{
public interface IDbInitializer
{
void Initialize(string admin, string adminPassword);
void Seed(string userPassword);
... |
namespace BotBits
{
public enum CampaignStatus
{
Locked = -1,
Unlocked = 0,
Completed = 1
}
} |
// Copyright (c) Kornei Dontsov. All Rights Reserved. Licensed under the MIT.
// See LICENSE in the project root for license information.
namespace KorneiDontsov.Logging.Example {
using Microsoft.Extensions.Hosting;
using Serilog;
using System;
using System.Threading;
using System.Threading.Tasks;
class Servic... |
@{
Layout = "_Layout";
}
<div class="row">
<div class="col-md-12" id="splash">
<h2>Welcome back Pierre,<h2>
<h4>What would you like to do?</h4>
<a href="/vendors">
<button type="submit" class="btn btn-primary">View Vendors</button>
</a>
</div>
</div> |
using AstralKeks.Workbench.Common.Context;
namespace AstralKeks.ChefSpoon.Core.Resources
{
internal class Paths
{
public static string WorkspaceDirectory => Location.Workspace();
public static string UserspaceDirectory => Location.Userspace(Directories.Spoon);
}
}
|
using System;
using DotNetCommons.Temporal;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace DotNetCommons.Test.Temporal
{
[TestClass]
public class DateBasedHolidayTests
{
[TestMethod]
public void Test()
{
var holiday = new DateBasedHoliday("Bork Day", Holi... |
using NUnit.Framework;
namespace Ncqrs.Spec
{
public class SpecificationAttribute : TestFixtureAttribute { }
} |
using Microsoft.AspNetCore.Mvc;
using Allergies.Models;
namespace Allergies.Controllers
{
public class HomeController : Controller
{
[Route("/")]
public ActionResult AllergyForm()
{
return View();
}
[Route("/results")]
public ActionResult Results(int score)
{
AllergyScore al... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windo... |
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.Extensions.Logging;
using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Mvc.Rendering;
using GroceryDe... |
namespace FootballPredictions.Models
{
public class Prediction
{
public int Id { get; set; }
public Game Game { get; set; }
public GameResult Result { get; set; }
// TODO: prediction should have user
}
}
|
using Newtonsoft.Json;
namespace Monaco.Editor
{
/// <summary>
/// Configuration options for go to location
/// </summary>
public sealed class GoToLocationOptions
{
[JsonProperty("alternativeDeclarationCommand", NullValueHandling = NullValueHandling.Ignore)]
public string Alternati... |
using System;
using System.Collections.Generic;
namespace Tbs.DomainModels
{
internal class CommonStat
{
public HashSet<DateTime> DtHS {get; set; }
public int[] Qtums { get; set; }
public CommonStat(int count)
{
DtHS = new HashSet<DateTime>();
Qtums = ne... |
using System.Collections.Generic;
using MVsFileTypes.Contracts.Collections;
namespace MVsFileTypes.Contracts.Validation
{
public class ValidationIncident
{
public string Extension { get; set; }
public ValidationMode ValidationMode { get; set; }
public IEnumerable<FileType> FileTypes { ... |
using System.Reflection;
using Nancy;
using SerpoServer.Api;
using SerpoServer.Data.Models.Enums;
namespace SerpoServer.Routes
{
public class DynamicModule : NancyModule
{
private Assembly asm = typeof(DynamicModule).Assembly;
public DynamicModule(RequestManager rm)
{
Get(... |
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.UI.Xaml.Controls;
namespace Microsoft.Maui.Handlers
{
public partial class MenuFlyoutItemHandler
{
protected override MenuFlyoutItem CreatePlatformElement()
{
return new MenuFlyoutItem();
}
protected override void Connect... |
using System;
namespace Acolyte.Numeric
{
public static class FloatExtensions
{
public static bool IsEqual(this float value, float otherValue, float tolerance)
{
return Math.Abs(value - otherValue) < tolerance;
}
public static bool IsEqual(this float value, float o... |
using Jacobi.Zim80.CpuZ80.Opcodes;
using Jacobi.Zim80.CpuZ80.UnitTests;
using Jacobi.Zim80.Diagnostics;
using Jacobi.Zim80.Memory.UnitTests;
using Jacobi.Zim80.Test;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace Jacobi.Zim80.CpuZ80.Instructions.UnitTests
{
[TestClass]
public clas... |
using SF.Entitys.Abstraction;
using System.Security.Claims;
using System.Collections.Generic;
using System.Linq;
using System;
namespace SF.Web.Security
{
public class Permission
{
public const string ClaimType = "Permission";
public Permission()
{
}
public Permission(s... |
using System.ComponentModel.Composition;
using System.Waf.Applications;
using System.Windows.Input;
using Waf.BookLibrary.Library.Applications.Views;
using Waf.BookLibrary.Library.Domain;
namespace Waf.BookLibrary.Library.Applications.ViewModels;
[Export]
public class PersonViewModel : ViewModel<IPersonView... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.IO;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DWGLib.Control
{
public partial class CSCECDECLib : UserControl
{
... |
#region FileInfo
// Copyright (c) 2022 Wang Qirui. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
// This file is part of Project Simulator.
// File Name : ITimeLine.cs
// Author : Qirui Wang
// Created at : 2022/04/08 10:06
// De... |
using ProtoBuf.Grpc.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mov.Core
{
public class GenericBinder : ServiceBinder
{
protected override string GetDefaultName(Type contractType)
... |
#Mon Feb 27 04:08:29 GMT 2017
lib/com.ibm.ws.dynacache.monitor_1.0.16.jar=ecc301655f93deb78297662a8abb9a07
lib/features/com.ibm.websphere.appserver.distributedMapPMI-1.0.mf=9efe6fa248f4e37f74c58e61f0aa4b52
|
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Input;
namespace CMiX.ColorPicker
{
public class ColorText : TextBox
{
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (e.Key == Key.Enter)
{
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.