Jesse Schwartzentruber

Results 41 comments of Jesse Schwartzentruber

Use this for the signature and it still occurs: ``` { "symptoms": [ { "type": "testcase", "value": "53-2" } ] } ```

This should be something like: line 132 ``` - if match[0] is not None: + if match[1] is not None and match[1]["frequent"]: ```

From discussion with @choller: * This should only be done when the detected crashAddress is already 0x0, and not assume all assertions are crashing at 0x0, because we have seen...

This is what we did in grizzly's interesting script: ``` class Interesting(object): def __init__(self, interestingness_script=False): if interestingness_script: global init, interesting, cleanup # pylint: disable=global-variable-undefined,invalid-name init = self.init interesting = self.interesting...

This error seems like a problem with the GCE API ... We get the list of zones from GCE, and then when we pass it back it fails to resolve...

I'm not sure why this happened, but I hope #592 will help.

@choller pointed out that this was a necessary optimization because for many signatures, searching all buckets would be unacceptably slow. needs further thought to see if both goals can be...

OK, so I guess an empty file is treated as a testcase to be submitted by `Collector`, but then detected as not a testcase by the server (but having testcase...

As mentioned in #386: I think it occurs when no product is specified in the request. We should add a check in `Collector` for this, and also return a more...

> 1. Are you ok to import `annotations` now that we are on Python 3.7+? Or do you prefer old-style type annotations? (e.g. `Optional[str]`) yes, since we dropped 3.6 I...