Live data from Hacker News

Viewing profile — _shb

_shb

HN member
Joined
Thu, May 14, 2015, 4:17 PM UTC
HN karma
27
Public activity
9 items

About _shb

No profile information was provided.

Recent public activity

  1. comment
    Comment #13989092

    Infer has a thread-safety checker that identifies races in classes annotated with `@ThreadSafe` ( http://fbinfer.com/docs/experimental-checkers.html ).

  2. comment
    Comment #13603460

    I added some documentation on using Inferbo and other experimental checkers we are working on: http://fbinfer.com/docs/experimental-checkers.html . All you need to do to use Inferb…

  3. comment
    Comment #13585545

    Thanks for pointing this out! Fixed in an update to the post.

  4. story
  5. comment
    Comment #9703006

    Infer does bottom-up analysis: it starts at the bottom of the call graph and analyzes each procedure once independently of its callers. Analyzing the procedure produces a concise s…

  6. comment
    Comment #9702820

    There was indeed a typo in the description; it has been fixed. Sorry for the confusion!

  7. comment
    Comment #9701192

    To paint these tools with an overfly broad brush, they linter-like in that they perform shallow intra-procedural analysis to identify common bug patterns (e.g., if (x != null) { y …

  8. comment
    Comment #9700710

    Yes, it can be used with most Java code you can build on the command line. Just run "infer -- ". Currently, this works with javac, Ant, Maven, and Gradle. See http://fbinfer.com/do…

  9. comment
    Comment #9545961

    This paper describes some aspects of the system: http://research.microsoft.com/pubs/189242/pldi097-burckhardt...