align files to .editorconfig (#203)
* align files to .editorconfig * fix space cause build failed
This commit is contained in:
committed by
Brendan Burns
parent
09a8c8773a
commit
9372e3291f
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace Fractions.Extensions {
|
||||
internal static class MathExt {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace Fractions.Formatter {
|
||||
/// <summary>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Numerics;
|
||||
using System.Text;
|
||||
@@ -82,7 +82,7 @@ namespace Fractions.Formatter {
|
||||
}
|
||||
|
||||
private static string FormatGeneral(Fraction fraction) {
|
||||
if (fraction.Denominator == BigInteger.One) {
|
||||
if (fraction.Denominator == BigInteger.One) {
|
||||
return fraction.Numerator.ToString(CultureInfo.InvariantCulture);
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Fractions {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Fractions {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Numerics;
|
||||
using Fractions.Extensions;
|
||||
@@ -246,7 +246,7 @@ namespace Fractions {
|
||||
var breakCounter = 0;
|
||||
|
||||
while (MathExt.RemainingDigitsAfterTheDecimalPoint(remainingDigits)
|
||||
&& Math.Abs(absoluteValue - (double) numerator / denominator) > double.Epsilon) {
|
||||
&& Math.Abs(absoluteValue - (double) numerator / denominator) > double.Epsilon) {
|
||||
|
||||
remainingDigits = 1.0 / (remainingDigits - Math.Floor(remainingDigits));
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Fractions {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
|
||||
|
||||
namespace Fractions {
|
||||
public partial struct Fraction
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Fractions {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System.Numerics;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Fractions {
|
||||
public partial struct Fraction {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using Fractions.Formatter;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Numerics;
|
||||
using System.Runtime.InteropServices;
|
||||
@@ -39,14 +39,14 @@ namespace Fractions {
|
||||
/// </summary>
|
||||
|
||||
public bool IsPositive => _numerator.Sign == 1 && _denominator.Sign == 1 ||
|
||||
_numerator.Sign == -1 && _denominator.Sign == -1;
|
||||
_numerator.Sign == -1 && _denominator.Sign == -1;
|
||||
|
||||
/// <summary>
|
||||
/// <c>true</c> if the value is negative (lesser than 0).
|
||||
/// </summary>
|
||||
|
||||
public bool IsNegative => _numerator.Sign == -1 && _denominator.Sign == 1 ||
|
||||
_numerator.Sign == 1 && _denominator.Sign == -1;
|
||||
_numerator.Sign == 1 && _denominator.Sign == -1;
|
||||
|
||||
/// <summary>
|
||||
/// <c>true</c> if the fraction has a real (calculated) value of 0.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Fractions {
|
||||
namespace Fractions {
|
||||
/// <summary>
|
||||
/// The fraction's state.
|
||||
/// </summary>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace Fractions {
|
||||
/// <summary>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
|
||||
@@ -216,9 +216,9 @@ namespace k8s
|
||||
#endif
|
||||
|
||||
if ((!string.IsNullOrWhiteSpace(config.ClientCertificateData) ||
|
||||
!string.IsNullOrWhiteSpace(config.ClientCertificateFilePath)) &&
|
||||
(!string.IsNullOrWhiteSpace(config.ClientCertificateKeyData) ||
|
||||
!string.IsNullOrWhiteSpace(config.ClientKeyFilePath)))
|
||||
!string.IsNullOrWhiteSpace(config.ClientCertificateFilePath)) &&
|
||||
(!string.IsNullOrWhiteSpace(config.ClientCertificateKeyData) ||
|
||||
!string.IsNullOrWhiteSpace(config.ClientKeyFilePath)))
|
||||
{
|
||||
var cert = CertUtils.GeneratePfx(config);
|
||||
|
||||
|
||||
@@ -215,7 +215,7 @@ namespace k8s
|
||||
userCredentialsFound = true;
|
||||
}
|
||||
else if (!string.IsNullOrWhiteSpace(userDetails.UserCredentials.UserName) &&
|
||||
!string.IsNullOrWhiteSpace(userDetails.UserCredentials.Password))
|
||||
!string.IsNullOrWhiteSpace(userDetails.UserCredentials.Password))
|
||||
{
|
||||
Username = userDetails.UserCredentials.UserName;
|
||||
Password = userDetails.UserCredentials.Password;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
using Xunit;
|
||||
|
||||
[assembly: CollectionBehavior(DisableTestParallelization = true)]
|
||||
|
||||
|
||||
@@ -475,7 +475,7 @@ namespace k8s.Tests
|
||||
await Task.WhenAny(eventsReceived.WaitAsync(), Task.Delay(TestTimeout));
|
||||
|
||||
Assert.True(
|
||||
eventsReceived.CurrentCount == 0,
|
||||
eventsReceived.CurrentCount == 0,
|
||||
"Timed out waiting for all events / errors to be received."
|
||||
);
|
||||
|
||||
@@ -584,21 +584,21 @@ namespace k8s.Tests
|
||||
Spec = new V1PodSpec()
|
||||
{
|
||||
Containers = new List<V1Container>()
|
||||
{
|
||||
new V1Container()
|
||||
{
|
||||
Image = "ubuntu/xenial",
|
||||
Name = "runner",
|
||||
Command = new List<string>()
|
||||
{
|
||||
"/bin/bash",
|
||||
"-c",
|
||||
"--"
|
||||
},
|
||||
Args = new List<string>()
|
||||
{
|
||||
"trap : TERM INT; sleep infinity & wait"
|
||||
}
|
||||
{
|
||||
new V1Container()
|
||||
{
|
||||
Image = "ubuntu/xenial",
|
||||
Name = "runner",
|
||||
Command = new List<string>()
|
||||
{
|
||||
"/bin/bash",
|
||||
"-c",
|
||||
"--"
|
||||
},
|
||||
Args = new List<string>()
|
||||
{
|
||||
"trap : TERM INT; sleep infinity & wait"
|
||||
}
|
||||
}
|
||||
},
|
||||
RestartPolicy = "Never"
|
||||
|
||||
@@ -17,9 +17,9 @@ metadata:
|
||||
name: foo
|
||||
";
|
||||
|
||||
var obj = Yaml.LoadFromString<V1Pod>(content);
|
||||
var obj = Yaml.LoadFromString<V1Pod>(content);
|
||||
|
||||
Assert.Equal("foo", obj.Metadata.Name);
|
||||
Assert.Equal("foo", obj.Metadata.Name);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -89,10 +89,10 @@ spec:
|
||||
- name: cpu-demo-ctr
|
||||
image: vish/stress
|
||||
resources:
|
||||
limits:
|
||||
cpu: ""1""
|
||||
requests:
|
||||
cpu: ""0.5""
|
||||
limits:
|
||||
cpu: ""1""
|
||||
requests:
|
||||
cpu: ""0.5""
|
||||
args:
|
||||
- -cpus
|
||||
- ""2""";
|
||||
|
||||
Reference in New Issue
Block a user