Home
last modified time | relevance | path

Searched +full:linkcheck +full:- +full:docs (Results 1 – 21 of 21) sorted by relevance

/third_party/rust/rust/src/tools/linkchecker/
Dlinkcheck.sh4 # the same tool as rust-lang/rust.
6 # This requires the rust-docs rustup component to be installed in the nightly
10 # ./linkcheck.sh <name-of-book>
14 # -i "Iterative" mode. The script will not clean up after it is done so
15 # you can inspect the result, and re-run more quickly.
17 # --all Check all books. This can help make sure you don't break links
20 # --path <book-path>
24 set -e
26 html_dir="$(rustc +nightly --print sysroot)/share/doc/rust/html"
28 if [ ! -d "$html_dir" ]
[all …]
Dmain.rs29 // Add linkcheck exceptions here
30 // If at all possible you should use intra-doc links to avoid linkcheck issues. These
36 // https://github.com/rust-lang/rust/issues/74481
37 ("std/collections/btree_map/struct.BTreeMap.html", &["#insert-and-complex-keys"]),
38 ("std/collections/btree_set/struct.BTreeSet.html", &["#insert-and-complex-keys"]),
39 ("alloc/collections/btree_map/struct.BTreeMap.html", &["#insert-and-complex-keys"]),
40 ("alloc/collections/btree_set/struct.BTreeSet.html", &["#insert-and-complex-keys"]),
43 // The docs in std::primitive use proper intra-doc links, so these seem fine to special-case.
82 let docs = env::args_os().nth(1).expect("doc path should be first argument"); in main() localVariable
83 let docs = env::current_dir().unwrap().join(docs); in main() localVariable
[all …]
/third_party/libuv/.github/workflows/
DCI-docs.yml1 name: CI-docs
6 - 'docs/**'
7 - '!docs/code/**'
8 - '.github/workflows/CI-docs.yml'
11 docs-src:
12 runs-on: ubuntu-latest
14 - uses: actions/checkout@v3
15 - uses: actions/setup-python@v4
17 python-version: '3.9'
19 - run: pip install -r docs/requirements.txt
[all …]
/third_party/python/Doc/
DMakefile9 SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build
10 SPHINXLINT = PATH=$(VENVDIR)/bin:$$PATH sphinx-lint
17 SPHINXERRORHANDLING = -W
20 PAPEROPT_a4 = -D latex_elements.papersize=a4paper
21 PAPEROPT_letter = -D latex_elements.papersize=letterpaper
23 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) -j $(JOBS) \
26 .PHONY: help build html htmlhelp latex text texinfo changes linkcheck \
27 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
28 autobuild-dev autobuild-stable venv
42 @echo " linkcheck to check all external links for integrity"
[all …]
DREADME.rst6 available <https://docs.python.org/dev/download.html>`_.
14 Building the docs
23 * `python-docs-theme <https://pypi.org/project/python-docs-theme/>`_
29 ----------
43 the Makefile will look for instances of ``sphinx-build`` and ``blurb``
55 * "clean-venv", which removes the virtual environment directory.
62 * "htmlview", which re-uses the "html" builder, but then opens the main page
66 convert them into a single Compiled HTML (.chm) file -- these are popular
78 * "epub", which builds an EPUB document, suitable to be viewed on e-book
81 * "linkcheck", which checks all external references to see whether they are
[all …]
Dmake.bat13 %PYTHON% -c "import sphinx" > nul 2> nul
16 %PYTHON% -m pip install -r requirements.txt
19 set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"
22 %PYTHON% -c "import python_docs_theme" > nul 2> nul
24 echo Installing python-docs-theme with %PYTHON%
25 %PYTHON% -m pip install python-docs-theme
30 %PYTHON% -c "import blurb" > nul 2> nul
34 %PYTHON% -m pip install blurb
37 set BLURB=%PYTHON% -m blurb
41 %PYTHON% -c "import sphinxlint" > nul 2> nul
[all …]
/third_party/mesa3d/docs/
Dgitlab-ci.yml1 .docs-base:
3 - .build-linux
4 - .use-alpine/x86_64_build
8 - public/
10 - meson setup _build -D prefix=$(pwd) --auto-features=disabled
11 -D vulkan-drivers="" -D gallium-drivers="" -D platforms=[] -D glx=disabled
12 -D video-codecs="" -D html-docs=enabled -D html-docs-path=public
13 -D werror=true
14 - meson compile -C _build
15 - meson install -C _build
[all …]
Dconf.py2 # -*- coding: utf-8 -*-
6 # sphinx-quickstart on Wed Mar 29 14:08:51 2017.
32 # -- General configuration ------------------------------------------------
65 copyright = '1995-2018, Brian Paul'
90 exclude_patterns = ['header-stubs']
101 # -- Options for HTML output ----------------------------------------------
119 'release-maintainers-keys.asc',
129 ('thanks', 'https://gitlab.freedesktop.org/mesa/mesa/-/blob/amber/docs/thanks.rst'),
133 # -- Options for linkcheck ------------------------------------------------
137 r'news:.*', # seems linkcheck doesn't like the news: URI-scheme...
[all …]
/third_party/rust/rust/src/tools/clippy/.github/workflows/
Dremark.yml6 - auto
7 - try
10 - '**.md'
14 runs-on: ubuntu-latest
18 - name: Checkout
21 - name: Setup Node.js
22 uses: actions/setup-node@v3
24 node-version: '14.x'
26 - name: Install remark
27 …run: npm install remark-cli remark-lint remark-lint-maximum-line-length remark-preset-lint-recomme…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/
DMakefile.sphinx2 # Ported from llvm/docs/Makefile.sphinx
3 # Requires sphinx-build which may come preinstalled on your system.
5 # you can get it from http://www.sphinx-doc.org/ .
7 # apt-get install python-sphinx
11 SPHINXBUILD = mkdir -p $(BUILDDIR) && sphinx-build
16 PAPEROPT_a4 = -D latex_paper_size=a4
17 PAPEROPT_letter = -D latex_paper_size=letter
18 ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
23 epub latex latexpdf text man changes linkcheck doctest gettext
48 @echo " linkcheck to check all external links for integrity"
[all …]
/third_party/rust/crates/codespan/
DREADME.md1 # codespan-reporting
3 [![Continuous integration][actions-badge]][actions-url]
4 [![Crates.io][crate-badge]][crate-url]
5 [![Docs.rs][docs-badge]][docs-url]
6 [![Matrix][matrix-badge]][matrix-lobby]
8 [actions-badge]: https://img.shields.io/github/workflow/status/brendanzab/codespan/Continuous%20int…
9 [actions-url]: https://github.com/brendanzab/codespan/actions
10 [crate-url]: https://crates.io/crates/codespan-reporting
11 [crate-badge]: https://img.shields.io/crates/v/codespan-reporting.svg
12 [docs-url]: https://docs.rs/codespan-reporting
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dgitlab-ci.yml3 .incorporate-templates-commit:
5 FDO_DISTRIBUTION_TAG: "${MESA_IMAGE_TAG}--${MESA_TEMPLATES_COMMIT}"
7 .incorporate-base-tag+templates-commit:
9 …FDO_BASE_IMAGE: "${CI_REGISTRY_IMAGE}/${MESA_BASE_IMAGE}:${MESA_BASE_TAG}--${MESA_TEMPLATES_COMMIT…
10 FDO_DISTRIBUTION_TAG: "${MESA_IMAGE_TAG}--${MESA_BASE_TAG}--${MESA_TEMPLATES_COMMIT}"
12 .set-image:
14 - .incorporate-templates-commit
19 .set-image-base-tag:
21 - .set-image
22 - .incorporate-base-tag+templates-commit
[all …]
/third_party/rust/rust/src/bootstrap/
Dtest.rs1 //! Implementation of the test-related targets of the build system.
34 // mir-opt tests have different variants depending on whether a target is 32bit or 64bit, and
35 // blessing them requires blessing with each target. To aid developers, when blessing the mir-opt
42 ("i686-unknown-linux-gnu", "x86_64-unknown-linux-gnu"),
43 ("i686-unknown-linux-musl", "x86_64-unknown-linux-musl"),
44 ("i686-pc-windows-msvc", "x86_64-pc-windows-msvc"),
45 ("i686-pc-windows-gnu", "x86_64-pc-windows-gnu"),
46 ("i686-apple-darwin", "x86_64-apple-darwin"),
47 // ARM Macs don't have a corresponding 32-bit target that they can (easily)
48 // build for, so there is no entry for "aarch64-apple-darwin" here.
[all …]
Dbuilder.rs33 // - use std::lazy for `Lazy`
34 // - use std::cell for `OnceCell`
52 fn deref(&self) -> &Self::Target { in deref()
66 /// If true, then this rule should be skipped if --target was specified, but --host was not
71 fn run(self, builder: &Builder<'_>) -> Self::Output; in run()
77 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>; in should_run()
101 pub fn build_triple(&self) -> TargetSelection { in build_triple()
107 pub fn cargo_crates_in_set(&self) -> Interned<Vec<String>> { in cargo_crates_in_set()
123 pub fn crate_description(crates: &[impl AsRef<str>]) -> String { in crate_description()
141 should_run: fn(ShouldRun<'_>) -> ShouldRun<'_>,
[all …]
/third_party/mesa3d/docs/relnotes/
D24.3.0.rst1 Mesa 24.3.0 Release Notes / 2024-11-21
20 -------------
24 SHA256: 97813fe65028ef21b4d4e54164563059e8408d8fee3489a2323468d198bf2efc mesa-24.3.0.tar.xz
25 …821e68d7a8c37a07871d097ab17555f41a4fe716f0de7df95ad7d452b1ed57db6527838eb839ba4 mesa-24.3.0.tar.xz
29 ------------
31 - Expose Vulkan 1.3 on v3dv, both rpi4 and rpi5
32 - VK_EXT_descriptor_buffer on nvk
33 - VK_EXT_post_depth_coverage on nvk
34 - VK_KHR_video_maintenance1 on radv
35 - VK_EXT_legacy_vertex_attributes on nvk
[all …]
D23.1.0.rst1 Mesa 23.1.0 Release Notes / 2023-05-10
20 ---------------
24 a9dde3c76571c4806245a05bda1cceee347c3267127e9e549e4f4e225d92e992 mesa-23.1.0.tar.xz
28 ------------
30 - VK_EXT_pipeline_library_group_handles on RADV
31 - VK_EXT_image_sliced_view_of_3d on RADV/GFX10+
32 - VK_KHR_map_memory2 on ANV and RADV
33 - fullyCoveredFragmentShaderInputVariable on RADV/GFX9+
34 - VK_EXT_discard_rectangles version 2 on RADV
35 - VK_EXT_graphics_pipeline_library on RADV
[all …]
D23.3.0.rst1 Mesa 23.3.0 Release Notes / 2023-11-29
20 ---------------
24 50f729dd60ed6335b989095baad81ef5edf7cfdd4b4b48b9b955917cb07d69c5 mesa-23.3.0.tar.xz
28 -----------
29 - NVK: A Vulkan driver for Nvidia hardware
32 ------------
33 - VK_EXT_pipeline_robustness on ANV
34 - VK_KHR_maintenance5 on RADV
35 - OpenGL ES 3.1 on Asahi
36 - GL_ARB_compute_shader on Asahi
[all …]
/third_party/libuv/
DChangeLog11 * build,win: remove extraneous -lshell32 (Ben Noordhuis)
19 * test: check if ipv6 link-local traffic is routable (Ben Noordhuis)
35 * test_fs.c: Fix issue on 32-bit systems using btrfs (Stephen Gallagher)
37 * misc: ignore libuv-release-tool files (Jameson Nash)
45 * test: skip tcp-write-in-a-row on IBM i (Abdirahim Musse)
61 * unix: support full TCP keep-alive on Solaris (Andy Pan)
67 * freebsd: fix build on non-intel archs (David Carlier)
75 * build: re-enable msvc-asan job on CI (Jameson Nash)
83 * fix: always zero-terminate idna output (Ben Noordhuis)
85 * fix: reject zero-length idna inputs (Ben Noordhuis)
[all …]
/third_party/python/Misc/
DHISTORY2 --------------
13 Release date: 2017-01-17
21 Release date: 2017-01-02
24 -----------------
26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
33 -------
35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle
39 - In the curses module, raise an error if window.getstr() or window.instr() is
42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
[all …]
DNEWS8 *Release date: 2023-06-06*
11 --------
13 - gh-issue-103142: The version of OpenSSL used in our binary builds has been
16 - gh-issue-99889: Fixed a security in flaw in :func:`uu.decode` that could
20 - gh-issue-104049: Do not expose the local on-disk location in directory
23 - gh-issue-102153: :func:`urllib.parse.urlsplit` now strips leading C0
25 by WHATWG in response to CVE-2023-24329. Patch by Illia Volochii.
28 -----------------
30 - gh-issue-105164: Ensure annotations are set up correctly if the only
34 - gh-issue-104615: Fix wrong ordering of assignments in code like ``a, a =
[all …]
/third_party/NuttX/
DReleaseNotes14 "nuttx-6.27").
16 NuttX-0.1.0
17 -----------
23 This release has been verified on both the Linux user-mode and C5471
25 for the C5471 can be found in arch/c5471/doc/test-results.txt.
29 NuttX-0.1.1
30 -----------
42 This release has been verified on the Linux user-mode platform, the
51 NuttX-0.1.2
52 -----------
[all …]