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