Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Dec 13, 2024
1 parent e4f0dd2 commit d388785
Showing 1 changed file with 39 additions and 19 deletions.
58 changes: 39 additions & 19 deletions src/Lucene.Net/Support/Threading/AtomicDouble.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ namespace Lucene.Net.Support.Threading
/// It does not have the increment, decrement, and add methods because those operations are not atomic
/// due to the conversion to/from <see cref="long"/>.
/// </summary>
/// <remarks>
/// Note that this class is set up to mimic <c>double</c> in Java, rather than the J2N <see cref="J2N.Numerics.Double"/> class.
/// This may cause differences in comparing NaN values.
/// </remarks>
#if FEATURE_SERIALIZABLE
[Serializable]
#endif
Expand All @@ -60,7 +64,7 @@ public AtomicDouble()
/// <param name="value">The initial value.</param>
public AtomicDouble(double value)
{
this.value = BitConversion.DoubleToInt64Bits(value);
this.value = BitConversion.DoubleToRawInt64Bits(value);
}

/// <summary>
Expand All @@ -78,7 +82,7 @@ public AtomicDouble(double value)
public double Value
{
get => BitConversion.Int64BitsToDouble(Interlocked.Read(ref this.value));
set => Interlocked.Exchange(ref this.value, BitConversion.DoubleToInt64Bits(value));
set => Interlocked.Exchange(ref this.value, BitConversion.DoubleToRawInt64Bits(value));
}

/// <summary>
Expand All @@ -88,7 +92,7 @@ public double Value
/// <returns>The previous value.</returns>
public double GetAndSet(double newValue)
{
return BitConversion.Int64BitsToDouble(Interlocked.Exchange(ref value, BitConversion.DoubleToInt64Bits(newValue)));
return BitConversion.Int64BitsToDouble(Interlocked.Exchange(ref value, BitConversion.DoubleToRawInt64Bits(newValue)));
}

/// <summary>
Expand All @@ -101,8 +105,8 @@ public double GetAndSet(double newValue)
/// was not equal to the expected value.</returns>
public bool CompareAndSet(double expect, double update)
{
long expectLong = BitConversion.DoubleToInt64Bits(expect);
long updateLong = BitConversion.DoubleToInt64Bits(update);
long expectLong = BitConversion.DoubleToRawInt64Bits(expect);
long updateLong = BitConversion.DoubleToRawInt64Bits(update);
long rc = Interlocked.CompareExchange(ref value, updateLong, expectLong);
return rc == expectLong;
}
Expand All @@ -118,7 +122,7 @@ public bool Equals(AtomicDouble? other)
return false;

// NOTE: comparing long values rather than floating point comparison
return value == other.value;
return Interlocked.Read(ref value) == Interlocked.Read(ref other.value);
}

/// <summary>
Expand All @@ -129,7 +133,7 @@ public bool Equals(AtomicDouble? other)
public bool Equals(double other)
{
// NOTE: comparing long values rather than floating point comparison
return value == BitConversion.DoubleToInt64Bits(other);
return Interlocked.Read(ref value) == BitConversion.DoubleToRawInt64Bits(other));

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net48, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net472, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net9.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (windows-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net6.0, x64, Release)

} expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

; expected

Check failure on line 136 in src/Lucene.Net/Support/Threading/AtomicDouble.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, net8.0, x64, Release)

} expected
}

/// <summary>
Expand Down Expand Up @@ -303,10 +307,14 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are equal; otherwise, <c>false</c>.</returns>
public static bool operator ==(AtomicDouble a1, AtomicDouble a2)
public static bool operator ==(AtomicDouble? a1, AtomicDouble? a2)
{
// NOTE: comparing long values rather than floating point comparison
return a1.value == a2.value;
if (a1 is null)
return a2 is null;
if (a2 is null)
return false;

return a1.Equals(a2);
}

/// <summary>
Expand All @@ -315,7 +323,7 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are not equal; otherwise, <c>false</c>.</returns>
public static bool operator !=(AtomicDouble a1, AtomicDouble a2)
public static bool operator !=(AtomicDouble? a1, AtomicDouble? a2)
{
return !(a1 == a2);
}
Expand All @@ -326,8 +334,11 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are equal; otherwise, <c>false</c>.</returns>
public static bool operator ==(AtomicDouble a1, double a2)
public static bool operator ==(AtomicDouble? a1, double a2)
{
if (a1 is null)
return false;

return a1.Value.Equals(a2);
}

Expand All @@ -337,7 +348,7 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are not equal; otherwise, <c>false</c>.</returns>
public static bool operator !=(AtomicDouble a1, double a2)
public static bool operator !=(AtomicDouble? a1, double a2)
{
return !(a1 == a2);
}
Expand All @@ -348,8 +359,11 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are equal; otherwise, <c>false</c>.</returns>
public static bool operator ==(double a1, AtomicDouble a2)
public static bool operator ==(double a1, AtomicDouble? a2)
{
if (a2 is null)
return false;

return a1.Equals(a2.Value);
}

Expand All @@ -359,7 +373,7 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are not equal; otherwise, <c>false</c>.</returns>
public static bool operator !=(double a1, AtomicDouble a2)
public static bool operator !=(double a1, AtomicDouble? a2)
{
return !(a1 == a2);
}
Expand All @@ -370,8 +384,11 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are equal; otherwise, <c>false</c>.</returns>
public static bool operator ==(AtomicDouble a1, double? a2)
public static bool operator ==(AtomicDouble? a1, double? a2)
{
if (a1 is null)
return !a2.HasValue;

return a1.Value.Equals(a2.GetValueOrDefault());
}

Expand All @@ -381,7 +398,7 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are not equal; otherwise, <c>false</c>.</returns>
public static bool operator !=(AtomicDouble a1, double? a2)
public static bool operator !=(AtomicDouble? a1, double? a2)
{
return !(a1 == a2);
}
Expand All @@ -392,8 +409,11 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are equal; otherwise, <c>false</c>.</returns>
public static bool operator ==(double? a1, AtomicDouble a2)
public static bool operator ==(double? a1, AtomicDouble? a2)
{
if (!a1.HasValue)
return a2 is null;

return a1.GetValueOrDefault().Equals(a2.Value);
}

Expand All @@ -403,7 +423,7 @@ public static implicit operator double(AtomicDouble atomicInt64)
/// <param name="a1">The first number.</param>
/// <param name="a2">The second number.</param>
/// <returns><c>true</c> if the given numbers are not equal; otherwise, <c>false</c>.</returns>
public static bool operator !=(double? a1, AtomicDouble a2)
public static bool operator !=(double? a1, AtomicDouble? a2)
{
return !(a1 == a2);
}
Expand Down

0 comments on commit d388785

Please sign in to comment.