-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from akkadotnet/dev
Hyperion v0.9.1 Release
- Loading branch information
Showing
192 changed files
with
4,369 additions
and
20,786 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ bld/ | |
.fake/ | ||
TestResults/ | ||
PerfResults/ | ||
*.lock.json | ||
|
||
# Visual Studo 2015 cache/options directory | ||
.vs/ | ||
|
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
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
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
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
File renamed without changes.
File renamed without changes.
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
13 changes: 11 additions & 2 deletions
13
...ManualSerializer/CustomBinaryFormatter.cs → ...ManualSerializer/CustomBinaryFormatter.cs
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
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
16 changes: 12 additions & 4 deletions
16
Wire.PerfTest/Properties/AssemblyInfo.cs → Hyperion.PerfTest/Properties/AssemblyInfo.cs
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="GuidArrayTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
class GuidArrayTest : TestBase<Guid[]> | ||
{ | ||
protected override Guid[] GetValue() | ||
{ | ||
var l = new List<Guid>(); | ||
for (int i = 0; i < 100; i++) | ||
{ | ||
l.Add(Guid.NewGuid()); | ||
} | ||
return l.ToArray(); | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="GuidTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using System; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
class GuidTest : TestBase<Guid> | ||
{ | ||
protected override Guid GetValue() | ||
{ | ||
return Guid.NewGuid(); | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="LargeStructTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using Hyperion.PerfTest.Types; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
internal class LargeStructTest : TestBase<LargeStruct> | ||
{ | ||
protected override LargeStruct GetValue() | ||
{ | ||
return LargeStruct.Create(); | ||
} | ||
} | ||
} |
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
18 changes: 12 additions & 6 deletions
18
...PerfTest/Tests/TypicalMessageArrayTest.cs → ...PerfTest/Tests/TypicalMessageArrayTest.cs
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
17 changes: 13 additions & 4 deletions
17
Wire.PerfTest/Tests/TypicalMessageTest.cs → ...rion.PerfTest/Tests/TypicalMessageTest.cs
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="TypicalPersonArrayTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using System.Collections.Generic; | ||
using Hyperion.PerfTest.Types; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
class TypicalPersonArrayTest : TestBase<TypicalPersonData[]> | ||
{ | ||
protected override TypicalPersonData[] GetValue() | ||
{ | ||
var l = new List<TypicalPersonData>(); | ||
for (int i = 0; i < 100; i++) | ||
{ | ||
l.Add(TypicalPersonData.MakeRandom()); | ||
} | ||
return l.ToArray(); | ||
} | ||
} | ||
} |
Oops, something went wrong.