content stringlengths 23 1.05M |
|---|
/**********************************************************************************************************************
FocusOPEN Digital Asset Manager (TM)
(c) Daydream Interactive Limited 1995-2011, All Rights Reserved
The name and trademarks of copyright holders may NOT be used in advertising or publicity perta... |
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
/// Dummy router to connect to when moving onto the next room. When hacked into, switches the scene.
public class DummyRouter : HackableObject {
void Update() {
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SharpGL.SceneGraph.Core;
namespace SharpGL.SceneGraph.Raytracing
{
/// <summary>
/// A Ray.
/// </summary>
public class Ray
{
/// <summary>
/// The light.
/// </summar... |
using Xerris.DotNet.Core.TestSupport;
namespace Xerris.DotNet.Core.Test
{
public class AddMe : IAddMe
{
}
} |
using System.IO;
namespace DuplicateClass
{
public class Program
{
private static readonly string RootDirectory = Path.GetFullPath(@"..\..\..\NetCoreRepro");
public static void Main(string[] args)
{
using (var fileWriter = File.CreateText(Path.Combine(RootDirecto... |
using System.Collections.Immutable;
using System.Reflection;
using System.Runtime.Loader;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.Emit;
namespace Analyzers.Tests.Helpers;
public record GenerationTestResults(
CSharpCompilation InputCompilation,
Immutable... |
namespace RegexParser.Nodes
{
/// <summary>
/// RegexNode representing a single character "a".
/// </summary>
public class CharacterNode : RegexNode
{
public char Character { get; }
public CharacterNode(char ch)
{
Character = ch;
}
public overri... |
using System;
using NUnit.Framework;
class Membership_is_active : BaseTest
{
[Test]
public void Should_tell_if_period_is_active()
{
var dateTimeNow = DateTime.Now;
var dateTimeEnd = DateTime.Now.AddMonths(6);
var membership = new Membership { PeriodStart = dateTimeNow, Pe... |
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
names... |
using UnityEngine;
namespace Leyoutech.Utility
{
public static class GizmosUtility
{
public static void DrawBounds(Bounds bounds)
{
Gizmos.DrawCube(bounds.center, bounds.size);
}
public static void DrawBounds(Bounds bounds, Color color)
{
Gizmos.color = color;
DrawBounds(bounds);
}
}
} |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(AudioSource))]
public class PlayVoiceoverCommand : CommandToExecute {
public AudioClip audio;
public MuteButtonAction muteButton;
AudioSource source;
// Use this for initi... |
using OpenTK;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenWorld.Engine
{
/// <summary>
/// Provides a view matrix.
/// </summary>
public interface IViewMatrixSource
{
/// <summary>
/// Gets the view matrix.
/// </summary>
/// <returns></returns>
M... |
#region BSD License
/*
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE.md file or at
* https://github.com/Wagnerp/Krypton-Toolkit-Suite-Extended-NET-5.471/blob/master/LICENSE
*
*/
#endregion
namespace Common
{
public enum SupportedHashAlgorithims
{
... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AnZw.NavCodeEditor.Extensions.Reflection;
namespace AnZw.NavCodeEditor.Extensions.LanguageService
{
public class TypeInfoManager : Reflection... |
using ConsoleTableExt;
using MovieManager.Core.DataTransferObjects;
using Newtonsoft.Json.Linq;
using RestSharp;
using System;
using System.Collections.Generic;
using System.Linq;
namespace MovieManager.ConsoleClient
{
class Program
{
private const string ServerNameWithPort = "localhost:57745";
static vo... |
using NetPrints.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace NetPrints.Core
{
[Serializable]
[DataContract]
public class PropertySpecifier
{
[Data... |
using Contega;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace UnitTest.Contega.core
{
[TestClass]
public class ContagaGameTests
{
[TestMethod]
[ExpectedException(typeof(GridToSmallException))]
public void New_ToNarrow_GridToSmallException()
{
new ... |
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Galaxy.Azure.ServiceBus.Extensions.Retry
{
public interface IServiceBusRetryHandler
{
Task Handle(ServiceBusRetryWrapper serviceBusRetryWrapper);
}
}
|
// DigitalRune Engine - Copyright (C) DigitalRune GmbH
// This file is subject to the terms and conditions defined in
// file 'LICENSE.TXT', which is part of this source code package.
using System;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using System.Windows;
using System... |
using ordercloud.integrations.library;
using OrderCloud.SDK;
namespace Headstart.Models.Headstart
{
[SwaggerModel]
public class HSCreditCard: CreditCard<HSCreditCardXP>
{
}
[SwaggerModel]
public class HSBuyerCreditCard : BuyerCreditCard<HSCreditCardXP>
{
}
[SwaggerModel]
public class HSCreditCardXP
{
... |
using Warden.Common.Queries;
using Warden.Common.Types;
namespace Warden.Api.Filters
{
public interface IFilterResolver
{
IFilter<TResult, TQuery> Resolve<TResult, TQuery>() where TQuery : IQuery;
}
} |
using System;
using System.Collections.Generic;
using UnityEngine;
public static class SetupUtils
{
public static GameObject[] PlaceRandomCubes(int count, float radius)
{
var cubes = new GameObject[count];
var cubeToCopy = MakeStrippedCube();
for (int i = 0; i < count; i++)
{
... |
namespace AzureBot.Tests
{
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
/// <summary>
/// Tests all common commands
/// </summary>
[TestClass]
public class CommonInteractionsTests
{
[TestMethod]
[TestCategory("Parallel")]... |
using KWQuotesApp.Configuration;
using KWQuotesApp.Views;
using Prism.Commands;
using Prism.Mvvm;
using Prism.Regions;
namespace KWQuotesApp.ViewModels
{
public class MainWindowViewModel : BindableBase
{
private string _title = "KW quotes analyser";
public string Title
{
ge... |
// <auto-generated>
// 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
// re... |
using Xunit;
namespace XamarinBoilerplate.Droid.Test.Sample
{
public class SampleXunitTests
{
[Fact]
public void PassedDroidTest()
{
Assert.True(true);
}
[Fact(Skip = "Skip this Test")]
public void SkippedDroidTest()
{
Assert.Fal... |
namespace GitExtensions.GitLab
{
using GitUIPluginInterfaces.RepositoryHosts;
using System;
using System.Web;
internal class GitLabHostedRemote : IHostedRemote
{
private GitLabRepo repo;
public GitLabHostedRemote(string name, string owner, string remoteRepositoryName, string url)
... |
using Application.Storage.Interfaces;
using Common;
using Domain.Interfaces.Entities;
using QueryAny;
using ServiceStack;
using Storage.Properties;
namespace Storage
{
public class GeneralCommandStorage<TEntity> : ICommandStorage<TEntity>
where TEntity : IPersistableEntity
{
private readonly s... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cocos2D
{
public class CCScale9SpriteFile : CCScale9Sprite
{
public CCScale9SpriteFile(string file, CCRect rect, CCRect capInsets)
{
InitWithFile(file, rect, capInsets);
}
... |
namespace DotNetLocalizer.Core
{
public class LocalizationOptions
{
public string ResourcesPath { get; set; }
}
} |
// 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.Security.Cryptography.Encryption.Tests.Symmetric
{
... |
using System.Collections.Generic;
using Pugzor.Core.Helpers;
using Xunit;
namespace Pugzor.Test
{
[Trait("Category", "Helper")]
public class PathHelperTests
{
public static IEnumerable<object[]> Paths =
new List<object[]>
{
new object[]{ "/this/is/absolute.p... |
using System;
using System.Collections;
namespace UnityRayFramework.Runtime
{
public class SceneUnLoaderTask
{
readonly Action OnSuccess;
readonly Action<float> OnProgess;
readonly Action OnFailed;
public SceneUnLoaderTask(Action success, Action<float> progess, Action failed)
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using ZeldaWpf.Resources;
namespace ZeldaWpf.Controls {
/// <summary>An image tree view item that displays a folder.</summary>
public class FolderT... |
using System;
namespace GoCardless.Exceptions
{
/// <summary>
///Thrown when a webhook body's signature header does not match the computed
///HMAC of the body.
/// </summary>
public class InvalidSignatureException : Exception
{
}
}
|
using System.Collections.Generic;
using System.Linq;
using CourseLibrary.Api.Entities;
using CourseLibrary.Api.Models;
namespace CourseLibrary.Api.Services
{
public class PropertyMappingService : IPropertyMappingService
{
private readonly IList<IPropertyMapping> _propertyMappings = new List<IPropertyMa... |
using System.Reflection;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.AspNetCore.Authorization;
using Autofac;
using Adnc.Infr.Consul;
using Adnc.Usr.A... |
using CoinPaprika.Consumer.EndPoints;
using CoinPaprika.Consumer.Interfaces;
using CoinPaprika.Consumer.Models;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace CoinAPI.Consumer
{
public class CoinApiClient : ICoinApiClient
{
private readonly I... |
// 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.md file in the project root for more information.
using Microsoft.VisualStudio.ProjectSystem.VS.Tree.Dependencies;
using Moq;
namespace Microsoft.VisualStudio.Pro... |
using System;
namespace Singleton
{
class Program
{
static void Main(string[] args)
{
var singleton = new Singleton();
var policy1 = singleton.GetPolicy();
var policy2 = singleton.GetPolicy();
if(policy1 == policy2)
{
... |
using LoanManager.Models;
using LoanManager.Repo;
namespace LoanManager.Service
{
public interface IMenuPermissionService : IRepository<MenuPermission>
{
DTResult<MenuPermissionViewModel> GetGrid(DTParameters param,int user,int role);
}
}
|
using System;
using System.Collections.Generic;
using System.Text;
namespace refly.Services
{
public interface IWorldService
{
void Load(string storyFile);
void Create();
void Destroy();
void Map();
}
}
|
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Networking; // para red, UnityWebRequest
using Newtonsoft.Json; //JsonConvert
using UnityEngine.SceneManagement;
/*
Muestra el uso de UnityWebRequest para comunicarse con un servidor en ... |
// <copyright file="IStockService.cs" company="cwkuehl.de">
// Copyright (c) cwkuehl.de. All rights reserved.
// </copyright>
namespace CSBP.Apis.Services
{
using System;
using System.Collections.Generic;
using System.Text;
using CSBP.Apis.Models;
public interface IStockService
{
/// <summary>
//... |
using EventOrganizer.DAL.DbContext;
using EventOrganizer.DAL.Interfaces;
using EventOrganizer.DAL.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace EventOrganizer.DAL.Repositories
{
public class CategoryRepository : ICategoryRepository
{
private readonly EventOrganiz... |
using UnityEngine;
namespace Hecomi.HoloLensPlayground
{
public class TouchOscUI4 : MonoBehaviour
{
[Header("Toggle")]
[SerializeField] Toggle toggle1;
[SerializeField] Toggle toggle2;
[SerializeField] Toggle toggle3;
[SerializeField] Toggle toggle4;
[SerializeField] MultiToggle m... |
using System.Collections.Generic;
using System.Threading.Tasks;
using KaLib.Brigadier.Context;
namespace KaLib.Brigadier.Suggests
{
public class SuggestionsBuilder {
private readonly string _input;
private readonly string _inputLowerCase;
private readonly int _start;
private readon... |
// Copyright (c) 2021 Yoakke.
// Licensed under the Apache License, Version 2.0.
// Source repository: https://github.com/LanguageDev/Yoakke
using System.Collections.Generic;
namespace Yoakke.Utilities.FiniteAutomata
{
/// <summary>
/// Represents a nondeterministic finite automata that has multiple ways to ... |
using System;
using System.Collections.Generic;
using Xms.Business.Filter.Domain;
using Xms.Schema.Domain;
namespace Xms.Business.Filter
{
public interface IFilterRuleDependency
{
bool Create(FilterRule entity);
bool Delete(params Guid[] id);
List<Schema.Domain.Attribute> GetRequireds(... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ASCII_house
{
// This class is used for storing a 2D Array. There can be only 2 values in the Array 1 or -1. 1 representing
// an asterick and -1 representing a blank
class Coordi... |
// Copyright (c) 2016 Framefield. All rights reserved.
// Released under the MIT license. (see LICENSE.txt)
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Form... |
[TaskCategoryAttribute] // RVA: 0x154D20 Offset: 0x154E21 VA: 0x154D20
[TaskDescriptionAttribute] // RVA: 0x154D20 Offset: 0x154E21 VA: 0x154D20
public class GetCenter : Action // TypeDefIndex: 11341
{
// Fields
[TooltipAttribute] // RVA: 0x191730 Offset: 0x191831 VA: 0x191730
public SharedGameObject targetGameObjec... |
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.IO;
using HandlebarsDotNet;
using HandlebarsDotNet.Compiler;
using Sitegen.Models.Config;
namespace Sitegen.Services
{
/// <summary>
/// Converts Handlebars (`.hbs`) content to HTML (`.html`)
/// </summary>
public class ... |
using UnityEngine;
namespace UniFlow.Connector.ValueComparer
{
[AddComponentMenu("UniFlow/ValueComparer/BoolComparer", (int) ConnectorType.ValueComparerBool)]
public class BoolComparer : ComparerBase<bool, BoolCollector>
{
protected override bool Compare(bool actual)
{
return Ex... |
namespace _02_DirectoryTraverser
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Program
{
static void Main()
{
ExeFinder finder = new ExeFinder();
finder.GetSubDirect... |
/********************************************************************
created: 2015/08/19
created: 19:8:2015 11:17
filename: MD5Hash.cs
file path: Assets\Code\FrameWork\Dipper
file base: MD5Hash
file ext: cs
author: 来自网络,表示感谢
purpose:
*********************************************************************... |
namespace Frigg {
using System;
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method,
Inherited = false, AllowMultiple = true)]
public abstract class ConditionAttribute : Attribute, IAttribute {
public EConditionType ConditionType { get; }
pu... |
using GoodToCode.Shared.Domain;
using System;
namespace GoodToCode.Subjects.Models
{
public interface IPerson : IDomainEntity<IPerson>
{
DateTime BirthDate { get; set; }
string FirstName { get; set; }
string GenderCode { get; set; }
string LastName { get; set; }
... |
using System.Net.Sockets;
namespace Tcp.Core
{
public static class TcpNetOperationExtensions
{
public static bool IsConnected(this Socket socket)
{
return !(socket.Poll(1, SelectMode.SelectRead) && socket.Available == 0);
}
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Mvp.Project.MvpSite.Configuration
{
public class SitecoreOptions
{
public static readonly string Key = "Sitecore";
public Uri InstanceUri { get; set; }
public string LayoutServic... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
[System.Serializable]
public enum RotationDirections
{
CW,CCW
}
public class RotateEventArgs : EventArgs
{
public Touch Finger1 { get; private set; }
public Touch Finger2 { get; private set; }
public float An... |
namespace Palmmedia.GitHistory2Yuml.Core
{
/// <summary>
/// Interface to create Yuml graphs from GIT History.
/// </summary>
public interface IYumlGraphBuilder
{
/// <summary>
/// Creates the Yuml graph.
/// </summary>
/// <param name="directory">The directory.</par... |
using UnityEngine;
public class EmptyScript : MonoBehaviour
{
// Проверочный пустой скрипт для проверки живых MonoBehaviour
// Test empty script for checking alive MonoBehaviours up
}
|
using System;
using System.Windows.Forms;
namespace FontConv
{
class Util
{
static public void Error(Exception ex_)
{
MessageBox.Show(ex_.Message,"Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
}
|
using System.Collections.Generic;
namespace Net6_RabbitMQ.Consumer
{
public class MessageReceivedArgs
{
public IDictionary<string, object> MessageHeaders { get; }
public string ConsumerTag { get; }
public ulong DeliveryTag { get; }
public string Exchange { get; }
public ... |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using System.Threading.Channels;
using Microsoft.Azure.Functions.Worker.Grpc.Messages;
namespace Microsoft.Azure.Functions.Worker
{
internal class G... |
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace DotNetRu.Azure
{
public static class StringExtensions
{
internal static string ConvertToUsualUrl(this string input, List<KeyValuePair<string, string>> replacements)
{
var returnStrin... |
using System;
using System.Threading;
using System.Threading.Tasks;
namespace KPreisser
{
/// <summary>
/// Contains extension methods for <see cref="AsyncReaderWriterLockSlim"/>.
/// </summary>
public static class AsyncReaderWriterLockSlimExtension
{
/// <summary>
/// Enters the l... |
#region License
// Copyright 2009-2015 Buu Nguyen
//
// 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... |
namespace MassTransit.KafkaIntegration.Tests
{
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Confluent.Kafka;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Diagn... |
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
using K4W.KinectVOD.Client.WinStore.Common;
using K4W.KinectVOD.Shared;
namespace K4W.KinectVOD.Client.WinStore.Pages
{
public sealed partial class VideoPage : Page
{
private ObservableDictionary defaultViewModel = new ObservableDictio... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using XenGameBase;
using Microsoft.Xna.Framework;
using Xen2D;
namespace Demo_FarseerPlugin
{
class SquareElement : ComplexElement2D<SquareElement>
{
public static SquareElement Acquire( Vector2 position ... |
using MyGeotabAPIAdapter.Database.Models;
namespace MyGeotabAPIAdapter.Database
{
/// <summary>
/// Interface for a class that lists names of objects (e.g. tables, views, etc.) in the Adapter database.
/// </summary>
public interface IAdapterDatabaseObjectNames
{
/// <summary>
/// ... |
using Base.Services;
using BaseWeb.Models;
using BaseWeb.Services;
using Microsoft.AspNetCore.Html;
using Microsoft.AspNetCore.Mvc;
namespace BaseWeb.ViewComponents
{
//配合 _xp.js
public class XgThViewComponent : ViewComponent
{
/// <summary>
/// table th
/// </summary>
/// ... |
using NUnit.Framework;
namespace Sentry.Unity.iOS.Tests
{
public class SentryNativeIosTests
{
[Test]
public void Configure_DefaultConfiguration_SetsScopeObserver()
{
var options = new SentryUnityOptions();
SentryNativeIos.Configure(options);
Assert.Is... |
using System;
using Xamarin.Forms;
using XamFormsReactiveUI.ValueConverters;
namespace XamFormsReactiveUI.Views
{
public class Badge : AbsoluteLayout
{
/// <summary>
/// The text property.
/// </summary>
public static readonly BindableProperty TextProperty =
Binda... |
using Commands.CodeBaseSearch.Extensions;
using Commands.CodeBaseSearch.Model;
using Commands.CodeBaseSearch.Model.Subjects;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Commands.CodeBaseSearch.Conditions
{
public class AttributeNameTemplateCondition : BaseTemplateCondition<I... |
using System;
using System.Collections.Generic;
using System.Text;
using MinorShift.Emuera.GameData.Expression;
using MinorShift.Emuera.GameData;
namespace MinorShift.Emuera.Sub
{
enum LexEndWith
{
//いずれにせよEoLで強制終了
None = 0,
EoL,//常に最後まで解析
Operator,//演算子を見つけたら終了。代入式の左辺
Question,//三項演算子?により終了。\@~~?~~#~~\@
... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Polly.Console.Classes
{
public class Logger
{
public void WriteInfo(string message, params object[] param)
{
System.Console.WriteLine($"{DateTime.Now}: {message}", param);
}
public void Wr... |
namespace ApplicationCore
{
public class CatalogSettings : AppSettings
{
public string CatalogBaseUrl { get; set; }
public decimal DefaultShippingCost { get; set; } = 3.35m;
}
}
|
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
[System.Serializable]
public class ComboBoxItem
{
public string Label = "";
public string Value = "";
}
public class ComboBox : MonoBehaviour
{
#region Public Attributes
public ComboBoxItem[] Items;
public string Label;
#endr... |
using Shinobytes.Ravenfall.RavenNet.Models;
namespace Shinobytes.Ravenfall.RavenNet.Modules
{
public class OpenNpcTradeWindow : EntityUpdated<Player>
{
public OpenNpcTradeWindow(
Player entity,
int npcServerId,
string shopName,
int[] itemId,
int[] itemPrice... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using API___ATC_Horas.Funcionamento;
/// <summary>
/// Controler apenas para responder as requisições de teste de conexão dos clientes
/// Se os dados estiverem ok responde Sucesso!
/// S... |
using Zenject;
namespace MokomoGames
{
public class PlayerSaveDataDebugRepositoryInstaller : Installer<PlayerSaveDataDebugRepositoryInstaller>
{
public override void InstallBindings()
{
Container
.Bind<IPlayerSaveDataRepository>()
.To<PlayerSaveDataD... |
using Aspose.Email.Calendar;
using Aspose.Email.Clients.Exchange.WebService;
using Aspose.Email.Mime;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/*
This project uses Automatic Package Restore feature of NuGet to resolve Aspose.Email for .NET API reference
when the project i... |
namespace Steam.Models.SteamEconomy
{
public class TradeAssetModel
{
public uint AppId { get; set; }
public uint ContextId { get; set; }
/// <summary>
/// Either assetid or currencyid will be set
/// </summary>
public ulong AssetId { get; set; }
/// <s... |
using UnityEngine;
namespace DS
{
using ScriptableObjects;
public class DSDialogue : MonoBehaviour
{
/* Dialogue Scriptable Objects */
[SerializeField] private DSDialogueContainerSO dialogueContainer;
[SerializeField] private DSDialogueGroupSO dialogueGroup;
[Ser... |
// Copyright (c) AltaModa Technologies. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Ext = AMT.Extensions.Logging.IP;
using System.Net.Sockets;
namespace Test.AMT.Extensions.Logging.IP
{
using System;
using System.C... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kartaskaigra
{
class Program
{
static void Main(string[] args)
{
int BrojacKarta = 0,Karte;
string KarteZaStringUInt;
... |
namespace InsuranceHub.Client
{
using System;
using System.Net;
public interface IHttpWebRequestCreator
{
HttpWebRequest Create(Uri requestUri);
}
} |
<!DOCTYPE html>
<html lang="en">
<head><title>Feebl</title></head>
<body>
We're down for a sec!
</body>
</html> |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IntervalTree;
using System.Diagnostics;
namespace ZapocetADSI_Interval
{
class Program
{
static void Main(string[] args)
{
if (args.Length == 1 && args[0] == "console") {
Con... |
using System;
using System.Collections.Generic;
using System.Text;
namespace CommDeviceCore.Common
{
public interface IProtocol//<TIn, TOut>
//where TIn: ILayerPackable
//where TOut : ILayerPackage
{
//public TOut Pack(TIn layerPackage);
//public TIn UnPack(TOut layerackage);
... |
using org.apache.zookeeper.client;
using Xunit;
namespace org.apache.zookeeper.test
{
public class ConnectStringParserTest
{
[Fact]
public void testSingleServerChrootPath()
{
const string chrootPath = "/hallo/welt";
const string servers = "10.10.10.1";
assertChrootPath(chrootPath, new Connect... |
using System;
using Synnduit.Properties;
namespace Synnduit
{
/// <summary>
/// Extension methods for the <see cref="IContext" /> interface.
/// </summary>
public static class ContextExtensions
{
/// <summary>
/// Gets the specified parameter value converted to the specified enumer... |
// Copyright © 2020-present Derek Thurn
// 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... |
using System.Collections.Generic;
using DomainService.Domain.Models;
using Newtonsoft.Json;
namespace DomainService.Domain
{
public class JSONConvert
{
public string Convert(StarModel star){
return JsonConvert.SerializeObject(star);
}
public string Convert(ConstellationModel constellation){
... |
using SolrExpress.Builder;
using SolrExpress.Search;
using SolrExpress.Search.Parameter;
using SolrExpress.Search.Parameter.Extension;
using SolrExpress.Search.Parameter.Validation;
using SolrExpress.Solr4.Search.Parameter;
using SolrExpress.Utility;
using System.Collections.Generic;
using System.Reflection;
using Sol... |
/*
* ruby.cs
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a cop... |
#Thu Jul 11 13:34:38 BST 2019
lib/com.ibm.ws.request.probe.servlet_1.0.30.jar=bd13c8cdad89f31581cbc7a108e773f8
lib/features/com.ibm.websphere.appserver.autoRequestProbeServlet-1.0.mf=be3fa13f6503c35fea5d2fc17374f172
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.