This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<w:r> | |
<w:rPr> | |
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" /> | |
<w:sz w:val="20" /> | |
<w:b w:val="0" /> | |
<w:i w:val="0" /> | |
<w:color w:val="000000" /> | |
<w:highlight w:val="none" /> | |
</w:rPr> | |
<w:t>x<sup>4</sup></w:t> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
C:\Program Files (x86)\Microsoft Visual Studio 11.0\Blend\SystemThemes\Wpf | |
================================================================= | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Theme Styles For Windows Presentation Foundation Version | |
==================================================================--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Links.Core.Structures | |
{ | |
/// <summary> | |
/// Структура описывающая уникальную пространственно-временную зависимость. | |
/// </summary> | |
public struct Unique : IEquatable<Unique> | |
{ | |
private static readonly Random SeedFactory = new Random((int)DateTime.UtcNow.Ticks); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Links.Core.Structures | |
{ | |
/// <summary> | |
/// Структура описывающая уникальную пару. | |
/// </summary> | |
public struct Pair : IEquatable<Pair> | |
{ | |
public readonly ulong Source; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Links.Core.Structures | |
{ | |
/// <summary> | |
/// Структура описывающая уникальную связь. | |
/// </summary> | |
public struct Link : IEquatable<Link> | |
{ | |
public readonly Unique Id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading; | |
namespace Konard.Helpers | |
{ | |
public delegate void MessageHandlerCallback(string message); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
namespace Konard.Helpers | |
{ | |
/// <summary> | |
/// Представляет вспомогательную сущность для отправки сообщений по протоколу UDP. | |
/// </summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Avalast.Helpers | |
{ | |
/// <summary>Представляет собой абстракцию, позволяющую реализовать статическое наследование в .NET</summary> | |
/// <typeparam name="TSuccessor">Тип класса наследника (требуется наличие публичного конструктора без параметров).</typeparam> | |
public abstract class StaticBase<TSuccessor> | |
where TSuccessor : StaticBase<TSuccessor>, new() | |
{ | |
protected static readonly TSuccessor Instance = new TSuccessor(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.ComponentModel; | |
using System.Web.UI; | |
using System.Web.UI.WebControls; | |
namespace Avalast.Web.UI.WebControls | |
{ | |
public class RequiredIfCheckedFieldValidator : RequiredFieldValidator | |
{ | |
/// <summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Creating 1048576 links. | |
Current links count: 1048576. | |
1048576 links created in 00:00:05.6631001 (185159 links per second) | |
Testing Random Search with 1048576 iterations. | |
1048576 iterations of Random Search done in 00:00:02.6684217 (392957 iterations | |
per second), c: 769537 | |
Testing Each function. | |
1048576 iterations of Each's handler function done in 00:00:00.0359396 (29176062 | |
links per second) | |
Creating 1048576 links. |