Home
last modified time | relevance | path

Searched +full:- +full:- +full:doc +full:- +full:build (Results 1 – 25 of 1140) sorted by relevance

12345678910>>...46

/external/python/cpython3/.azure-pipelines/windows-release/
Dstage-build.yml2 - job: Build_Docs
3 displayName: Docs build
6 #vmImage: windows-2019
12 - template: ./checkout.yml
14 - script: Doc\make.bat html
15 displayName: 'Build HTML docs'
17 BUILDDIR: $(Build.BinariesDirectory)\Doc
19 - script: Doc\make.bat htmlhelp
20 displayName: 'Build CHM docs'
22 BUILDDIR: $(Build.BinariesDirectory)\Doc
[all …]
Dstage-publish-pythonorg.yml2 - job: Publish_Python
7 #vmImage: windows-2019
14 - template: ./checkout.yml
16 - task: UsePythonVersion@0
21 - task: DownloadPipelineArtifact@1
22 displayName: 'Download artifact: Doc'
25 artifactName: Doc
26 targetPath: $(Build.BinariesDirectory)\Doc
28 - task: DownloadPipelineArtifact@1
33 targetPath: $(Build.BinariesDirectory)\msi
[all …]
Dmsi-steps.yml2 - template: ./checkout.yml
4 - powershell: |
5 …$d = (.\PCbuild\build.bat -V) | %{ if($_ -match '\s+(\w+):\s*(.+)\s*$') { @{$Matches[1] = $Matches…
6 Write-Host "##vso[task.setvariable variable=SigningDescription]Python $($d.PythonVersion)"
10 - task: DownloadPipelineArtifact@1
11 displayName: 'Download artifact: doc'
13 artifactName: doc
14 targetPath: $(Build.BinariesDirectory)\doc
16 - task: CopyFiles@2
19 sourceFolder: $(Build.BinariesDirectory)\doc
[all …]
/external/bazel-skylib/rules/
Dcommon_settings.bzl7 # 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://docs.bazel.build/versions/master/skylark/config.html#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.",
39 doc = "An int-typed build setting that can be set on the command line",
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs11 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_MAKE_VERSION.htm…
12 pub const fn make_version(major: u32, minor: u32, patch: u32) -> u32 { in make_version()
16 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_VERSION_MAJOR.ht…
17 pub const fn version_major(version: u32) -> u32 { in version_major()
21 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_VERSION_MINOR.ht…
22 pub const fn version_minor(version: u32) -> u32 { in version_minor()
26 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_VERSION_PATCH.ht…
27 pub const fn version_patch(version: u32) -> u32 { in version_patch()
30 #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_MAKE_API_VERSION…
31 pub const fn make_api_version(variant: u32, major: u32, minor: u32, patch: u32) -> u32 { in make_api_version()
[all …]
/external/python/cpython3/.azure-pipelines/
Ddocs-steps.yml6 - 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/antlr/runtime/Python/
Dmkdoxy.sh3 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/Python3/
Dmkdoxy.sh3 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/ActionScript/project/
Dbuild.xml4 <property name="build.dir" value="${basedir}/build"/>
5 <property name="build.lib.dir" value="${build.dir}/lib"/>
6 <property name="build.doc.dir" value="${build.dir}/doc"/>
7 <property name="build.test.dir" value="${build.dir}/test"/>
8 <property name="build.test.output.dir" value="${build.test.dir}/output"/>
13 <!-- Assume SDK 3.0 or greater has the ant tasks -->
23 <replacestring from="${src.dir}/" to=""/> <!-- Strip off directory -->
24 <replacestring from=".as" to=""/> <!-- Strip off extension -->
25 <replacestring from="/" to="."/> <!-- Convert path to package -->
29 <target name="all" depends="build"/>
[all …]
/external/gemmlowp/
DREADME.md1 # gemmlowp: a small self-contained low-precision GEMM library
3 [![Build Status](https://secure.travis-ci.org/google/gemmlowp.png)](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/zstd/
DCHANGELOG7 perf: faster mid-level compression speed in presence of highly repetitive patterns, by @senhuang42
11 perf: on-demand reduced ZSTD_DCtx state size, using build macro ZSTD_DECODER_INTERNAL_BUFFER, at a …
12 build: allows hiding static symbols in the dynamic library, using build macro, by @skitt
13 build: support for m68k (Motorola 68000's), by @cyan4973
14 build: improved AIX support, by @Helflym
15 build: improved meson unofficial build, by @eli-schwartz
17 …t advanced parameters information when compressing in very verbose mode (``-vv`), by @Svetlitski-FB
20 api: Various functions promoted from experimental to stable API: (#2579-2581, @senhuang42)
34 api: ZSTDMT_NBWORKERS_MAX reduced to 64 for 32-bit environments (@Cyan4973)
37 perf: Decompression loop refactor, speed improvements on `clang` and for `--long` modes (#2614 #263…
[all …]
DREADME.md1 <p align="center"><img src="https://raw.githubusercontent.com/facebook/zstd/dev/doc/images/zstd_log…
4 targeting real-time compression scenarios at zlib-level and better compression ratios.
7 Zstandard's format is stable and documented in [RFC8878](https://datatracker.ietf.org/doc/html/rfc8…
8 This repository represents the reference implementation, provided as an open-source dual [BSD](LICE…
11 a list of known ports and bindings is provided on [Zstandard homepage](http://www.zstd.net/#other-l…
15 [![Build Status][travisDevBadge]][travisLink]
16 [![Build status][AppveyorDevBadge]][AppveyorLink]
17 [![Build status][CircleDevBadge]][CircleLink]
18 [![Build status][CirrusDevBadge]][CirrusLink]
21 [travisDevBadge]: https://api.travis-ci.com/facebook/zstd.svg?branch=dev "Continuous Integration te…
[all …]
/external/libnl/tools/
Dbuild_release.sh5 # - 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/icu/icu4j/
Dbuild.xml1 <!--
5 * Copyright (C) 1997-2016, International Business Machines Corporation and *
8 -->
13 <property file="build-local.properties"/>
14 <property file="build.properties"/>
17 <import file="${shared.dir}/build/common-targets.xml"/>
21 <!-- icu4j binaries -->
24 <property name="icu4j-charset.jar.file" value="icu4j-charset.jar"/>
25 <property name="icu4j-localespi.jar.file" value="icu4j-localespi.jar"/>
29 <!-- icu4j API doc jar file -->
[all …]
/external/rust/crates/weak-table/
DMakefile1 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/libconfig/docs/dist/
Dlibconfig-1.7.tar.gz ... /aux-build/ libconfig-1.7/aux-build/config.guess libconfig-1.7/aux ...
Dlibconfig-1.7.1.tar.gz
/external/python/setuptools/docs/userguide/
Dquickstart.rst10 pip install --upgrade setuptools
16 only provide backend support, no longer being the de-facto packaging tool in
18 the backend (build system) it wants to use. The distribution can then
19 be generated with whatever tool that provides a ``build sdist``-like
22 change is driven under :pep:`PEP 517 <517#build-requirements>`. To learn more about Python packagin…
23 navigate to the :ref:`bottom <packaging-resources>` of this page.
32 .. code-block:: toml
34 [build-system]
36 build-backend = "setuptools.build_meta"
49 .. code-block:: ini
[all …]
/external/wayland/
DMakefile.am2 SUBDIRS = doc subdir
5 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
8 -I$(top_builddir)/src \
9 -I$(top_srcdir)/src \
10 -I$(top_builddir)/protocol
15 dist_aclocal_DATA = wayland-scanner.m4
18 wayland-scanner.mk \
25 bin_PROGRAMS = wayland-scanner
27 wayland_scanner_CPPFLAGS = $(AM_CPPFLAGS) -include config.h
29 wayland_scanner_LDADD = $(EXPAT_LIBS) $(LIBXML_LIBS) libwayland-util.la
[all …]
/external/python/cpython3/Tools/msi/
Dbuild.bat14 if "%~1" EQU "-h" goto Help
15 if "%~1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts
16 if "%~1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts
17 if "%~1" EQU "--doc" (set BUILDDOC=1) && shift && goto CheckOpts
18 if "%~1" EQU "--no-test-marker" (set BUILDTEST=) && shift && goto CheckOpts
19 if "%~1" EQU "--test-marker" (set BUILDTEST=--test-marker) && shift && goto CheckOpts
20 if "%~1" EQU "--pack" (set BUILDPACK=1) && shift && goto CheckOpts
21 if "%~1" EQU "-r" (set REBUILD=-r) && shift && goto CheckOpts
30 call "%PCBUILD%build.bat" -p Win32 -d -e %REBUILD% %BUILDTEST%
32 call "%PCBUILD%build.bat" -p Win32 -e %REBUILD% %BUILDTEST%
[all …]
/external/rnnoise/
DMakefile.am1 ACLOCAL_AMFLAGS = -I m4
3 AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS)
31 librnnoise_la_LDFLAGS = -no-undefined \
32 -version-info @OP_LT_CURRENT@:@OP_LT_REVISION@:@OP_LT_AGE@
45 $(MAKE) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all
49 rnnoise-uninstalled.pc.in \
50 doc/Doxyfile.in \
51 doc/Makefile
53 # Targets to build and install just the library without the docs
54 librnnoise install-librnnoise: NO_DOXYGEN = 1
[all …]
/external/python/cpython3/.github/workflows/
Ddoc.yml6 # - master
7 # - 3.9
8 # - 3.8
9 # - 3.7
11 # - 'Doc/**'
14 - master
15 - 3.10
16 - 3.9
17 - 3.8
18 - 3.7
[all …]
/external/igt-gpu-tools/
DREADME.md5 -----------
8 drivers. There are many macro-level test suites that get used against the
11 complicated build procedures or specific testing environments to get useful
12 results. Therefore, IGT GPU Tools includes low-level tools and tests
32 the --list-subtests command line option and then run using the
33 --run-subtest option. If --run-subtest is not used, all subtests will
35 the --help option.
37 The test suite can be run using the run-tests.sh script available in
42 ./scripts/run-tests.sh -d
44 run-tests.sh has options for filtering and excluding tests from test
[all …]
/external/pcre/
DMakefile.am3 AUTOMAKE_OPTIONS = subdir-objects
4 ACLOCAL_AMFLAGS = -I m4
6 ## This seems to have become necessary for building in non-source directory.
8 AM_CPPFLAGS="-I$(srcdir)/src"
19 doc/pcre2.txt \
20 doc/pcre2-config.txt \
21 doc/pcre2grep.txt \
22 doc/pcre2test.txt
25 doc/html/NON-AUTOTOOLS-BUILD.txt \
26 doc/html/README.txt \
[all …]
/external/vixl/
DSConstruct45 Build system for the VIXL project.
46 See README.md for documentation and details about the build system.
50 # We track top-level targets to automatically generate help and alias them.
72 # Build options ----------------------------------------------------------------
75 # The SConstruct will check the build variables and construct the build
79 'CCFLAGS' : ['-Wall',
80 '-Werror',
81 '-fdiagnostics-show-option',
82 '-Wextra',
83 '-Wredundant-decls',
[all …]

12345678910>>...46