All Posts
10 | {% for post in site.posts %} 11 | {% assign author = site.data.authors[post.author] %} 12 |13 | 14 | {{ post.title }} 15 | 16 | on {{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }} 17 |
18 | {% endfor %} 19 |├── _data ├── features.yml ├── promo.yml ├── nav.yml ├── nav_docs.yml └── authors.yml ├── CNAME ├── README.md ├── _layouts ├── docs.html ├── post.html ├── redirect.html ├── plain.html ├── support.html ├── page.html ├── doc_page.html ├── blog.html ├── default.html └── home.html ├── static ├── logo.png ├── favicon.png ├── og_image.png ├── oss_logo.png ├── images │ ├── SepSplit.jpg │ ├── Infer-landing.jpg │ └── Infer-landing.png └── pygments.css ├── docs └── index.html ├── downloads ├── InferCExample.tar.gz ├── InferiOSExample.tar.gz └── InferAndroidExample.tar.gz ├── .gitignore ├── _includes ├── plugins │ ├── button.html │ ├── all_share.html │ ├── google_share.html │ ├── group_join.html │ ├── ascii_cinema.html │ ├── github_star.html │ ├── github_watch.html │ ├── twitter_share.html │ ├── twitter_follow.html │ ├── like_button.html │ ├── fb_pagelike.html │ ├── post_social_plugins.html │ └── slideshow.html ├── ui │ └── button.html ├── content │ ├── gridblocks.html │ └── items │ │ └── gridblock.html ├── katex_import.html ├── hero.html ├── doc.html ├── footer.html ├── header.html ├── blog_pagination.html ├── social_plugins.html ├── post.html ├── head.html ├── doc_paging.html ├── nav_blog.html ├── nav_docs.html ├── nav.html └── katex_render.html ├── blog ├── index.html └── all.html ├── _docs ├── 01-install-from-sources.md ├── 03-checker-bug-types.md ├── 01-checkers.md ├── 02-about-infer.md ├── 00-getting-started.md ├── 01-analyzing-apps-or-projects.md ├── 01-eradicate.md ├── 02-limitations.md ├── 01-infer-workflow.md ├── 01-advanced-features.md ├── 00-hello-world.md ├── 03-eradicate-warnings.md ├── 01-adding-models.md ├── 02-separation-logic-and-biabduction.md └── 03-infer-bug-types.md ├── index.md ├── _sass ├── _slideshow.scss ├── _reset.scss ├── _syntax-highlighting.scss └── _base.scss ├── _posts └── 2015-05-22-Infer-on-open-source-android-apps.md ├── feed.xml ├── _config.yml ├── support.md └── css └── main.scss /_data/features.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | fbinfer.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | How to run the website: 2 | 3 | ``` 4 | jekyll serve -w 5 | ``` 6 | -------------------------------------------------------------------------------- /_layouts/docs.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: doc_page 3 | --- 4 | 5 | {% include doc.html %} -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | --- 4 | 5 | {% include post.html %} 6 | 7 | -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/og_image.png -------------------------------------------------------------------------------- /static/oss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/oss_logo.png -------------------------------------------------------------------------------- /static/images/SepSplit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/images/SepSplit.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | id: docs 3 | title: Docs 4 | layout: redirect 5 | destination: getting-started.html 6 | --- 7 | -------------------------------------------------------------------------------- /downloads/InferCExample.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/downloads/InferCExample.tar.gz -------------------------------------------------------------------------------- /downloads/InferiOSExample.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/downloads/InferiOSExample.tar.gz -------------------------------------------------------------------------------- /static/images/Infer-landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/images/Infer-landing.jpg -------------------------------------------------------------------------------- /static/images/Infer-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/static/images/Infer-landing.png -------------------------------------------------------------------------------- /downloads/InferAndroidExample.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaohuqiu/infer-docs-cn/HEAD/downloads/InferAndroidExample.tar.gz -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | _site/ 3 | Gemfile 4 | Gemfile.lock 5 | *.swo 6 | *.swp 7 | _site 8 | .sass-cache 9 | *.psd 10 | *~ 11 | 12 | -------------------------------------------------------------------------------- /_includes/plugins/button.html: -------------------------------------------------------------------------------- 1 | {{ include.button_text }} -------------------------------------------------------------------------------- /_layouts/redirect.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /_data/promo.yml: -------------------------------------------------------------------------------- 1 | - type: ascii_cinema 2 | href: 5uh7nmuvwsbdok61t2fh1iiob 3 | 4 | - type: button 5 | href: docs/getting-started.html 6 | text: Get Started 7 | 8 | - type: github_star -------------------------------------------------------------------------------- /_includes/plugins/all_share.html: -------------------------------------------------------------------------------- 1 |An image management library
5 | 8 |13 | 14 | {{ post.title }} 15 | 16 | on {{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }} 17 |
18 | {% endfor %} 19 |
5 | {% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}
10 |