text stringlengths 1 932k |
|---|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Framework.Input;
using osuTK;
using osu.Framework.Allocation;
using osu.Game.Configurati... |
@page
@model Domotica.Core.Pages.IndexModel
@{
ViewData["Title"] = "Control hosting page";
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
... |
using System.Collections.Generic;
using GraphQL.Types;
using JoinMonster;
namespace StarWars.Types
{
public class HumanType : ObjectGraphType
{
public HumanType()
{
Name = "Human";
this.SqlTable("characters", "id").AlwaysFetch("type");
Field<NonNullGraphTyp... |
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using PlayCat.DataModels;
using PlayCat.DataServices.DTO;
using PlayCat.DataServices.Mappers;
using PlayCat.DataServices.Request;
using PlayCat.DataServices.Response;
using PlayCa... |
namespace Blog.Domain.Entities
{
using System;
using Exceptions;
public class Comment : AuditableEntity<int>
{
private string content;
public Comment(string content, string userId)
{
this.Content = content;
this.UserId = userId;
}
publi... |
@model PlantM.Models.PlantModels.AcquisitionType
@{
ViewBag.Title = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>AcquisitionType: @Model.Name</h4>
<hr />
<dl class="dl-horizontal">
</dl>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
... |
// *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** 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;
namespace Pulumi.AwsN... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;
using System.Windows.Media.Imaging;
namespace DXVisualTestFixer.UI.Converters {
public class ArrayToImageConverter : IValueCon... |
/////////////////////////////////////////////////////////////////////////////////////////////
/////// THIS FILE HAS BEEN AUTOMATICALLY CONVERTED FROM THE JAVA SOURCES. DO NOT EDIT ///////
/////////////////////////////////////////////////////////////////////////////////////////////
using Giis.Selema.Portable;
using Giis... |
using Terraria;
using Terraria.ModLoader;
namespace tsorcRevamp.Buffs
{
class MagicWeapon : ModBuff
{
public override void SetDefaults()
{
DisplayName.SetDefault("Magic Weapon");
Description.SetDefault("Your weapon is imbued with magic!");
Main.debuff[Type] ... |
//
// Copyright (c) Jesse Freeman, Pixel Vision 8. All rights reserved.
//
// Licensed under the Microsoft Public License (MS-PL) except for a few
// portions of the code. See LICENSE file in the project root for full
// license information. Third-party libraries used by Pixel Vision 8 are
// under their own ... |
using YAF.Lucene.Net.Codecs;
using YAF.Lucene.Net.Diagnostics;
using YAF.Lucene.Net.Util;
using YAF.Lucene.Net.Util.Packed;
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace YAF.Lucene.Net.Index
{
/*
* Licensed to the Apache Software Foundation (ASF) under one o... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using A... |
namespace Calculator
{
partial class Calculator
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should... |
// 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.Diagnostics;
using System.Threading;
using Microsoft.C... |
using System.Threading.Tasks;
namespace RoboBank.Email.Application.Ports
{
public interface IEmailService
{
Task SendAsync(string to, string subject, string message);
}
} |
using UnityEngine;
namespace Item {
public enum ItemNameID {
None, Chrome, Donut, FanfictionNotebook, StrawberryMilkshake, USB, GrassJellyMilkTea, Guitar, HotCoffee, Markers, OrangeJuice, WhiteEarphones, IcedTea, Headset, Milk
};
namespace Database {
public struct ItemDatabase {
private static ... |
using System;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace NotepadIPlus
{
public partial class Splash : Form
{
public Splash()
{
InitializeComponent();
}
private async void FormLoad(object sender, EventArgs e)
{
await Task... |
// *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** 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;
namespace Pulumi.Azur... |
using System;
using System.Collections.Generic;
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
namespace UTJ.Alembic
{
public class AlembicStream : IDisposable
{
static List<AlembicStream> s_streams = new List<AlembicStream>();
public static void DisconnectStreamsWithPath(string... |
using System;
using System.Collections.Generic;
using System.Text;
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.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Wi... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace MetroMate
{
public class ExceptionTreeNodeDuplication : Exception
{
public ExceptionTreeNodeDuplication(string ErrNode) :
base("Found node data duplication - " + ErrNode)
{ }
... |
// <copyright file="AzureSdkDiagnosticListener.cs" company="OpenTelemetry Authors">
// Copyright 2018, OpenTelemetry Authors
//
// 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
//
// htt... |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using NuGet.Common;
using NuGet.Configuration;
using NuGet.Frameworks;
using NuGet.LibraryModel;
using N... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entities
{
public abstract class AbstractBaseClass
{
public int Id { get; private set; }
public int Something { get; private set; }
public int? FooEntityId { g... |
using System;
using Newtonsoft.Json;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
/// <summary>
/// AlipayFundTransRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransRefundModel : AlipayObject
{
/// <summary>
/// JSON格式,传递业务扩展参数,使用前请... |
// Copyright (c) 2019 .NET Foundation and Contributors. All rights reserved.
// 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 full license information.
using System;
using System.Col... |
namespace Robots.Model
{
public class CommentEntry : Entry
{
public CommentEntry()
: base(EntryType.Comment)
{ }
}
} |
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using Newtonsoft.Json;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
/// <summary>
/// AlipayOpenPublicTopicCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicTopicCreateMode... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gherkin.ViewModel
{
public class ScenarioIndex : NotifyPropertyChangedBase
{
private string m_Title;
public int Offset { get; set; }
public string Title
... |
using MassTransit;
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace InventoryServiceMassTransit1
{
public class OrderConsumer : IConsumer<Order>
{
public async Task Consume(ConsumeContext<Order> context)
{
awai... |
// <auto-generated />
using System;
using IdentityServer4.EntityFramework.DbContexts;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueC... |
using System;
using Newtonsoft.Json;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
/// <summary>
/// ExSourceRateVO Data Structure.
/// </summary>
[Serializable]
public class ExSourceRateVO : AlipayObject
{
/// <summary>
/// 买入价
/// </summary>
[JsonProp... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TrustPilotPony
{
//Notes: If no path then go in direction of domokun until it it as close as two to threee lengths units from it. then stay.
//Take shortest path.
class AllKnowing... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Umbraco.Core;
using Umbraco.Core.Configuration;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Core.Services;
using Um... |
using Microsoft.Practices.Prism.PubSubEvents;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eqstra.TechnicalInspection.UILogic.Events
{
public class VehicleFetchedEvent : PubSubEvent<bool>
{
}
} |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
namespace BiodiversityFileCopy
{
internal static class CommandOptions
{
// Ignore Spelling: mzid, fht, mzml
public static bool InterpretCommandLineOptions(Processing proc, string[] args)
{
... |
// <copyright file="App.xaml.cs" company="Traced-Ideas, Czech republic">
// Copyright (c) 1990-2021 All Right Reserved
// </copyright>
// <author>vl</author>
// <email></email>
// <date>2021-09-01</date>
// <summary>Part of Largo Composer</summary>
using System.Windows;
namespace LargoSettings
{
/// <summary>
... |
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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.apa... |
@*
Default PartialView used to render the "Add button" into the DynamicList component.
You may use this code to write your own Partial which renders the same button.
Feel free to change it in any way, but be sure to include button with class "DynamicList-AddItemButton"
*@
<div class="DynamicList-AddItemButtonWrapp... |
#nullable enable
using JetBrains.Annotations;
using Robust.Client.AutoGenerated;
using Robust.Client.Console;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
using Robust.Shared.IoC;
using Robust.Shared.Utility;
namespace Content.Client.UserInterface.AdminMenu.Tabs.AdminT... |
using System.Threading.Tasks;
namespace Atrea.PolicyEngine.Policies.Output
{
/// <summary>
/// An async output policy, which can asynchronously apply post-processing to an item processed by
/// the policy engine, perform cleanup actions, etc.
/// </summary>
/// <typeparam name="T">The type... |
using Jp.Domain.CommandHandlers;
using Jp.Domain.Commands.ApiResource;
using Jp.Domain.Commands.Client;
using Jp.Domain.Commands.IdentityResource;
using Jp.Domain.Commands.PersistedGrant;
using Jp.Domain.Commands.Role;
using Jp.Domain.Commands.User;
using Jp.Domain.Commands.UserManagement;
using MediatR;
using Microso... |
@using ServerCore.Areas.Identity.Pages.Account.Manage |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Microsoft.Extensions.Logging.Test
{
public static class TestLoggerExtensions
{
public class ScopeWithoutAnyParameters
{
p... |
//******************************************************************************
//
/*
Copyright (c) 2016 Appium Committers. All rights reserved.
Licensed to you 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 Licens... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
namespace Datalust.SerilogMiddlewareExample
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHost... |
using Avalonia;
using Avalonia.Logging.Serilog;
using AppHost.Views;
using Microsoft.Extensions.DependencyInjection;
using AppHost.ViewModels;
using Contract;
using Prise;
using System;
using Prise.Infrastructure;
using AppHost.Infrastructure;
using System.IO;
namespace AppHost
{
public class Program
{
... |
// 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 OLEDB.Test.ModuleCore;
namespace System.Xml.Tests
{
public partial class TCWriteEndDocumentOnCloseTest : ... |
using MaiAnVat.Common.Auditing;
namespace MaiAnVat.Models
{
public partial class WorkFlowStatus : IAuditedEntity
{
}
} |
// Copyright (c) Stratiteq Sweden AB. All rights reserved.
//
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.AspNetCore.Mvc;
using System;
namespace Stratiteq.Extensions.AspNetCore
{
/// <summary>
/// Extends the ProblemDetails class with... |
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Xamarin.Forms.Platform.UWP
{
internal static class PropertyChangedEventArgsExtensions
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static bool Is(this PropertyChangedEventArgs args, BindableProperty property)
{
ret... |
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Microsoft Public
* License. A copy of the license can be found in the License.html file at the
* root of this distribution. If ... |
using Devon4Net.Application.WebAPI.Configuration.Common;
using Devon4Net.Infrastructure.Common.Common.IO;
using Devon4Net.Infrastructure.Common.Handlers;
using Devon4Net.Infrastructure.Common.Options.Devon;
using Devon4Net.Infrastructure.Log;
using Devon4Net.Infrastructure.WebAPI.Common.Attributes;
using Microsoft.Asp... |
using System;
namespace DesignPatternsLibrary.Command.RemoteControl.Devices
{
public class TV
{
private readonly string location;
private int channel;
public TV(string location)
{
this.location = location;
}
public void On()
{
Console.WriteLine(location + " TV is on");
}
public void... |
using System;
using AsmResolver.IO;
namespace AsmResolver.DotNet.Signatures
{
/// <summary>
/// Provides a base for all signature that deal with a calling convention. This includes most member signatures,
/// such as method and field signatures.
/// </summary>
public abstract class CallingConventio... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/////三维用到的一些数学计算方法
namespace ConstraintTriangles
{
class _3dMathHelper
{
//判断三点共线
public static bool JudgeInLine(DVertex dv1, DVertex dv2, DVertex dv3)
{
retu... |
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... |
// <auto-generated />
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using Microsoft.CodeAnalysis.Syntax.InternalSyntax;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.CSharp
{
using Microsoft.CodeAnalysis.CSharp.Syntax;
public p... |
// ------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Mono Runtime Version: 4.0.30319.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerat... |
#region License
// The PostgreSQL License
//
// Copyright (C) 2017 The Npgsql Development Team
//
// Permission to use, copy, modify, and distribute this software and its
// documentation for any purpose, without fee, and without a written
// agreement is hereby granted, provided that the above copyright notice
// and... |
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.Azure.Devices.Applications.RemoteMonitoring.DeviceAdmin.Infrastructure.Models;
using Microsoft.Azure.Devices.Applications.RemoteMonitoring.Common.Models;
namespace Microsoft.Azure.Devices.Applications.RemoteMonitoring.DeviceAdmin.Infrastr... |
//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
using GameFramework.FileSystem;
usi... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Cofoundry.Domain.CQS;
namespace Cofoundry.Domain
{
public class GetEntityDependencySummaryByRelatedEntityQuery : IQuery<ICollection<EntityDependenc... |
/*--------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
*--------------------------------------------------------------------... |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using Bicep.Core.Extensions;
using Bicep.Core.SemanticModel;
using Bicep.Core.Syntax;
using Bicep.Core.TypeSystem;
using Newtonsoft.Json;
na... |
using System;
namespace AppGM.Core
{
public static class Constantes
{
/// <summary>
/// Valor constante para la propiedad CaracteristicasAmbiente de un <see cref="ModeloAmbiente"/>
/// </summary>
public const ECaracteristicasAmbiente CaracteristicasAmbiente = ECaracteristicasAmbi... |
/*
* Copyright 2010-2014 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 "l... |
//-----------------------------------------------------------------------
// <auto-generated />
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
using FlubuCore.Context;
using FlubuCore.Tasks;
using FlubuCore.Tasks.Attributes;
u... |
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Goo... |
// <auto-generated />
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using softasinsoftware.API;
#nullable disable
namespace softasinsoftware.API.Migrations
{
[DbContext(typeof(GearDbContext))]
partial clas... |
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace Driftr
{
public abstract class RigidBody
{
// Linear properties.
private Vector _position = new Vector(); // P
private Vector _velocity = new Vector(); // A
private Vector _forces = new Vector(); // F... |
namespace SignalGo.Server.ServiceManager.Versions
{
/// <summary>
/// data provider engine for version 1 of signalgo
/// </summary>
public class ServerDataProviderV1
{
// internal ConcurrentList<string> VirtualDirectories { get; set; } = new ConcurrentList<string>();
// ... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Th... |
//---------------------------------------------------------
// <auto-generated>
// This code was generated by a tool. Changes to this
// file may cause incorrect behavior and will be lost
// if the code is regenerated.
//
// Generated on 2020 October 09 06:01:48 UTC
// </auto-generated>
//--------------... |
/*
* 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 "license" fi... |
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Microsoft.IdentityModel.Tokens;
using SimpleOrder.Application.Services.Interfaces;
using SimpleOrder.Application.Settings;
using SimpleOrder.Application.ViewModels;
using SimpleOrder.Infra.Data.Models;
us... |
namespace Umbraco.Core.IO
{
/// <summary>
/// Provides the system filesystems.
/// </summary>
public interface IFileSystems
{
/// <summary>
/// Gets the macro partials filesystem.
/// </summary>
IFileSystem MacroPartialsFileSystem { get; }
/// <summary>
... |
using System;
using System.Runtime.InteropServices;
// http://stackoverflow.com/questions/1295890/windows-7-progress-bar-in-taskbar-in-c
namespace cwc.Utilities
{
public static class TaskbarProgress
{
public enum TaskbarStates
{
NoProgress = 0,
Indeterminate = 0x1,
... |
using System;
namespace NewRelic.Api
{
public class Client
{
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
using KissLog;
using FluentValidation;
namespace Services
{
public class NutrientService : EntityService<Nutrient>, INutrientService
{
public NutrientService(IUnitOfWork unitOfWork, INo... |
using System.Collections.Generic;
using System.Threading.Tasks;
using TBT.Business.Implementations;
using TBT.Business.Managers.Interfaces;
using TBT.Business.Models.BusinessModels;
using TBT.Business.Providers.Interfaces;
using TBT.Components.Interfaces.Logger;
using TBT.Components.Interfaces.ObjectMapper;
using TBT.... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc.Abstractions;
using Microsoft.AspNetCo... |
using System;
using System.Collections.Generic;
using System.Composition;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media;
using Microsoft.CodeAnalysis;
using RoslynPad.Roslyn.Completion;
namespace RoslynPad.Roslyn.QuickInfo
{
[Exp... |
/*
* Copyright 2010-2014 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 "l... |
using System;
using Strings = R5T.B0000.X001.Strings;
namespace R5T.B0002.X002.dsaga
{
/// <summary>
/// <inheritdoc cref="Y0000.Documentation.ForNamespaceName.UnrecommendedNamespaceName" path="/definition"/>
/// </summary>
public static partial class NamespaceNames_Unrecommended
{
}
} |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//-----... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Uno.UI.Samples.Controls;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.P... |
/*
* Copyright (C) 2018 Istituto Italiano di Tecnologia
* Authors: davide.tome@iit.it
* CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Xml;
namespace iCubProductionTestSuite.classes
{
internal class Conf... |
namespace Unosquare.Sparkfun.FingerprintModule
{
/// <summary>
/// Base class for message packets (either command or response).
/// </summary>
/// <seealso cref="Unosquare.Sparkfun.FingerprintModule.MessageBase" />
public abstract class PacketBase : MessageBase
{
/// <summary>
/... |
using System;
using System.Collections.Generic;
using System.Linq;
using Dfc.Providerportal.FindAnApprenticeship.Helper;
using Dfc.Providerportal.FindAnApprenticeship.Interfaces.DAS;
using Dfc.Providerportal.FindAnApprenticeship.Models.DAS;
namespace Dfc.Providerportal.FindAnApprenticeship.ViewModels
{
public cla... |
// 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.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Xml;
using System.Xml.XPath;
namespace MS.Internal.Xml.XPath
{
[... |
using Pars.Entities.AuditableEntity;
namespace Pars.Entities
{
public class Product : IAuditableEntity
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public virtual Category Category { get; set; }
public int Category... |
using BrightWire.ExecutionGraph.GradientDescent;
namespace BrightWire.Descriptor
{
/// <summary>
/// Creates a rms prop gradient descent optimiser
/// </summary>
class RmsPropDescriptor : ICreateTemplateBasedGradientDescent
{
readonly float _decay;
public RmsPropDescriptor(float decay = 0.9f)
{
_decay ... |
namespace Otel_App.Cariler
{
partial class FrmCariKart
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
... |
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using Zenject;
using VRM;
namespace Baku.VMagicMirror.ExternalTracker
{
//TODO: 処理順が以下になってると多分正しいので、これがScript Execution Orderで保証されてるかチェック
//> 1. (自動まばたき、LookAt、EyeJitter、パーフェクトシンクじゃないExTrackerまばたき)
//> 2. このスクリプト
//> 3. ExternalTr... |
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... |
using System;
using System.Collections.Generic;
using System.Web.UI;
using Nucleo.Web.Description;
namespace Nucleo.Web.Pages.Widgets
{
/// <summary>
/// Represents a widget for the <see cref="BaseAjaxPage">BaseAjaxPage page implementations</see>.
/// </summary>
public class PageWidget
{
#region " Methods "
... |
using System;
using System.Collections.ObjectModel;
namespace Fusee.Engine.Core.Scene
{
/// <summary>
/// List of child nodes used in <see cref="SceneNode"/> instances. In addition to normal collection operations
/// this type keeps track of each object's <see cref="SceneNode.Parent"/> property when added... |
// MIT License, Copyright 2020 Samu Lang
namespace GraphEngine
{
using System.Diagnostics;
using VDS.RDF;
using Linq = System.Linq.Expressions;
public class IfThenElse : Condition
{
[DebuggerStepThrough]
internal IfThenElse(INode node)
: base(node)
{
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.