context
stringlengths
2.52k
185k
gt
stringclasses
1 value
// // MessageBarManager.cs // // Author: // Prashant Cholachagudda <pvc@outlook.com> // // Copyright (c) 2013 Prashant Cholachagudda // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Softwar...
// <copyright file="UserLUTests.cs" company="Math.NET"> // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics // // Copyright (c) 2009-2016 Math.NET // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this ...
#region License and Terms // MoreLINQ - Extensions to LINQ to Objects // Copyright (c) 2008 Jonathan Skeet. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // ...
namespace Microsoft.Protocols.TestSuites.MS_OFFICIALFILE { using System; using System.Web.Services.Protocols; using Microsoft.Protocols.TestTools; /// <summary> /// Class MS_OFFICIALFILEAdapter is used to verify adapter requirements. /// </summary> public partial class MS_OFFICIALFILEAdapte...
// Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions a...
// 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.Data.Common; using System.Diagnostics; using System.Globalization; using System.Runtime.CompilerService...
// 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 // regenerated. namespac...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace Livity.Collections { public interface IImmutableList : IEnumerable { int Count { get; } object this[int index] { get; } } public interface IImmutableList<T> : IImmutableList, IEnumerable<T...
/* * 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 ...
using System; using System.Xml; using System.Web.Caching; using System.Text; using System.IO; using System.Text.RegularExpressions; using System.Data; using System.Web.UI; using System.Collections; using System.Collections.Generic; using Umbraco.Core; using Umbraco.Core.Cache; using Umbraco.Core.Configuration; using U...
//#define Trace // ParallelDeflateOutputStream.cs // ------------------------------------------------------------------ // // A DeflateStream that does compression only, it uses a // divide-and-conquer approach with multiple threads to exploit multiple // CPUs for the DEFLATE computation. // // last saved: <2011-July-...
// // System.Web.UI.WebControls.DataGridColumn.cs // // Authors: // Gaurav Vaish (gvaish@iitk.ac.in) // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // // (C) Gaurav Vaish (2002) // (C) 2003 Andreas Nahr // // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and...
// "Therefore those skilled at the unorthodox // are infinite as heaven and earth, // inexhaustible as the great rivers. // When they come to an end, // they begin again, // like the days and months; // they die and are reborn, // like the four seasons." // // - Sun Tsu, // "The Art of War" using System; using System...
using System; using System.Collections.Generic; using System.Globalization; using System.Reflection; using System.Text; using NQuery.Compilation; using NQuery.Runtime; namespace NQuery { internal static class ExceptionBuilder { #region Internal CompilationErrors public static NQueryException InternalError(stri...
/* * 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...
namespace JesseJohnston { partial class VisualizerTForm<T> { /// <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 resourc...
namespace AngleSharp.Core.Tests.Html { using AngleSharp.Dom; using AngleSharp.Dom.Html; using AngleSharp.Extensions; using NUnit.Framework; using System; /// <summary> /// Tests generated according to the W3C-Test.org page: /// http://www.w3c-test.org/html/semantics/forms/constraints/fo...
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Orleans.Storage; using Orleans.EventSourcing.Common; namespace Orleans.EventSourcing.LogStorage { /// <summary> /// A log view adaptor that wraps ...
using GuiLabs.Editor.Blocks; namespace GuiLabs.Editor.CSharp { public class BaseVisitor : IVisitor { public virtual void VisitContainer(ContainerBlock block) { foreach (Block child in block.Children) { ICSharpBlock visitable = child as ICSharpBlock; if (visitable != null) { visitable.Accep...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Linq; using System.Net.Http.Headers; using System.Web.Http; using System.Web.Http.Description; using PlatformProject.WebApp.Areas.HelpPage.Models; namesp...
/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must r...
/* * Copyright (c) 2012 Calvin Rien * * Based on the JSON parser by Patrick van Bergen * http://techblog.procurios.nl/k/618/news/view/14605/14863/How-do-I-write-my-own-parser-for-JSON.html * * Simplified it so that it doesn't throw exceptions * and can be used in Unity iPhone with maximum code stripping. * ...
namespace dotless.Test.Specs { using NUnit.Framework; public class StringsFixture : SpecFixtureBase { [Test] public void Strings() { AssertExpressionUnchanged(@"""http://son-of-a-banana.com"""); AssertExpressionUnchanged(@"""~"" ""~"""); AssertExp...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Diagnostics; using System.Net.Security; using System.Runtime.InteropServices; using System.Security.Authentication; using System.Security.Authentication.Ex...
//------------------------------------------------------------------------------ // <copyright file="UrlPath.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //--------------------------------------...
// ---------------------------------------------------------------------------- // <copyright company="EFC" file ="ExceptionBuilder.cs"> // All rights reserved Copyright 2015 Enterprise Foundation Classes // // </copyright> // <summary> // The <see cref="ExceptionBuilder.cs"/> file. // </summary> // -------------...
// // Mono.Data.Sqlite.SQLiteStatement.cs // // Author(s): // Robert Simpson (robert@blackcastlesoft.com) // // Adapted and modified for the Mono Project by // Marek Habersack (grendello@gmail.com) // // // Copyright (C) 2006 Novell, Inc (http://www.novell.com) // Copyright (C) 2007 Marek Habersack // // Permission...
// Copyright (c) Govert van Drimmelen. All rights reserved. // Excel-DNA is licensed under the zlib license. See LICENSE.txt for details. using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Runtime.InteropServices; using System.Text; usi...
/******************************************************************************************** Copyright (c) Microsoft Corporation All rights reserved. Microsoft Public License: This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the licens...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading; using System.Threading.Tasks; using Abp.Events.Bus.Factories; using Abp.Events.Bus.Factories.Internals; using Abp.Events.Bus.Handlers; using Abp.Events.Bus.Handlers.Internals; using Castle.Core.Logging; ...
/* * Farseer Physics Engine based on Box2D.XNA port: * Copyright (c) 2010 Ian Qvist * * Box2D.XNA port of Box2D: * Copyright (c) 2009 Brandon Furtwangler, Nathan Furtwangler * * Original source Box2D: * Copyright (c) 2006-2009 Erin Catto http://www.gphysics.com * * This software is provided 'as-is', without any expr...
using System; using System.Collections; using Spring.Expressions.Parser.antlr.collections; using Spring.Expressions.Parser.antlr.collections.impl; using Assembly = System.Reflection.Assembly; using ArrayList = System.Collections.ArrayList; using Debug = System.Diagnostics.Debug; using AST = Spring.Expressions...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using Microsoft.Azure.Management.AppService.Fluent; using Microsoft.Azure.Management.Fluent; using Microsoft.Azure.Management.ResourceManager.Fluent; using Micros...
namespace iControl { using System.Xml.Serialization; using System.Web.Services; using System.ComponentModel; using System.Web.Services.Protocols; using System; using System.Diagnostics; /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepTh...
--- /dev/null 2016-03-09 08:02:55.000000000 -0500 +++ src/System.Security.Cryptography.Primitives/src/SR.cs 2016-03-09 08:03:20.804671000 -0500 @@ -0,0 +1,238 @@ +using System; +using System.Resources; + +namespace FxResources.System.Security.Cryptography.Primitives +{ + internal static class SR + { + + } +} +...
#region Apache Notice /***************************************************************************** * $Header: $ * $Revision: $ * $Date: $ * Author : Gilles Bayon * iBATIS.NET Data Mapper * Copyright (C) 2004 - Apache Fondation * * * Licensed under the Apache License, Version 2.0 (the "License"); * you m...
// 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 information. using System; using System.Diagnostics; using Microsoft.Scripting.Runtime; using Microsoft.Scripting.Utils; ...
using Xunit; namespace Jint.Tests.Ecma { public class Test_15_5_4_12 : EcmaTest { [Fact] [Trait("Category", "15.5.4.12")] public void StringPrototypeSearchRegexpWithoutArgumentsBehavesLikeWithArgumentUndefined() { RunTest(@"TestCases/ch15/15.5/15.5.4/15.5.4.12/S15.5.4.12_A1.1...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // Warning: This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if the // code is regenerated. using Sys...
#region License /* * HttpListener.cs * * This code is derived from HttpListener.cs (System.Net) of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2005 Novell, Inc. (http://www.novell.com) * Copyright (c) 2012-2015 sta.blockhead * * Permission is hereby granted, free of charge, to...
/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of ...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using Xunit; namespace System.ComponentModel.DataAnnotations.Tests { public c...
using DevExpress.Mvvm.UI; using DevExpress.Mvvm.UI.Interactivity; using DevExpress.Mvvm.POCO; using System.Windows.Controls; using System.Threading; using System; using System.Windows; using System.Linq; using NUnit.Framework; using System.Collections.Generic; using DevExpress.Mvvm.Native; namespace DevExpress.Mvvm.Te...
// 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. using FluentAssertions; using Microsoft.Build.Framework; using Microsoft.DotNet.MSBuildSdkResolver; using Microsoft.DotNet.Tools.Test.Utilities; ...
// 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.Diagnostics; using System.Xml.Xsl.Qil; namespace System.Xml.Xsl.IlGen { internal enu...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.Contracts; using System.Linq; using System.Reflection; using System.Text; using Val...
/********************************************************************++ Copyright (c) Microsoft Corporation. All rights reserved. --********************************************************************/ using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Man...
// 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.Threading; using System.Collections; using Xunit; namespace System.Collections.NonGenericTests { public class ReadOnlyCollectionBaseTest...
//----------------------------------------------------------------------- // <copyright file="TransactionalRoot.cs" company="Marimer LLC"> // Copyright (c) Marimer LLC. All rights reserved. // Website: http://www.lhotka.net/cslanet/ // </copyright> // <summary>no summary</summary> //----------------------------...
// 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. /*============================================================ ** ** ** ** ** ** Purpose: Capture security context...
// 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.Collections; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; using System.Windows.Forms; using ...
// ******************************************************************************************************** // Product Name: DotSpatial.Symbology.Forms.dll // Description: The Windows Forms user interface layer for the DotSpatial.Symbology library. // *******************************************************************...
// 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.IO; namespace System.Data.SqlClient.SNI { /// <summary> /// SSL encapsulated over TDS transpor...
// 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. //////////////////////////////////////////////////////////////////////////// // // DateTimeFormatInfoScanner // // ...
// 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.Linq; using Microsoft.CSharp....
using System; using System.ComponentModel; using System.Drawing.Design; using System.Web.UI.WebControls; using GuruComponents.Netrix.ComInterop; using GuruComponents.Netrix.UserInterface.TypeConverters; using GuruComponents.Netrix.UserInterface.TypeEditors; using GuruComponents.Netrix.WebEditing.Styles; using DisplayNa...
#region Apache License // // 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 // (...
// ReSharper disable once CheckNamespace namespace Fluent { using System; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using Fluent.Extensions; using Fluent.Helpers; using Fluent.Internal.KnownBoxes; ...
// Copyright (c) Microsoft. 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.Diagnostics; using System.Text; using System.Threading; namespace OrchardCore.DisplayManagement { /// <summary> /// Generi...
// 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.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Ser...
/* Copyright (c) 2005 Poderosa Project, All Rights Reserved. This file is a part of the Granados SSH Client Library that is subject to the license included in the distributed package. You may not use this file except in compliance with the license. $Id: ConnectionInfo.cs,v 1.5 2011/11/08 12:24:05 kzmi Exp $ */ u...
using Microsoft.IdentityModel.S2S.Protocols.OAuth2; using Microsoft.IdentityModel.Tokens; using Microsoft.SharePoint.Client; using System; using System.Net; using System.Security.Principal; using System.Web; using System.Web.Configuration; namespace Core.RestFileUpload { /// <summary> /// Encapsulates all the ...
// CodeContracts // // Copyright (c) Microsoft Corporation // // All rights reserved. // // MIT License // // 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 wit...
using System; using System.Data; using System.Data.OleDb; using PCSComUtils.DataAccess; using PCSComUtils.PCSExc; using PCSComUtils.Common; namespace PCSComUtils.MasterSetup.DS { public class MST_PaymentTermDS { public MST_PaymentTermDS() { } private const string THIS = "PCSComUtils.MasterSetup.DS.MST_Payme...
// 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. namespace System.Globalization { /// <remarks> /// This calendar recognizes two era values: /// 0 Curren...
/* * KdTree.cs * RVO2 Library C# * * Copyright 2008 University of North Carolina at Chapel Hill * * 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/license...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/genomics/v1/annotations.proto // Original file comments: // Copyright 2016 Google 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...
// 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.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Microsoft.A...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Net; using System.Net.Sockets; using System.Runtime.CompilerServices; using System.Security.Cryptography; using System.Text; namespace Orleans.Runtime { /// <summary> /// Data class encapsulating ...
// 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 osuTK; using osuTK.Graphics; using osuTK.Input; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Inp...
// 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; namespace System.xaml.MS.Impl { // For use on 3.5, where there'...
// This file was created automatically, do not modify the contents of this file. // ReSharper disable InvalidXmlDocComment // ReSharper disable InconsistentNaming // ReSharper disable CheckNamespace // ReSharper disable MemberCanBePrivate.Global using System; using System.Runtime.InteropServices; // Source file C:\P...
using System.Collections.Generic; using NUnit.Framework; using NContains = NUnit.Framework.Contains; namespace Xamarin.Forms.Core.UnitTests { [TestFixture] public class TableSectionTests : BaseTestFixture { [SetUp] public void Setup() { Device.PlatformServices = new MockPlatformServices (); } [TearDo...
// // Copyright (c) 2004-2017 Jaroslaw Kowalski <jaak@jkowalski.net>, Kim Christensen, Julian Verdurmen // // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: // // * Redistributions of s...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Reflection; using System.Text; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Orleans.ApplicationParts; using Orleans.CodeGeneration; using Orl...
using System; using System.Collections.Generic; using System.Transactions; using log4net; using Rhino.DistributedHashTable.Exceptions; using Rhino.DistributedHashTable.Parameters; using Rhino.DistributedHashTable.Remote; using Rhino.PersistentHashTable; namespace Rhino.DistributedHashTable.Internal { public class Dis...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Text.RegularExpressions; using GitTools.IssueTrackers; namespace GitReleaseNotes { public class SemanticReleaseNotes { //readonly Regex _issueRegex = new Regex(" - (?<Issue>.*?...
// // ItunesPlayerImportDialogs.cs // // Author: // Scott Peterson <lunchtimemama@gmail.com> // // Copyright (C) 2007 Scott Peterson // // 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 wi...
/* * CP1140.cs - IBM EBCDIC (US-Canada with Euro) code page. * * Copyright (c) 2002 Southern Storm Software, Pty Ltd * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Runtime.Serialization; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; using...
// Copyright 2022 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 ...
// // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. // using UnityEngine; using System.Collections.Generic; using System; #if UNITY_WSA using UnityEngine.VR.WSA.Input; #endif public class InputSourceHands : InputSo...
// // MessagePartial.cs // // Author: Jeffrey Stedfast <jeff@xamarin.com> // // Copyright (c) 2013-2016 Xamarin Inc. (www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software wi...
// Copyright (c) Microsoft and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by...
// 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; using System.Collections.Generic; using System.Diagnostics; using System.Dia...
using GitVersion; using NUnit.Framework; using Shouldly; using System; using System.Collections.Generic; using System.ComponentModel; [TestFixture] public class ArgumentParserTests { [Test] public void Empty_means_use_current_directory() { var arguments = ArgumentParser.ParseArguments(""); ...
// This file has been generated by the GUI designer. Do not modify. namespace Valle.TpvFinal { public partial class ListadoCierres { private global::Gtk.VBox vbox1; private global::Valle.GtkUtilidades.MiLabel lblTitulo; private global::Gtk.HBox pnePrimcipal; private global::Gtk.VBox vbox5; private glob...
using RSG.Promises; using System; using System.Linq; using RSG.Exceptions; using Xunit; namespace RSG.Tests { public class Promise_NonGeneric_Tests { [Fact] public void can_resolve_simple_promise() { var promise = Promise.Resolved(); var completed = 0; ...
// Copyright 2021 Esri. // // 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 ...
// 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.Generic; using System.Linq; using System.Text; using System.Text.Encodings.Web; using Microsoft.AspNetCore.Components.RenderTree; namespace Mi...
// 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. // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // Test class that veri...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
// 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. /****************************************************************************** * This file is auto-generated from ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Authorization; using Microsoft.EntityFrameworkCore; using HerpDesk.Data; using HerpDe...
/******************************************************************************* * Copyright (c) 2016, George Sedov * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of...
using System; using System.CodeDom.Compiler; using System.Collections.Generic; namespace EduHub.Data.Entities { /// <summary> /// Timetable Quilt Entries /// </summary> [GeneratedCode("EduHub Data", "0.9")] public sealed partial class THTQ : EduHubEntity { #region Navigation Property C...
using JetBrains.Annotations; namespace Synergy.Contracts { public static partial class Fail { /// <summary> /// Throws exception when provided value is <see langword="null"/>. /// </summary> /// <typeparam name="T">Type of the value to check against nullability.</typeparam> ...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using Moyasar.Abstraction; using Moyasar.Exceptions; using Moyasar.Models; using Newtonsoft.Json; namespace Moyasar.Services { /// <summary> /// Represents a Moyasar Invoice /// </summary> public class Invoice ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net; using System.Reflection; using System.Threading.Tasks; using System.Threading; using NUnit.Framework; namespace Refit.Tests { [Headers("User-Agent: RefitTestClient", "Api-Version: 1")] p...