Martin Kustermann

Results 193 comments of Martin Kustermann

Issue #401 is actually not the same (it is about timeouts and accidentally mentions this issue as well), reopening. To give an update on this and a quick summary of...

@Sgoettschkes The issue might be that the entry is still in the map, since setting the value to `null` doesn't remove the entry from the map: ``` dart void main()...

The workaround is is basically described [above](https://github.com/dart-lang/rpc/issues/61#issuecomment-259902688): Wrap the underyling browser-based http client and remove the 2 headers before sending it further. For background knowledge: The generated api client libraries...

To be a bit more elaborate: `package:jnigen` is generating dart bindings that reference Java classes/methods/fields. After tree shaking the Dart code, we should have a mechanism to see the left-over...

> Because of the cons mentioned, I only want to introduce this feature if our users actually gain some meaningful benefit from it. :+1: Without noticeable user demand, we may...

The jsc bot isn't entirely stable because WebKit/JavaScriptCore's WasmGC implementation still has some bugs. Will close in favor of the general https://github.com/dart-lang/sdk/issues/54757 @liamappelbe @aam The dart2wasm team maintains the wasm...

> It would be nice to have an intrinsic for a list-literal or perhaps document fromList as inefficient. `Uint8List.fromList()` isn't inefficient by itself, it depends on the argument being passed...

Here's a [log](https://dart-ci.appspot.com/log/vm-linux-release-ia32/vm-linux-release-ia32/256/ffi/callback_unwind_error_test) from today: ``` ====================================================== --- Command "vm" (took 02:00.000069s): DART_CONFIGURATION=ReleaseIA32 out/ReleaseIA32/dart --suppress-core-dump --sound-null-safety -Dtest_runner.configuration=vm-linux-release-ia32 --ignore-unrecognized-flags --packages=/b/s/w/ir/cache/builder/sdk/.dart_tool/package_config.json /b/s/w/ir/cache/builder/sdk/tests/ffi/callback_unwind_error_test.dart exit code: 1 diagnostics: Process list including children: [62736] Trying...

We (mainly @mraleph actually) were recently looking at performance of isolates and one outcome was that the migration of isolates across OS threads, together with dynamic cpu frequency scaling can...

> https://github.com/dart-lang/sdk/commit/ad33dff4e9cd613defe294935beef1e296ed2975 certainly seems to fix the issue about the clash with the linux cpu governor in the example I'm looking at (which before I had to hack around by...