なつき
なつき
https://www.w3.org/TR/css-cascade-4/#at-import ``` @import [ | ] [ supports( [ | ] ) ]? ? ; ``` https://www.w3.org/TR/css-values-4/#urls ``` = | = url( * ) | = src( * ) ```...
https://github.com/sass/sass/blob/main/spec/types/number.md#fuzzy-equality > They are both finite numbers and the mathematical numbers they represent produce the same value when rounded to the nearest 1e⁻¹¹ (with ties away from zero). In my...
This PR addresses https://github.com/sass/dart-sass/issues/2542 for the embedded host side by porting https://github.com/sass-contrib/sass-embedded-host-ruby/compare/c05a8f54a1eaddd70cd7d6278cf111c938a4e93f...0378284e42b304409ef48ce7ef9c9e4dae48a77c. https://github.com/sass/dart-sass/pull/2544 https://github.com/sass/sass-spec/pull/2053
https://github.com/sass/dart-sass/pull/2413 This PR changes how compiler is setup for local development. Instead of symlink the compiler into a special vendor directory: - Dart: link `build/dart-sass/build` -> `node_modules/sass-embedded-${platform}-${arch}/dart-sass`. - Pure JS:...
When building SDK from git source, the script [write_revision_file.py](https://github.com/dart-lang/sdk/blob/main/tools/write_revision_file.py) is used to create a `revision` file at the root of SDK. However, if git repo is not available, the revision...
Closes #2325. ## Implementation The actual isolate dispatcher and compilation dispatcher are nearly unchanged. However, I had to replace isolate with worker communication, and mock tons of small things that...
**What version of protobuf and what language are you using?** Version: 4.33.2 Language: Ruby **What operating system (Linux, Windows, ...) and version?** Windows 11 Arm **What runtime / compiler are...
https://github.com/jruby/jruby/blob/7b0c54929c1539f3fc600dd272c66b26c1efacea/core/src/main/java/org/jruby/ext/etc/RubyEtc.java#L543-L567 These are implemented incorrectly [since the very beginning](https://github.com/jruby/jruby/commit/9e14d70ddd27f9b70a5ef780c4e7ab14980cedaa). Somehow no one ever noticed. > [CSIDL (constant special item ID list)](https://learn.microsoft.com/en-us/windows/win32/shell/csidl) values provide a unique system-independent way to identify special...
JRuby has a windows specific implementation for open3: https://github.com/jruby/jruby/blob/master/lib/ruby/stdlib/jruby/open3_windows.rb It uses ProcessBuilder which suffers from a JDK issue where double quotes in the command or argv are getting dropped: https://bugs.openjdk.org/browse/JDK-8131908....
**Environment Information** Provide at least: * All JRuby versions * Window only **Expected Behavior** Modify the `Path` on the fly when spawning new command should work: ``` ruby system({ 'Path'...