-
Hi guys,
thanks again for a good UI. I have found a weird behaviour which I can't explain.
I'm running a monitored application using custom instrumentation framework together with zipkin ui via…
-
This is an issue to track feedback related to developing a way to archive published datasets in DPN (http://dpn.org). I've done some proof-of-concept work to generate an OAI-ORE map file and BagIt bag…
-
Latest Sparkling Water (2.2.2)
Getting following exception when converting spark df to an H2O frame:
```
Py4JJavaError: An error occurred while calling o101.asH2OFrame. :
java.lang.Runtim…
Tagar updated
6 years ago
-
It's impossible to deploy to a IIS server when the certificate is not trused. The check box "Test certificate" that is supposed to skip the verification doesn't change anything. Tried to add "-allow…
-
We should infer that i has type int here.
```
for (var i = 0; i < 10; i++) {
int j = /*info:DownCast should be pass*/i + 1;
}
```
We seem to do this sometimes, not sure why it doesn't happen…
-
I think for function types:
``` dart
typedef Func(x);
Func f = foo;
foo(String x) {
print('I hope this is a string: ' + x);
}
main() {
f(123); // needs an argument type check at runtime
// like…
-
I have a CL out for this: https://codereview.chromium.org/1355893003/
It's blocked by the following regressions / issues I've hit so far:
- [x] ordering and type inference across variables, see #354…
-
this is a very handy feature in Dart:
``` dart
if (x is Foo) {
// ... assume x is a Foo
}
```