| /external/python/cpython3/.azure-pipelines/windows-release/ |
| D | stage-build.yml | 5 - job: Build_Docs 6 displayName: Docs build 8 vmImage: windows-2022 14 - template: ./checkout.yml 16 - script: Doc\make.bat html 17 displayName: 'Build HTML docs' 19 BUILDDIR: $(Build.BinariesDirectory)\Doc 21 - script: Doc\make.bat htmlhelp 22 displayName: 'Build CHM docs' 25 BUILDDIR: $(Build.BinariesDirectory)\Doc [all …]
|
| D | stage-publish-pythonorg.yml | 5 - job: Publish_Python 10 #vmImage: windows-2022 17 - template: ./checkout.yml 19 - task: UsePythonVersion@0 24 - ${{ if parameters.BuildToPublish }}: 25 - task: DownloadPipelineArtifact@1 26 displayName: 'Download artifact from ${{ parameters.BuildToPublish }}: Doc' 28 artifactName: Doc 29 targetPath: $(Build.BinariesDirectory)\Doc 32 pipeline: $(Build.DefinitionName) [all …]
|
| /external/python/cpython3/.github/workflows/ |
| D | doc.yml | 7 # - 'main' 8 # - '3.11' 9 # - '3.10' 10 # - '3.9' 11 # - '3.8' 12 # - '3.7' 14 # - 'Doc/**' 17 - 'main' 18 - '3.11' 19 - '3.10' [all …]
|
| /external/bazel-skylib/rules/ |
| D | common_settings.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 """Common build setting rules 17 These rules return a BuildSettingInfo with the value of the build setting. 18 For label-typed settings, use the native label_flag and label_setting rules. 20 More documentation on how to use build settings at 21 https://bazel.build/extending/config#user-defined-build-settings 25 doc = "A singleton provider that contains the raw value of a build setting", 27 "value": "The value of the build setting in the current configuration. " + 29 "or else it will be the build setting's default.", 34 doc = "If set, the build setting's value will be available as a Make variable with this " + [all …]
|
| /external/rappor/ |
| D | build.sh | 3 # Build automation. 6 # ./build.sh [function name] 9 # cpp-client: Build the C++ client 10 # doc: build docs with Markdown 11 # fastrand: build Python extension module to speed up the client simulation 15 set -o nounset 16 set -o pipefail 17 set -o errexit 28 run-markdown() { 36 <meta charset="UTF-8"> [all …]
|
| /external/rust/cxx/syntax/ |
| D | mod.rs | 9 mod doc; module 46 pub(crate) use self::doc::Doc; 52 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro 68 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro 70 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro 84 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro 87 pub doc: Doc, field 89 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build 91 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build 99 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build [all …]
|
| /external/rust/crates/winnow/examples/ndjson/ |
| D | example.ndjson | 1 …-artifact","package_id":"proc-macro2 1.0.46 (registry+https://github.com/rust-lang/crates.io-index… 2 …build-script-executed","package_id":"proc-macro2 1.0.46 (registry+https://github.com/rust-lang/cra… 3 …-artifact","package_id":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","ma… 4 …-artifact","package_id":"libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)","ma… 5 …-artifact","package_id":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-inde… 6 …-artifact","package_id":"proc-macro2 1.0.46 (registry+https://github.com/rust-lang/crates.io-index… 7 …build-script-executed","package_id":"libc 0.2.139 (registry+https://github.com/rust-lang/crates.io… 8 …build-script-executed","package_id":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io… 9 …-artifact","package_id":"syn 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)","man… 10 …-artifact","package_id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","ma… [all …]
|
| /external/rust/crates/fs-err/src/tokio/ |
| D | mod.rs | 1 //! Tokio-specific wrappers that use `fs_err` error messages. 21 #[cfg_attr(docsrs, doc(cfg(feature = "tokio")))] 22 pub async fn canonicalize(path: impl AsRef<Path>) -> io::Result<PathBuf> { in canonicalize() 26 .map_err(|err| Error::build(err, ErrorKind::Canonicalize, path)) in canonicalize() 34 #[cfg_attr(docsrs, doc(cfg(feature = "tokio")))] 35 pub async fn copy(from: impl AsRef<Path>, to: impl AsRef<Path>) -> Result<u64, io::Error> { in copy() 39 .map_err(|err| SourceDestError::build(err, SourceDestErrorKind::Copy, from, to)) in copy() 45 #[cfg_attr(docsrs, doc(cfg(feature = "tokio")))] 46 pub async fn create_dir(path: impl AsRef<Path>) -> io::Result<()> { in create_dir() 50 .map_err(|err| Error::build(err, ErrorKind::CreateDir, path)) in create_dir() [all …]
|
| /external/rust/crates/ash/src/vk/ |
| D | definitions.rs | 12 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_MAKE_VERSION.htm… 13 pub const fn make_version(major: u32, minor: u32, patch: u32) -> u32 { in make_version() 17 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_MAJOR.ht… 18 pub const fn version_major(version: u32) -> u32 { in version_major() 22 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_MINOR.ht… 23 pub const fn version_minor(version: u32) -> u32 { in version_minor() 27 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_PATCH.ht… 28 pub const fn version_patch(version: u32) -> u32 { in version_patch() 31 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_MAKE_API_VERSION… 32 pub const fn make_api_version(variant: u32, major: u32, minor: u32, patch: u32) -> u32 { in make_api_version() [all …]
|
| /external/antlr/runtime/Python3/ |
| D | mkdoxy.sh | 3 if [ -e doxygen.sh ]; then 7 rm -fr build/doc 8 mkdir -p build/doc/antlr3 11 sed -e '/begin\[licence\]/,/end\[licence\]/d' antlr3/$f.py \ 12 >>build/doc/antlr3.py 15 touch build/doc/antlr3/__init__.py 17 cp -f antlr3/tree.py build/doc/antlr3 18 cp -f antlr3/treewizard.py build/doc/antlr3
|
| /external/antlr/runtime/Python/ |
| D | mkdoxy.sh | 3 if [ -e doxygen.sh ]; then 7 rm -fr build/doc 8 mkdir -p build/doc/antlr3 11 sed -e '/begin\[licence\]/,/end\[licence\]/d' antlr3/$f.py \ 12 >>build/doc/antlr3.py 15 touch build/doc/antlr3/__init__.py 17 cp -f antlr3/tree.py build/doc/antlr3 18 cp -f antlr3/treewizard.py build/doc/antlr3
|
| /external/bazelbuild-rules_rust/rust/private/ |
| D | rust.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 56 if dep[rust_common.crate_info].type == "proc-macro": 58 …"{} listed {} in its deps, but it is a proc-macro. It should instead be in the bazel property proc… 65 if type != "proc-macro": 67 …"{} listed {} in its proc_macro_deps, but it is not proc-macro, it is a {}. It should probably ins… 130 return _rust_library_common(ctx, "proc-macro") 133 """The common implementation of the library-like rules. 137 crate_type (String): one of lib|rlib|dylib|staticlib|cdylib|proc-macro 158 …# (see https://github.com/bazelbuild/rules_rust/issues/405#issuecomment-993089889 for more details) 279 rust_flags = ["--test"] [all …]
|
| /external/rust/crates/fs-err/src/ |
| D | lib.rs | 2 fs-err is a drop-in replacement for [`std::fs`][std::fs] that provides more 22 ...but if we use fs-err instead, our error contains more actionable information: 31 fs-err's API is the same as [`std::fs`][std::fs], so migrating code to use it is easy. 44 fs-err uses [`std::io::Error`][std::io::Error] for all errors. This helps fs-err 52 let file = File::open("my-config.json")?; 63 [std::fs]: https://doc.rust-lang.org/stable/std/fs/ 64 [std::io::Error]: https://doc.rust-lang.org/stable/std/io/struct.Error.html 65 [std::io::Read]: https://doc.rust-lang.org/stable/std/io/trait.Read.html 69 #![doc(html_root_url = "https://docs.rs/fs-err/2.11.0")] 80 #[cfg_attr(docsrs, doc(cfg(feature = "tokio")))] [all …]
|
| /external/bazelbuild-rules_rust/crate_universe/private/ |
| D | crates_vendor.bzl | 10 set -euo pipefail 12 if [[ -z "${{BAZEL_REAL:-}}" ]]; then 19 # --default_system_javabase set to the empty string, but if you provide a path, 21 exec env - BAZEL_REAL="${{BAZEL_REAL}}" BUILD_WORKSPACE_DIRECTORY="${{BUILD_WORKSPACE_DIRECTORY}}" … 104 name = "cargo-bazel-splicing-manifest.json", 116 args = ["--splicing-manifest", _runfiles_path(manifest, is_windows)] 123 # Ensure the data is using kebab-case as that's what `cargo_toml::DependencyDetail` expects. 147 name = "cargo-bazel-config.json", 164 args = ["--config", _runfiles_path(config, is_windows)] 181 """Writes the rendering config to cargo-bazel-config.json. [all …]
|
| /external/bazelbuild-rules_rust/crate_universe/ |
| D | extension.bzl | 1 """Module extension for generating third-party crates for use in bazel.""" 24 def optional_bool(doc): 25 return attr.string(doc = doc, values = _OPT_BOOL_VALUES.keys(), default = "auto") 48 regen_command = "Run 'cargo update [--workspace]'", 84 splicing_output_dir = tag_path.get_child("splicing-output") 87 "--output-dir", 89 "--config", 91 "--splicing-manifest", 93 "--cargo-lockfile", 104 "--cargo-lockfile", [all …]
|
| /external/python/cpython3/.azure-pipelines/ |
| D | docs-steps.yml | 6 - checkout: self 10 - task: UsePythonVersion@0 15 - script: python -m pip install -r requirements.txt 16 workingDirectory: '$(build.sourcesDirectory)/Doc' 17 displayName: 'Install build dependencies' 19 - ${{ if ne(parameters.latex, 'true') }}: 20 - script: make check html PYTHON=python 21 workingDirectory: '$(build.sourcesDirectory)/Doc' 22 displayName: 'Build documentation' 24 - ${{ if eq(parameters.latex, 'true') }}: [all …]
|
| /external/bazelbuild-rules_android/rules/android_local_test/ |
| D | attrs.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 36 doc = """ 49 doc = "This is a deprecated feature. Do not use it.", 52 doc = """ 54 …ect to [$(location / execpath / rootpath)](https://docs.bazel.build/versions/main/be/make-variable… 55 … ["Make variable"](https://docs.bazel.build/versions/main/be/make-variables.html) substitution, and 56 …[Bourne shell tokenization](https://docs.bazel.build/versions/main/be/common-definitions.html#sh-t… 72 doc = """ 79 uses-sdk tags. `packageName` will be ignored and will be set from either 86 doc = "A list of file extensions to leave uncompressed in the resource apk.", [all …]
|
| /external/rust/crates/weak-table/ |
| D | Makefile | 1 default: build 5 REPO = weak-table-rs 7 build: target 9 cargo build 10 make doc 13 rustup run nightly cargo build --features=clippy 15 doc: target 16 cargo doc 17 echo "<meta http-equiv='refresh' content='0;url=$(CRATE)/'>" > target/doc/index.html 23 upload-doc: [all …]
|
| /external/libnl/tools/ |
| D | build_release.sh | 5 # - create new commit, bumping version number 6 # - run this script 7 # - check all is good 8 # - tag the commit (signed) 9 # git tag -m 'libnl-3.2.26-rc1' -s libnl3_2_26rc1 HEAD 10 # - publish the tarballs 11 # - push the commit to github 12 # - publish the tag on github 13 # - publish the tarballs on github 14 # - send ANN email [all …]
|
| /external/bazelbuild-rules_rust/cargo/private/ |
| D | cargo_build_script.bzl | 1 """Rules for Cargo build scripts (`build.rs` files)""" 10 # buildifier: disable=bzl-visibility 17 # buildifier: disable=bzl-visibility 39 - (sequence): A flattened C command line flags for given action. 40 - (sequence): A flattened CXX command line flags for given action. 41 - (dict): C environment variables to be set for given action. 65 """Prefix execroot-relative paths of known arguments with ${pwd}. 75 s, opt, path = arg.partition("--sysroot=") 121 … = ctx.actions.declare_file(ctx.label.name + ".linksearchpaths") # rustc-link-search, propagated … 136 # Start with the default shell env, which contains any --action_env [all …]
|
| /external/icing/icing/index/numeric/ |
| D | integer-index_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 #include "icing/index/numeric/integer-index.h" 29 #include "icing/document-builder.h" 31 #include "icing/index/hit/doc-hit-info.h" 32 #include "icing/index/iterator/doc-hit-info-iterator.h" 33 #include "icing/index/numeric/dummy-numeric-index.h" 34 #include "icing/index/numeric/integer-index-storage.h" 35 #include "icing/index/numeric/numeric-index.h" 36 #include "icing/index/numeric/posting-list-integer-index-serializer.h" 39 #include "icing/schema-builder.h" [all …]
|
| /external/bazelbuild-rules_go/go/private/rules/ |
| D | binary.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 151 # non-data dependents should not pick up the executable as a runfile 160 # If the binary's linkmode is c-archive or c-shared, expose CcInfo 166 "windows": ["-mthreads"], 167 }.get(go.mode.goos, ["-pthread"]), 195 doc = """The list of Go source files that are compiled to create the package. 199 files are also permitted. Files may be filtered at build time 200 using Go [build constraints]. 205 doc = """List of files needed by this rule at run-time. This may include data files 214 doc = """List of Go libraries this package imports directly. [all …]
|
| /external/libpcap/ |
| D | INSTALL.md | 3 with CMake and any build system supported by CMake. 5 To build libpcap with the configure script and `make`: 10 control the configuration of libpcap; `./configure --help`` will show 15 libpcap if you just want to build tcpdump; just make sure the tcpdump 18 To build libpcap with CMake and the build system of your choice, from 21 * Create a build directory into which CMake will put the build files it 23 code directory as does the configure script. The build directory may be 27 * Change to the build directory and run CMake with the path from the 28 build directory to the source directory as an argument. The `-G` flag 29 can be used to select the CMake "generator" appropriate for the build [all …]
|
| /external/gemmlowp/ |
| D | README.md | 1 # gemmlowp: a small self-contained low-precision GEMM library 3 [](http://travis-ci.org/google/gem… 9 [doc/low-precision.md](doc/low-precision.md) 11 Some of the general design is explained in [doc/design.md](doc/design.md). 22 gemmlowp-related discussion, about either development or usage, is welcome on 39 * pthreads (for multi-threaded operation and for profiling). 40 * sysconf (for multi-threaded operation to detect number of cores; may be 45 * Architecture-specific code paths use intrinsics or inline assembly. See 46 "Architecture-specific optimized code paths" below. 48 ## Architecture-specific optimized code paths [all …]
|
| /external/pigweed/pw_rust/bazel_patches/ |
| D | 0002-PROTOTYPE-Add-ability-to-document-multiple-crates-at.patch | 7 --- 10 util/BUILD.bazel | 12 ++ 11 util/capture_args/BUILD.bazel | 8 ++ 13 util/run_scripts/BUILD.bazel | 8 ++ 16 create mode 100644 util/capture_args/BUILD.bazel 18 create mode 100644 util/run_scripts/BUILD.bazel 21 diff --git a/rust/defs.bzl b/rust/defs.bzl 23 --- a/rust/defs.bzl 25 @@ -56,6 +56,7 @@ load( 33 @@ -99,6 +100,9 @@ rust_test_suite = _rust_test_suite [all …]
|