Martin Kustermann

Results 193 comments of Martin Kustermann

Have sent a PR for updating the docs: https://github.com/flutter/flutter/pull/116878/files

Flutter releases ~ quarterly on stable channel, so it may take some time until the next release. @jamesdixon Could you check whether this if fixed for you on master channel...

@kevmoo Could you provide instructions on how to run those tests?

Also landed [cl/350322](https://dart-review.googlesource.com/c/sdk/+/350322) for perf fix.

@kevmoo I can have a look. For me all `package:crypto` tests passed locally, may be flaky or a perf issue. For `package:async` there is now one failure remaining, it's a...

> @mkustermann – still getting ONE failure (due to timeouts) on crypto: https://github.com/dart-lang/crypto/actions/runs/7801915494/job/21380589146#step:7:674 The error message from this link seems to be ``` [Chrome, Dart2Wasm] loading test/hmac_sha2_test.dart (failed) Failed to...

We have 2 different kinds of types: * C types that specify what C types parameters, return values or fields in composites use. It can influence memory size, layout, alignment,...

This is a general usability issue with `dart:io` APIs (also sockets) Our `dart:io` APIs are implemented in a way that makes adding/writing to stream sinks not report errors. Instead the...

> I find it very... unfortunate --- that when doing something sync one suddenly has to deal with essentially async stuff. A `stdout.writeln()` is an async operation (the kernel buffer...