./run.sh [sr|pp|all] [--local-only] [osu|taiko|catch|mania] [osu|taiko|catch|mania]
^^^^^^^^^ ^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
arg:mode opt:local-only arg:ruleset (one-or-more)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/SDL3-CS.Tests.iOS/Main.cs b/SDL3-CS.Tests.iOS/Main.cs | |
| index cf18b8a..59eed02 100644 | |
| --- a/SDL3-CS.Tests.iOS/Main.cs | |
| +++ b/SDL3-CS.Tests.iOS/Main.cs | |
| @@ -6,10 +6,10 @@ public class Program | |
| { | |
| public static unsafe void Main(string[] args) | |
| { | |
| - NativeLibrary.SetDllImportResolver(typeof(SDL3).Assembly, (_, assembly, path) => NativeLibrary.Load("@rpath/SDL3.framework/SDL3", assembly, path)); | |
| - NativeLibrary.SetDllImportResolver(typeof(SDL3_image).Assembly, (_, assembly, path) => NativeLibrary.Load("@rpath/SDL3_image.framework/SDL3_image", assembly, path)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "microsoft.net.sdk.ios": "17.2.8053/8.0.100" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/ui/input-linux.c b/ui/input-linux.c | |
| index 9720333..abb4e04 100644 | |
| --- a/ui/input-linux.c | |
| +++ b/ui/input-linux.c | |
| @@ -335,12 +335,6 @@ static void input_linux_complete(UserCreatable *uc, Error **errp) | |
| } | |
| qemu_set_fd_handler(il->fd, input_linux_event, NULL, il); | |
| - if (il->keycount) { | |
| - /* delay grab until all keys are released */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Diagnostics.CodeAnalysis; | |
| using System.Runtime.InteropServices; | |
| // Works if you uncomment this line. | |
| Console.WriteLine(Marshal.OffsetOf(typeof(Struct), nameof(Struct.A))); | |
| // Fails if the above line is commented. | |
| method(typeof(Struct)); | |
| return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. | |
| // See the LICENCE file in the repository root for full licence text. | |
| using System.Threading.Tasks; | |
| using BenchmarkDotNet.Attributes; | |
| namespace BenchmarksProject | |
| { | |
| public class BenchmarkFalseSharing | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DrawFrame(); | |
| void DrawFrame() | |
| { | |
| DrawNode root = new CompositeDrawNode(0) | |
| { | |
| Children = | |
| { | |
| new DrawNode(1), | |
| new BufferedDrawNode(2, new CompositeDrawNode(3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| public class C { | |
| public void M(object obj) { | |
| if (obj == null) | |
| throw new ArgumentNullException("obj"); | |
| } | |
| public void N(object obj) { | |
| if (obj == null) | |
| throw new ArgumentNullException(nameof(obj)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a | |
| * copy of this software and associated documentation files (the "Software"), | |
| * to deal in the Software without restriction, including without limitation | |
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
| * and/or sell copies of the Software, and to permit persons to whom the | |
| * Software is furnished to do so, subject to the following conditions: | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. | |
| // See the LICENCE file in the repository root for full licence text. | |
| using System; | |
| using System.Runtime.CompilerServices; | |
| using BenchmarkDotNet.Attributes; | |
| namespace BenchmarksProject | |
| { | |
| [MemoryDiagnoser] |
NewerOlder