Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 637997bd18 | |||
| 6c89748fd0 |
@@ -3,11 +3,11 @@
|
|||||||
"isRoot": true,
|
"isRoot": true,
|
||||||
"tools": {
|
"tools": {
|
||||||
"csharpier": {
|
"csharpier": {
|
||||||
"version": "1.0.2",
|
"version": "1.1.2",
|
||||||
"commands": [
|
"commands": [
|
||||||
"csharpier"
|
"csharpier"
|
||||||
],
|
],
|
||||||
"rollForward": false
|
"rollForward": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -169,8 +169,7 @@ public class Base : DynamicBase, ISpeckleObject
|
|||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
case IEnumerable e
|
case IEnumerable e and not string:
|
||||||
and not string:
|
|
||||||
{
|
{
|
||||||
foreach (var arrValue in e)
|
foreach (var arrValue in e)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -100,9 +100,9 @@ public sealed class ObjectSaver(
|
|||||||
{
|
{
|
||||||
if (!_options.SkipCacheWrite && batch.Count != 0)
|
if (!_options.SkipCacheWrite && batch.Count != 0)
|
||||||
{
|
{
|
||||||
sqLiteJsonCacheManager.SaveObjects(batch.Select(x => (x.Id.Value, x.Json.Value)));
|
|
||||||
Interlocked.Add(ref _cached, batch.Count);
|
Interlocked.Add(ref _cached, batch.Count);
|
||||||
progress?.Report(new(ProgressEvent.CachedToLocal, _cached, _objectsSerialized));
|
progress?.Report(new(ProgressEvent.CachedToLocal, _cached, _objectsSerialized));
|
||||||
|
sqLiteJsonCacheManager.SaveObjects(batch.Select(x => (x.Id.Value, x.Json.Value)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ internal sealed class ProgressStream(
|
|||||||
{
|
{
|
||||||
int n = _stream.Read(buffer, offset, count);
|
int n = _stream.Read(buffer, offset, count);
|
||||||
_position += n;
|
_position += n;
|
||||||
progress?.Report(new(ProgressEvent.DownloadBytes, _position, streamLength));
|
progress?.Report(new(ProgressEvent.DownloadBytes, n, streamLength));
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@ internal sealed class ProgressStream(
|
|||||||
{
|
{
|
||||||
_stream.Write(buffer, offset, count);
|
_stream.Write(buffer, offset, count);
|
||||||
_position += count;
|
_position += count;
|
||||||
progress?.Report(new(ProgressEvent.UploadBytes, _position, streamLength));
|
progress?.Report(new(ProgressEvent.UploadBytes, count, streamLength));
|
||||||
}
|
}
|
||||||
|
|
||||||
public override bool CanRead => true;
|
public override bool CanRead => true;
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ public abstract class PrimitiveTestFixture
|
|||||||
}.Select(x => new object[] { x });
|
}.Select(x => new object[] { x });
|
||||||
|
|
||||||
public static Half[] Float16TestCases { get; } =
|
public static Half[] Float16TestCases { get; } =
|
||||||
[default, Half.Epsilon, Half.MaxValue, Half.MinValue, Half.PositiveInfinity, Half.NegativeInfinity, Half.NaN];
|
[default, Half.Epsilon, Half.MaxValue, Half.MinValue, Half.PositiveInfinity, Half.NegativeInfinity, Half.NaN];
|
||||||
|
|
||||||
public static float[] FloatIntegralTestCases { get; } = [0, 1, int.MaxValue, int.MinValue];
|
public static float[] FloatIntegralTestCases { get; } = [0, 1, int.MaxValue, int.MinValue];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user