context
stringlengths
2.52k
185k
gt
stringclasses
1 value
// Copyright(c) 2017 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 a copy of // the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in w...
// 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.Globalization; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; namespace System.Numer...
/* Copyright 2014 Google Inc. 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 applicable law or a...
using System; using System.Linq; using System.Net; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Orleans.Configuration; using Orleans.Hosting; using Orleans.Providers.MongoDB.Test.GrainInte...
// // Copyright (c) 2004-2021 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.Collections.Generic; namespace Adform.AdServing.AhoCorasickTree.Sandbox.V8 { public class AhoCorasickTree { internal AhoCorasickTreeNode Root { get; set; } public AhoCorasickTree(IEnumerable<string> keywords) { Root = new AhoCorasickTreeNode(); if ...
#if !NET45PLUS // 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; namespace System.Collections.Immutable { /// <summary> /// An interface that describes the methods that the <...
#region License /* * ResponseStream.cs * * This code is derived from System.Net.ResponseStream.cs of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2005 Novell, Inc. (http://www.novell.com) * Copyright (c) 2012-2014 sta.blockhead * * Permission is hereby granted, free of charge, ...
using System; using System.Diagnostics; using System.Threading; namespace Community.CsharpSqlite { public partial class Sqlite3 { /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good a...
namespace BrowseDotNet.Data.Migrations { using System; using System.Data.Entity.Migrations; public partial class initdatabase : DbMigration { public override void Up() { CreateTable( "dbo.IdentityRoles", c => new { ...
//! \file ArcDAT.cs //! \date 2018 Sep 20 //! \brief Lazycrew resource archive. // // Copyright (C) 2018 by morkt // // 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 withou...
// // Copyright (c) 2008-2011, Kenneth Bell // // 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, ...
using CrystalDecisions.CrystalReports.Engine; using CrystalDecisions.Windows.Forms; using DpSdkEngLib; using DPSDKOPSLib; using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Drawing; using System.Diagnostics; using System.Windows.Forms; using System.Linq; ...
#region License /* * All content copyright Terracotta, Inc., unless otherwise indicated. 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.a...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Epos.Utilities { /// <summary>Encapsulates a unary operation like negating on type /// <typeparamref name="T" />.</summary> /// <typepara...
// UrlRewriter - A .NET URL Rewriter module // Version 2.0 // // Copyright 2007 Intelligencia // Copyright 2007 Seth Yates // using System; using System.Net; using System.Web; using System.Xml; using System.Text; using System.Configuration; using System.Reflection; using System.Collections; using System.Collections.S...
#region license // Copyright (c) 2005 - 2007 Ayende Rahien (ayende@ayende.com) // 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 abov...
/* Copyright (c) 2004-2005 Jan Benda. The use and distribution terms for this software are contained in the file named License.txt, which can be found in the root of the Phalanger distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not re...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Formatting; using System.Net.Http.Headers; using System.W...
// 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.Diagnostics; using System.Threading; using Microsoft.CodeAnalysis; using Microsoft.VisualStudio.LanguageServices.Implementation.CodeModel.Interna...
// ZipOutputStream.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...
#region License /* * All content copyright Terracotta, Inc., unless otherwise indicated. 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.ap...
using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; using System.ComponentModel; using System.Windows.Forms.VisualStyles; namespace WeifenLuo.WinFormsUI.Docking { internal class VS2005DockPaneCaption : DockPaneCaptionBase { private sealed class InertButton : ...
/* * Infoplus API * * Infoplus API. * * OpenAPI spec version: v1.0 * Contact: api@infopluscommerce.com * Generated by: https://github.com/swagger-api/swagger-codegen.git * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * 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 System.ComponentModel.Composition.Hosting; using System.ComponentModel.Composition.Primitives; using Xunit; n...
// 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.Text; /// <summary> /// GetByteCount(System.Char[],System.Int32,System.Int32) [v-jianq] /...
using Lucene.Net.Diagnostics; using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace Lucene.Net.Util { /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with this * work ...
using System; using System.Collections.Generic; using System.Linq; using Nop.Core; using Nop.Core.Caching; using Nop.Core.Data; using Nop.Core.Domain.Directory; using Nop.Services.Events; namespace Nop.Services.Directory { /// <summary> /// Measure dimension service /// </summary> public partial class ...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: POGOProtos/Settings/Master/EquippedBadgeSettings.proto #pragma warning disable 1591, 0612, 3021 #region Designer generated code using pb = global::Google.Protobuf; using pbc = global::Google.Protobuf.Collections; using pbr = global::Google.Protobuf...
// 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.Collections.Generic; using System.IO; using System.Linq; using System.Text; using NUnit.Framework; using osu.Framework.Allocation; using osu.Fr...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.IO; using System.Windows.Forms; using System.Text; using System.Text.RegularExpressions; using GongSolutions.Shell.Interop; namespace GongSolutions.Shell { /// <summary> /// A file-filter combo box s...
// Cyotek MD5 Utility // https://github.com/cyotek/Md5 // Copyright (c) 2018-2021 Cyotek Ltd. // This work is licensed under the MIT License. // See LICENSE.TXT for the full text // Found this code useful? // https://www.cyotek.com/contribute using System; using System.Collections.Generic; // IsMatch routine based...
// 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.14.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. ...
/* Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. */ using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Web; using System.Web.UI; using System.Web.UI.WebContr...
namespace VersionOne.ServiceHost.ConfigurationTool.UI.Controls { public partial class ClearQuestPageControl { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any res...
using EdiEngine.Common.Enums; using EdiEngine.Common.Definitions; using EdiEngine.Standards.X12_004010.Segments; namespace EdiEngine.Standards.X12_004010.Maps { public class M_143 : MapLoop { public M_143() : base(null) { Content.AddRange(new MapBaseEntity[] { new BGN() { ReqDes = RequirementDesignator.Ma...
// 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.Collections.Immutable; using System.Collections.ObjectModel; using System.Globalization; using Sy...
// // Copyright 2014-2015 Amazon.com, // Inc. or its affiliates. All Rights Reserved. // // Licensed under the Amazon Software License (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/asl/ // // or in the "l...
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...
using Android.Content; using Android.Gms.Maps.Model; using Android.Graphics; using Android.Net; using AppShell.NativeMaps.Mobile; using AppShell.NativeMaps.Mobile.Android; using System.Collections.ObjectModel; using System.Collections.Specialized; using System.ComponentModel; using System.Globalization; using System.Li...
using System; using System.Globalization; using System.Xml; using Orchard.Comments.Models; using Orchard.ContentManagement; using Orchard.ContentManagement.Drivers; using Orchard.ContentManagement.Aspects; using Orchard.Services; using Orchard.Localization; using Orchard.Comments.Services; using Orchard.UI.Notify; nam...
using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Threading; namespace TuringMachineProject { public class TuringMachineVisualizer { private Graphics graphics; private Dictionary<string, GUIState> stateGUITable; private Dictionary<KeyValuePair<St...
// 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 ...
// // This file is part of the game Voxalia, created by FreneticXYZ. // This code is Copyright (C) 2016 FreneticXYZ under the terms of the MIT license. // See README.md or LICENSE.txt for contents of the MIT license. // If these are not available, see https://opensource.org/licenses/MIT // namespace Voxalia.Shared // ...
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. namespace System.Data.Entity.Infrastructure { using System.Data.Common; using System.Data.Entity.Core.EntityClient; using System.Data.Entity.Infrastructure.Interception; ...
/* * Vericred API * * Vericred's API allows you to search for Health Plans that a specific doctor accepts. ## Getting Started Visit our [Developer Portal](https://developers.vericred.com) to create an account. Once you have created an account, you can create one Application for Production and another for our San...
using System; using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Microsoft.WindowsAzure.Storage.Queue; using Microsoft.WindowsAzure.Storage.RetryPolicies; using Orleans.Runtime; using Orleans.AzureUtils.Utilities; using System.Linq; using Orleans.Streaming.AzureSto...
using System; using System.Collections.Generic; namespace Wc3o { public class BuildingInfo : EntityInfo { #region " Get " static SortedDictionary<BuildingType, BuildingInfo> infos; public static BuildingInfo Get(BuildingType t) { if (infos == null) infos = new SortedDictionary<BuildingType, BuildingInfo...
// 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 System.IO; using XmlCoreTest.Common; namespace System.Xml.Tests { /////...
using System; using System.Collections.Generic; using UnityEngine; using XposeCraft.Collections; using XposeCraft.Core.Faction; using XposeCraft.Core.Faction.Units; using XposeCraft.Game; using XposeCraft.Game.Actors; using XposeCraft.Game.Actors.Buildings; using XposeCraft.Game.Actors.Resources; using XposeCraft.Game....
//--------------------------------------------------------------------------- // // <copyright file="AxisAngleRotation3D.cs" company="Microsoft"> // Copyright (C) Microsoft Corporation. All rights reserved. // </copyright> // // This file was generated, please do not edit it directly. // // Please see http://wiki/d...
// 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 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. n...
// // Encog(tm) Core v3.3 - .Net Version // http://www.heatonresearch.com/encog/ // // Copyright 2008-2014 Heaton Research, 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 // // htt...
using UnityEngine; using System.Collections; using System.Collections.Generic; [AddComponentMenu("2D Toolkit/Camera/tk2dCamera")] [ExecuteInEditMode] /// <summary> /// Maintains a screen resolution camera. /// Whole number increments seen through this camera represent one pixel. /// For example, setting an object to ...
// 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.Reflection; using Internal.Metadata.NativeFormat; usin...
#if !DISABLE_PLAYFABENTITY_API && !DISABLE_PLAYFAB_STATIC_API using PlayFab.ProfilesModels; using PlayFab.Internal; #pragma warning disable 0649 using System; // This is required for the Obsolete Attribute flag // which is not always present in all API's #pragma warning restore 0649 using System.Collections.Generic; ...
//Copyright (c) ServiceStack, Inc. All Rights Reserved. //License: https://raw.github.com/ServiceStack/ServiceStack/master/license.txt using System; using System.Globalization; using System.IO; using System.Runtime.CompilerServices; using System.Runtime.Serialization; using ServiceStack.Text.Common; namespace Service...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using gView.Framework.UI; using gView.Framework.Carto; using gView.Framework.Data; using gView.Framework.system; using gView.Explorer.UI; namespace gView....
namespace Fixtures.SwaggerBatHttp { using System; using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using Microso...
using System; using UnityEngine; using UnityStandardAssets.CrossPlatformInput; using UnityStandardAssets.Utility; using Random = UnityEngine.Random; namespace UnityStandardAssets.Characters.FirstPerson { [RequireComponent(typeof (CharacterController))] [RequireComponent(typeof (AudioSource))] public class ...
/****************************************************************************** * The MIT License * Copyright (c) 2007 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...
#region License /* * NReco Data library (http://www.nrecosite.com/) * Copyright 2016 Vitaliy Fedorchenko * Distributed under the MIT license * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITI...
/* * Copyright 2010-2013 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 System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Formatting; using System.Net.Http.Headers; using System.W...
using System; using System.Linq; using Baseline; using Marten.Events; using Marten.Schema; using Marten.Testing.Documents; using Marten.Testing.Events; using Shouldly; using Xunit; using Issue = Marten.Testing.Documents.Issue; namespace Marten.Testing.Schema { public class DocumentSchemaOnOtherSchemaTests : Integr...
// *********************************************************************** // Copyright (c) 2007 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, inclu...
// 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. //////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////...
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: BinaryReader ** ** <OWNER>gpaperin</OWNER> ** ** ** Purpose: Wraps a stream and provides convenient read functionality ** for strings and primitive types....
using System; using System.Globalization; using System.Xml; using JetBrains.Annotations; using Orchard.Comments.Models; using Orchard.ContentManagement; using Orchard.ContentManagement.Drivers; using Orchard.ContentManagement.Aspects; using Orchard.Services; using Orchard.Localization; using Orchard.Comments.Services; ...
using System; using System.ComponentModel.Design; using System.Diagnostics; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Input; using System.Windows.Threading; using Microsoft.VisualStudio; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.OLE.Interop; usi...
using UnityEngine; using System.Collections; using System.Collections.Generic; using System; namespace UMA { /// <summary> /// Utility class for generating texture atlases /// </summary> [Serializable] public class UMAGeneratorCoroutine : WorkerCoroutine { TextureProcessBaseCoroutine textureProcessCoroutine; ...
/******************************************************************************* * The MIT License (MIT) * Copyright (c) 2015 Frank Benoit, Stuttgart, Germany <fr@nk-benoit.de> * * See the LICENSE.md or the online documentation: * https://docs.google.com/document/d/1Wqa8rDi0QYcqcf0oecD8GW53nMVXj3ZFSmcF81zAa8g/edi...
// 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.12.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. ...
using System; using System.Web; using System.Web.Compilation; using System.Web.Security; using System.Web.SessionState; using System.Web.UI; using Carrotware.CMS.DBUpdater; /* * CarrotCake CMS * http://www.carrotware.com/ * * Copyright 2011, Samantha Copeland * Dual licensed under the MIT or GPL Version 3 licenses. * ...
using UnityEngine; using System.Collections; using System.Collections.Generic; public class SeedizenComponent : MonoBehaviour { public static bool flingWithMouse = false; public PlanetComponent currentPlanet; public PlanetComponent destinationPlanet; public PlanetComponent startPlanet; public VineComponent cu...
// // AddinService.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 restrict...
using System; namespace Sqloogle.Libs.DBDiff.Schema.SqlServer2005.Options { public class SqlOptionIgnore { private Boolean filterIndex = true; private Boolean filterSchema = true; private Boolean filterXMLSchema = true; private Boolean filterTrigger = true; priva...
// 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.Diagnostics.Contracts; using System.Runtime.InteropServices.WindowsRuntime; u...
using System; using System.Text; namespace org.javarosa.core.util { /* * A Java implementation of the Secure Hash Algorithm, SHA-1, as defined * in FIPS PUB 180-1 * Copyright (C) Sam Ruby 2004 * All rights reserved * * Based on code Copyright (C) Paul Johnston 2000 - 2002. * See ...
// 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.IO; using System.Linq; using System.Net.Http.Headers; u...
using System; using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Components.M6502; #pragma warning disable 162 namespace BizHawk.Emulation.Cores.Nintendo.NES { public partial class NES : IEmulator { //hardware/state public MOS6502X cpu; int cpu_accumulate; ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using System.Text; using DeOps.Implementation; using DeOps.Services.Assist; using DeOps.Services.Location; using DeOps.Interface.TLVex; namespace DeOps.Services.Trust { public class LinkTree : TreeListViewEx { ...
/// This code was generated by /// \ / _ _ _| _ _ /// | (_)\/(_)(_|\/| |(/_ v1.0.0 /// / / /// <summary> /// CountryResource /// </summary> using Newtonsoft.Json; using System; using System.Collections.Generic; using Twilio.Base; using Twilio.Clients; using Twilio.Converters; using Twilio.Exceptio...
// 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.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Diagno...
// InflaterHuffmanTree.cs // Copyright (C) 2001 Mike Krueger // // 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 of the GNU General Public License ...
// // PersonaAuthorizer.cs // // Author: // Zachary Gramana <zack@xamarin.com> // // Copyright (c) 2013, 2014 Xamarin Inc (http://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 th...
/* * 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.Collections.Generic; using System.Data.Services.Common; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Linq; using System.Runtime.Versioning; namespace NuGet { [DataServiceKey("Id", "Version")] [EntityPropertyMapping("LastUpdated", SyndicationItemProperty.Update...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics.CodeAnalysis; using System.Linq; using NetGore; using NetGore.IO; namespace DemoGame { /// <summary> /// Represents a unique ID for an Item template. /// </summary> [Serializable] ...
// 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 System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using Microsoft.Dnx.Runtime.Common....
// Copyright (C) 2014 dot42 // // Original filename: Path.cs // // 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 b...
using SmartQuant.FinChart.Objects; using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; using System.Linq; #if GTK using Compatibility.Gtk; #else using System.Windows.Forms; #endif namespace SmartQuant.FinChart { public enum ChartUpdateStyle ...
// Copyright (c) 2012, Event Store LLP // 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 conditi...
#region S# License /****************************************************************************************** NOTICE!!! This program and source code is owned and licensed by StockSharp, LLC, www.stocksharp.com Viewing or use of this code requires your acceptance of the license agreement found at https://github.com/St...
/* ==================================================================== 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...
using J2N.Collections.Generic.Extensions; using Lucene.Net.Diagnostics; using Lucene.Net.Documents; using Lucene.Net.Index.Extensions; using Lucene.Net.Search; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using Assert = Lucene.Net.TestFramework.Assert; namespace Lucene.Net....
#region License /* * All content copyright Marko Lahma, unless otherwise indicated. 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/li...
/* * 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...
// namespace Moq { namespace AutoMocking { using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using Microsoft.Practices.ObjectBuilder2; using Microsoft.Practices.Unity; using Micro...
// 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.ObjectModel; using System.Runtime; using System.Runtime.Serialization; using System.Xml; us...