context
stringlengths
2.52k
185k
gt
stringclasses
1 value
// **************************************************************** // Copyright 2007, Charlie Poole // This is free software licensed under the NUnit license. You may // obtain a copy of the license at http://nunit.org // **************************************************************** using System; using System.IO; ...
/* * 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...
// // Mono.Facebook.Responses.cs: // // Authors: // Thomas Van Machelen (thomas.vanmachelen@gmail.com) // George Talusan (george@convolve.ca) // // (C) Copyright 2007 Novell, Inc. (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associate...
// 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.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; using Xun...
using UnityEngine; using System.Collections; using System.Collections.Generic; public enum eEndPointsMode { AUTO, AUTOCLOSED, EXPLICIT } public enum eWrapMode { ONCE, LOOP } public delegate void OnEndCallback(); public class SplineInterpolator : MonoBehaviour { eEndPointsMode mEndPointsMode = eEndPointsMode.AUTO; ...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Management.Automation; using System.Management.Automation.Runspaces; using Dbg = System.Management.Automation.Diagnostic...
// 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.Diagnostics.Contracts; using System.Runtime.CompilerServices; u...
using System; using System.Runtime.InteropServices; #if REAL_T_IS_DOUBLE using real_t = System.Double; #else using real_t = System.Single; #endif namespace Godot { [StructLayout(LayoutKind.Sequential)] public struct Quat : IEquatable<Quat> { public real_t x; public real_t y; public ...
// 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.Data.SqlClient; using System.Linq; using Pomelo.EntityFrameworkCore.MySql.Internal; using Microsoft.EntityFrameworkCore.TestU...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.Azure.Devices.Client { using Microsoft.Azure.Devices.Client.Common; using System; using System.IO; using System.Threading; class...
/* * 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 ...
using System; using System.Collections.Generic; using NUnit.Framework; using System.Collections.ObjectModel; using System.Threading.Tasks; using Zu.AsyncChromeDriver.Tests.Environment; using Zu.AsyncWebDriver; namespace Zu.AsyncChromeDriver.Tests { [TestFixture] public class ElementAttributeTest : DriverTestFi...
// 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.Contracts; using System.Runtime.Serialization; using System.Threading; names...
using System; using System.Linq; using GraphQL.Types; namespace GraphQL.Introspection { public class __Type : ObjectGraphType { public __Type() { Name = "__Type"; Field<NonNullGraphType<__TypeKind>>("kind", null, null, context => { if (context...
/* * MindTouch Core - open source enterprise collaborative networking * Copyright (c) 2006-2010 MindTouch Inc. * www.mindtouch.com oss@mindtouch.com * * For community documentation and downloads visit www.opengarden.org; * please review the licensing section. * * This program is free software; you can redistri...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Management.Automation; namespace ExperimentalFeatureTest { #region "Replace existing cmdlet" [Experimental("ExpTest.FeatureOne", ExperimentAction.Hide)] [Cmdlet("Invoke", "AzureFunctionCSharp")] publ...
// 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.Contracts; using System.Configuration.Assemblies; namespace System.Reflectio...
namespace Gu.Wpf.UiAutomation { using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Windows; using System.Windows.Automation; using System.Windows.Media; using System.Windows.Media.Imaging; using Gu.Wpf.UiAutomation.C...
/* * 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.IO; namespace Elm327.Core.ObdModes { /// <summary> /// Contains methods and properties for retrieving generic /// OBD mode 01 PIDs. /// </summary> public class ObdGenericMode01 : AbstractObdMode { #region Event definitions /// <summary> /// O...
#region --- License --- /* Copyright (c) 2006 - 2008 The Open Toolkit library. 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, ...
// *********************************************************************** // Copyright (c) 2012-2015 Charlie Poole // // 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, ...
#region License and Terms // // NCrontab - Crontab for .NET // Copyright (c) 2008 Atif Aziz. 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.apac...
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Isidos.CodeMash.ServiceContracts.Api; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace CodeMash.Core.Tests { [TestClass] public class NotificationNotificationsTests : NotificationTestBase ...
using UnityEngine; using Pathfinding; using Pathfinding.Serialization; namespace Pathfinding { public interface INavmeshHolder { Int3 GetVertex (int i); int GetVertexArrayIndex(int index); void GetTileCoordinates (int tileIndex, out int x, out int z); } /** Node represented by a triangle */ public class Tr...
#if FEATURE_CONCURRENTMERGESCHEDULER using Lucene.Net.Support.Threading; using System; using System.Collections.Generic; using System.Runtime.CompilerServices; using System.Text; using System.Threading; namespace Lucene.Net.Index { /* * Licensed to the Apache Software Foundation (ASF) under one or more *...
using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using OmniSharp.Models; using OmniSharp.Roslyn.CSharp.Services.Refactoring; using OmniSharp.Tests; using Xunit; namespace OmniSharp.Roslyn.CSharp.Tests { public class RenameFacts { private async Task<RenameResponse> Send...
using System; using System.Collections.Generic; using System.Drawing; using MonoTouch.Foundation; using MonoTouch.UIKit; using Cheapster.ViewControllers.Shared; using Cheapster.Data.Models; namespace Cheapster.ViewControllers.Comparable { public class ComparableTableViewSource : UITableViewSource { public UITextFi...
// Copyright (c) Microsoft. All rights reserved. using System; using System.Collections.Generic; using System.Linq; using System.Diagnostics; using System.Globalization; using System.IO; using System.Net; using System.Runtime.Serialization; using System.Runtime.Serialization.Json; using System.Text; using System.Threa...
// Copyright (c) 2015, Outercurve Foundation. // 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 o...
// Copyright 2007-2014 Chris Patterson, Dru Sellers, Travis Smith, et. al. // // 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 // /...
// Copyright (c) 2007-2014 Joe White // // 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...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ILPathways.Business { ///<summary> ///Represents an object that describes a OrganizationContact ///</summary> [Serializable] public class OrganizationContact : BaseBusinessDataEntity { ///<summary> ///Initialize...
/* * 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...
// 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.Linq; using System.Text; using System.Collections.Generic; using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; namespace HETSAPI.Models { /// <summary> /// Role Database Model /// </summary> [MetaData (Description = "A HETS application-managed Role that has a ...
// Copyright (c) 2010-2014 SharpDX - Alexandre Mutel // // 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, modif...
// 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.Buffers.Text; using System.Diagnostics; namespace System.Security.Cryptography.Asn1 { /// <summary...
// 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) 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...
using System; using System.Data; using System.Linq; using PCSComProduct.Items.DS; using PCSComSale.Order.DS; using PCSComUtils.Common; using PCSComUtils.Common.BO; using PCSComUtils.MasterSetup.DS; using PCSComUtils.PCSExc; namespace PCSComSale.Order.BO { public class SaleOrderBO { private const string...
// 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.Collections.Generic; using System.Windows.Data; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeStyle; using Microso...
/****************************************************************************** * The MIT License * Copyright (c) 2003 Novell Inc. www.novell.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 Sof...
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. #if !NET40 namespace ProductivityApiTests { using System; using System.Data.Entity; using System.Data.Entity.Infrastructure; using System.Data.Entity.TestHelpers; u...
// 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 ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using Microsoft.TeamFoundation.Server; using Microsoft.TeamFoundation.VersionControl.Client; using Sep.Git.Tfs.Core.TfsInterop; namespace Sep.Git.Tfs.VsCommon { public class WrapperForVersionControlServer : WrapperFor<Versio...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="DocumentGenerator.cs" company="Naos Project"> // Copyright (c) Naos Project 2019. All rights reserved. // </copyright> // -------------------------------------------------------...
// 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. // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // BufferBlock.cs // //...
// 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; using System.Linq; using System.Globalization; using System.Collections.Generic; using System.Secur...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection.Emit; using Lens.Compiler.Entities; using Lens.SyntaxTree; using Lens.SyntaxTree.ControlFlow; using Lens.SyntaxTree.Declarations.Functions; using Lens.SyntaxTree.Declarations.Types; using Lens.Translations; using Lens.Utils; nam...
// 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...
// 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: Provides some basic access to so...
#region License // Copyright (c) 2007 James Newton-King // // 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, ...
#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the fol...
// 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.Reflection.Tests { public class GetTypeTests ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using NUnit.Framework; using SQLite.Net.Attributes; #if __WIN32__ using SQLitePlatformTest = SQLite.Net.Platform.Win32.SQLitePlatformWin32; #elif WINDOWS_PHONE using SQLitePlatformTest = SQLite.Net.Platform.WindowsPhone8.SQLit...
using System.Collections.Generic; using System.Linq; using Lucene.Net.Support; using NUnit.Framework; using System; using Assert = Lucene.Net.TestFramework.Assert; namespace Lucene.Net.Util { /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See th...
/********************************************************************++ Copyright (c) Microsoft Corporation. All rights reserved. --********************************************************************/ using System; using System.Collections.Generic; using System.Collections; using System.Management.Automation; using ...
/* * 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 ...
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Reflection; using System.Runtime.Serialization; using System.Web.Http; using System.Web.Http.Description; using System.Xml...
// 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 0.16.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. ...
// // WidgetBackend.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2011 Xamarin Inc // // 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 restric...
// 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...
// 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.IO; using System.IO.MemoryMappedFiles; using Xunit; [Collection("CreateNew")] public class CreateNew : MMFTestBase { private readonly st...
/* * Copyright (c) Contributors, http://aurora-sim.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 reta...
#if !LOCALTEST using System.Globalization; using System.Threading; namespace System { internal static class ParseHelper { internal static bool CheckStyle(NumberStyles style, bool tryParse, ref Exception exc) { if ((style & NumberStyles.AllowHexSpecifier) != 0) { NumberStyles ne = style ^ NumberStyles.AllowH...
using System.Runtime.Serialization; namespace GoogleApi.Entities.Search.Common.Enums { /// <summary> /// Supported Interface Languages. /// Google supports more than 80 languages. /// The default interface language is English. /// The following list identifies all of the interface languages that G...
/* ==================================================================== 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 Y...
// 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 Xunit; using Xunit.Abstractions; using System.IO; using System.Collections; using System.Xml.Schema; namespac...
// // 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 requi...
//--------------------------------------------------------------------- // File: BizUnit.cs // // Summary: // //--------------------------------------------------------------------- // Copyright (c) 2004-2015, Kevin B. Smith. All rights reserved. // // THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY O...
// 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 global::System; using global::System.Text; using global::System.Reflection; using global::System.Diagnostics; ...
using System; using System.Collections.Generic; using System.Reactive.Linq; using System.Reactive.Threading.Tasks; using MS.Core; namespace System.Runtime.InteropServices { public static class ___MethodInfo { public static IObservable<System.UInt32> GetTypeInfoCount( this IObservable<System...
using System; using System.Collections; using System.Xml; using SharpVectors.Dom.Events; using SharpVectors.Dom.Svg; namespace SharpVectors.Dom.Events { /// <summary> /// Summary description for EventTarget. /// </summary> public struct EventTarget : IEventTargetSupport { #region Private Fields private...
/* Copyright 2006 - 2010 Intel 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.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writin...
using System; using System.Collections; using System.Windows.Forms; using System.Drawing; using System.Drawing.Drawing2D; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace WeifenLuo.WinFormsUI.Docking { public abstract partial class AutoHideStripBase : Control { [Suppre...
#region License, Terms and Author(s) // // ELMAH - Error Logging Modules and Handlers for ASP.NET // Copyright (c) 2004-9 Atif Aziz. All rights reserved. // // Author(s): // // Atif Aziz, http://www.raboof.com // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file excep...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; using Microsoft.Xna.Framework; using Color = Microsoft.Xna.Framework.Color; using FlatRedBall; using FlatRedBall.Math; using FlatRedBall.Math.Geometry; using FlatRedBall.Utilities; using FlatRedBall.Graphics; using ...
using System; using System.Collections.Generic; using System.Text; using gView.Framework.Data; using gView.Framework.system; using gView.Framework.Geometry; using gView.Framework.IO; namespace gView.DataSources.OGR { [gView.Framework.system.RegisterPlugIn("7a972c29-4955-4899-b142-98f6e05bb063")] public class D...
// 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 ...
// 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; using Xunit.Abstractions; namespace System.Linq.Tests { public c...
// DeflaterHuffman.cs // // Copyright (C) 2001 Mike Krueger // Copyright (C) 2004 John Reilly // // This file was translated from java, it was part of the GNU Classpath // Copyright (C) 2001 Free Software Foundation, Inc. // // This program is free software; you can redistribute it and/or // modify it under the terms o...
// VncSharp - .NET VNC Client Library // Copyright (C) 2008 David Humphrey // // 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 the License, or // (at your option) any later...
// "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...
// // BinaryXmlWriter.cs // // Author: // Lluis Sanchez Gual // // Copyright (C) 2007 Novell, Inc (http://www.novell.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 without restr...
/* * Copyright 2006 Jeremias Maerki. * * 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 agre...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Web.Http; using System.Web...
using System; using System.IO; using System.Net; using System.Text; using System.Linq; using System.Threading.Tasks; using System.Collections.Generic; using Xamarin.SSO.Client; namespace XamarinStore { public class WebService { public static readonly WebService Shared = new WebService (); public User CurrentUs...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; namespace Carrot.Serialization { public interface IContentNegotiator { SortedSet<ContentNegotiator.MediaTypeHeader> Negotiate(String contentType); } public class ContentNegotiator : IContentNegotiato...
using System.Collections; using System.Collections.Generic; using ModestTree; using UnityEngine; using UnityEngine.TestTools; namespace Zenject.Tests.Bindings { public class TestFromComponentInChildren : ZenjectIntegrationTestFixture { Root _root; Child _child1; Child _child2; ...
namespace Fizzler { using System; /// <summary> /// An <see cref="ISelectorGenerator"/> implementation that delegates /// to two other <see cref="ISelectorGenerator"/> objects, which /// can be useful for doing work in a single pass. /// </summary> public sealed class SelectorGeneratorTee :...
using System.Collections.Generic; using System.Diagnostics; namespace Lucene.Net.Index { /* * 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 ownershi...
// 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 System; using System.IO; using System.Linq; using System.Reflection; using System.Threading; using osu.Framework.Logging; using System.Collections.Generic; using Sy...
// "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...
// Copyright (c) 2015 burningmime // // 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 purpose, // including commerci...
// 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.Reflection; using Microsoft.C...
/* * 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 ...
// // Copyright (C) DataStax 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 applicable la...
namespace Lettuce { partial class Debugger { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param na...
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Web; using System.Web.UI.WebControls; namespace Rmb.Core { /// <summary> /// Class for working with drops /// </summary> public class Drop { #region Properties /// <summary>Gets or...