| /third_party/openhitls/.github/workflows/ |
| D | codeql.yml | 5 # or to provide custom queries or build logic. 20 - cron: '21 1 * * 0' 26 # - https://gh.io/recommended-hardware-resources-for-running-codeql 27 # - https://gh.io/supported-runners-and-hardware-resources 28 # - https://gh.io/using-larger-runners (GitHub.com only) 30 runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} 33 security-events: write 43 fail-fast: false 46 - language: actions 47 build-mode: none [all …]
|
| /third_party/rust/rust/src/bootstrap/ |
| D | tool.rs | 13 use crate::Mode; 28 mode: Mode, field 32 /// Nightly-only features that are allowed (comma-separated list). 39 mode: Mode, in msg_tool() argument 44 ) -> Option<gha::Group> { in msg_tool() 45 match mode { in msg_tool() 47 Mode::ToolRustc => self.msg_sysroot_tool( in msg_tool() 48 Kind::Build, in msg_tool() 55 _ => self.msg(Kind::Build, build_stage, format_args!("tool {tool}"), *host, *target), in msg_tool() 63 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> { in should_run() [all …]
|
| D | builder.rs | 29 use crate::{Build, CLang, DocTests, GitRepo, Mode}; 33 // - use std::lazy for `Lazy` 34 // - use std::cell for `OnceCell` 40 pub build: &'a Build, field 50 type Target = Build; 52 fn deref(&self) -> &Self::Target { in deref() 53 self.build 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() [all …]
|
| D | lib.rs | 1 //! Implementation of rustbuild, the Rust build system. 3 //! This module, and its descendants, are the implementation of the Rust build 4 //! system. Most of this build system is backed by Cargo but the outer layer 8 //! * To be an easily understandable, easily extensible, and maintainable build 10 //! * Leverage standard tools in the Rust ecosystem to build the compiler, aka 12 //! * A standard interface to build across all platforms, including MSVC 71 #[cfg(feature = "build-metrics")] 79 pub unsafe fn setup(build: &mut crate::Build) { in setup() argument 80 if build.config.low_priority { in setup() 88 pub unsafe fn setup(_build: &mut crate::Build) {} in setup() argument [all …]
|
| D | job.rs | 3 //! Most of the time when you're running a build system (e.g., make) you expect 4 //! Ctrl-C or abnormal termination to actually terminate the entire tree of 6 //! default" on Unix platforms because Ctrl-C actually sends a signal to the 8 //! down. On Windows, however, this does not happen and Ctrl-C just kills the 12 //! all processes die at the same time. Job objects have a mode of operation 19 //! Unfortunately most of the time the build system is actually called from a 20 //! python wrapper (which manages things like building the build system) so this 24 //! resides in the parent python process, so when python dies the whole build 30 use crate::Build; 50 pub unsafe fn setup(build: &mut Build) { in setup() argument [all …]
|
| D | clean.rs | 3 //! Responsible for cleaning out a build directory of all old and stale 4 //! artifacts to prepare for a fresh build. Currently doesn't remove the 5 //! `build/cache` directory (download cache) or the `build/$target/llvm` 6 //! directory unless the `--all` flag is present. 15 use crate::{Build, Compiler, Mode, Subcommand}; 28 fn run(self, builder: &Builder<'_>) -> Self::Output { in run() 30 clean_default(builder.build, all) in run() 33 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> { in should_run() 39 ( $( $name:ident, $mode:path, $root_crate:literal);+ $(;)? ) => { $( 49 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> { [all …]
|
| /third_party/lz4/ |
| D | NEWS | 5 cli : license of CLI more clearly labelled GPL-2.0-or-later 9 lib : new level 2, offering mid-way performance (speed and compression) 11 lib : Slightly faster (+5%) HC compression speed (levels 3-9), by @JunHe77 14 lib : `lz4file` API improvements, by @vsolontsov-volant and @t-mat 16 build: cmake minimum version raised to 3.5 17 build: cmake improvements, by @foxeng, @Ohjurot, @LocalSpook, @teo-tsirpanis, @ur4t and @t-mat 18 build: meson scripts are now hosted into `build/` directory, by @eli-schwartz 19 build: meson improvements, by @tristan957 20 build: Visual Studio solutions generated by `cmake` via scripts 21 port : support for loongArch, risc-v, m68k, mips and sparc architectures [all …]
|
| /third_party/skia/m133/third_party/externals/libwebp/infra/ |
| D | run_static_analysis.sh | 32 set -xe 36 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.scanbuild.XXX)"} 43 Usage: $(basename "$0") MODE 45 MODE supported scan modes: (shallow|deep) 47 WORKSPACE directory where the build is done. 52 # Wrap clang-tools scan-build. 54 # OUTPUT_DIR target directory where scan-build report is generated. 55 # MODE scan-build mode 57 # $* scan-build additional args. 59 # scan-build retcode [all …]
|
| /third_party/rust/rust/compiler/rustc_codegen_cranelift/docs/ |
| D | usage.md | 3 rustc_codegen_cranelift can be used as a near-drop-in replacement for `cargo build` or `cargo run` … 5 …ed this repo into and you followed the instructions (`y.sh prepare` and `y.sh build` or `test.sh`). 9 In the directory with your project (where you can do the usual `cargo build`), run: 12 $ $cg_clif_dir/dist/cargo-clif build 15 This will build your project with rustc_codegen_cranelift instead of the usual LLVM backend. 22 $ $cg_clif_dir/dist/rustc-clif my_crate.rs 25 ## Jit mode 27 > ⚠⚠⚠ The JIT mode is highly experimental. It may be slower than AOT compilation due to lack of inc… 29 In jit mode cg_clif will immediately execute your code without creating an executable file. 32 > The jit mode will probably need cargo integration to make this possible. [all …]
|
| /third_party/backends/doc/umax/ |
| D | umax.CHANGES | 2 --------------------------------- 4 umax -> sane-0.6: 5 ----------------- 7 * umax-sane-backend created: 8 - umax.c split in: 9 umax-cli.c, umax-scsi.c, umax-driver.c, umax-text.c 10 - umax.h split in: 11 umax-scanner.h, umax-scsi.h, umax-scsidef.h, umax-struct.h 12 - outputs done by DBG(level,msg,args...) defined in debug.h 13 - scsi-calls changed to sane-format (of sane-0.57) [all …]
|
| /third_party/python/Lib/distutils/command/ |
| D | install_scripts.py | 19 ('install-dir=', 'd', "directory to install scripts to"), 20 ('build-dir=','b', "build directory (where to install from)"), 22 ('skip-build', None, "skip the build steps"), 25 boolean_options = ['force', 'skip-build'] 34 self.set_undefined_options('build', ('build_scripts', 'build_dir')) 50 log.info("changing mode of %s", file) 52 mode = ((os.stat(file)[ST_MODE]) | 0o555) & 0o7777 53 log.info("changing mode of %s to %o", file, mode) 54 os.chmod(file, mode)
|
| /third_party/jerryscript/targets/particle/ |
| D | README.md | 6 ### How to build 10 Assume `root` as the path to the projects to build. 42 …mode: hold down both the SETUP and RESET buttons. Then release RESET, but hold SETUP until you see… 44 To build and flash the firmware: switch to the modules directory then call make with a few paramete… 48 make PLATFORM=photon clean all program-dfu 51 #### 3. Build JerryScript 56 make -f ./targets/particle/Makefile.particle 59 This will create a binary file in the `/build/particle/` folder: 64 That’s the binary what we’ll be flashing with dfu-util. 69 Make sure you put your Photon in DFU mode. [all …]
|
| /third_party/openhitls/docs/en/4_User Guide/ |
| D | 2_Test Guide.md | 1 …Prepare the environment on which the compilation depends by referring to *Build and Installation G… 6 | -------- | ------------ | --------------------------------------------------- | 46 - common: common test framework code 47 - demo: openHiTLS function test demo 48 - framework: framework code of the openHiTLS test case 49 - output: output directory of case test results and process files 50 - script: directory of test script code 51 - sdv: code of the openHiTLS test case for function scenarios 52 - testdata: directory of test data 65 | --------------------------- | ------------------------------------------------------------ | [all …]
|
| /third_party/vixl/ |
| D | SConstruct | 45 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 …]
|
| /third_party/skia/m133/bazel/ |
| D | buildrc | 1 # This file contains the build configurations of Skia that we use for testing on the CI. 2 # These allow a short-form reference for our supported combinations of build features. 3 # https://bazel.build/docs/bazelrc#config 5 # For most build configurations, we will want to set the --cc_output_directory_tag [1] 9 # the target platform, and some suffixes to avoid Bazel-caused and user-caused conflicts. [3] [4] 10 # For example, a default output directory might look like "k8-fastbuild-ST-6a54c1377847". 13 # Note that multiple definitions of a config are allowed - in this event, they are added together. 15 # the trailing newline (and thus having a multi-line definition) is preferred for brevity. 19 # and generated dependency files (e.g. the output of clang --write-dependencies [5]), so having 23 # [1] https://bazel.build/reference/command-line-reference#flag--cc_output_directory_tag [all …]
|
| D | skia_app_container.bzl | 20 * "<name>" target to build the Docker container with skia as default user. 31 # //myapp/BUILD.bazel 47 repository = "skia-public/myapp", 51 The above example will produce a Docker container based on gcr.io/skia-public/basealpine with 54 - /usr/local/bin/myapp/mybinary (mode: 755) 55 - /usr/local/share/myapp/config.cfg (mode: 644) 56 - /usr/local/share/myapp/data.json (mode: 644) 58 To build the container and load it into Docker: 71 $ docker run -it --entrypoint /bin/sh bazel/myapp:myapp 79 Successfully pushed Docker image to gcr.io/skia-public/myapp:... [all …]
|
| /third_party/icu/icu4c/source/tools/pkgdata/ |
| D | pkgdata.1.in | 1 .\" Hey, Emacs! This is -*-nroff-*- you know... 7 .\" Copyright (C) 2000-2009 IBM, Inc. and others. 15 \- package data for use by ICU 22 .BI "\-v\fP, \fB\-\-verbose" 27 .BI "\-C\fP, \fB\-\-comment" " comment" 30 .BI "\-m\fP, \fB\-\-mode" " mode" 32 .BI "\-p\fP, \fB\-\-name" " name" 33 .BI "\-O\fP, \fB\-\-bldopt" " options" 35 .BI "\-e\fP, \fB\-\-entrypoint" " name" 38 .BI "\-r\fP, \fB\-\-revision" " version" [all …]
|
| /third_party/skia/third_party/externals/icu/source/tools/pkgdata/ |
| D | pkgdata.1.in | 1 .\" Hey, Emacs! This is -*-nroff-*- you know... 7 .\" Copyright (C) 2000-2009 IBM, Inc. and others. 15 \- package data for use by ICU 22 .BI "\-v\fP, \fB\-\-verbose" 27 .BI "\-C\fP, \fB\-\-comment" " comment" 30 .BI "\-m\fP, \fB\-\-mode" " mode" 32 .BI "\-p\fP, \fB\-\-name" " name" 33 .BI "\-O\fP, \fB\-\-bldopt" " options" 35 .BI "\-e\fP, \fB\-\-entrypoint" " name" 38 .BI "\-r\fP, \fB\-\-revision" " version" [all …]
|
| /third_party/skia/m133/third_party/externals/icu/source/tools/pkgdata/ |
| D | pkgdata.1.in | 1 .\" Hey, Emacs! This is -*-nroff-*- you know... 7 .\" Copyright (C) 2000-2009 IBM, Inc. and others. 15 \- package data for use by ICU 22 .BI "\-v\fP, \fB\-\-verbose" 27 .BI "\-C\fP, \fB\-\-comment" " comment" 30 .BI "\-m\fP, \fB\-\-mode" " mode" 32 .BI "\-p\fP, \fB\-\-name" " name" 33 .BI "\-O\fP, \fB\-\-bldopt" " options" 35 .BI "\-e\fP, \fB\-\-entrypoint" " name" 38 .BI "\-r\fP, \fB\-\-revision" " version" [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/build/ |
| D | usage.sh | 2 # Copyright 2021-2022 Huawei Technologies Co., Ltd 8 # http://www.apache.org/licenses/LICENSE-2.0 17 set -e 22 …echo "bash build.sh [-d] [-r] [-v] [-c on|off] [-t ut|st] [-g on|off] [-h] [-b ge] [-m infer|train… 23 …echo " [-a on|off] [-p on|off] [-i] [-R] [-D on|off] [-j[n]] [-e gpu|ascend|d|cpu] \\" 24 …echo " [-P on|off] [-z [on|off]] [-M on|off] [-V 10.1|11.1|310|910|910b] [-I arm64|ar… 25 echo " [-B on|off] [-E] [-l on|off] [-n full|lite|off] [-H on|off] \\" 26 echo " [-A on|off] [-S on|off] [-k on|off] [-W sse|neon|avx|avx512|off] \\" 27 echo " [-L Tensor-RT path] [-y on|off] [-F on|off] [-G common|auto|ptx] [-o]\\" 30 echo " -d Debug mode" [all …]
|
| /third_party/mindspore/mindspore-src/source/include/api/ |
| D | model.h | 8 * http://www.apache.org/licenses/LICENSE-2.0 46 /// \brief Build a model from model buffer so that it can run on a device. 51 …/// ModelType::kMindIR_Lite is valid for Device-side Inference. Cloud-side Inference supports opti… 55 …/// \return Status. kSuccess: build success, kLiteModelRebuild: build model repeatedly, Other: oth… 56 Status Build(const void *model_data, size_t data_size, ModelType model_type, 59 /// \brief Load and build a model from model buffer so that it can run on a device. 63 …/// ModelType::kMindIR_Lite is valid for Device-side Inference. Cloud-side Inference supports opti… 67 …/// \return Status. kSuccess: build success, kLiteModelRebuild: build model repeatedly, Other: oth… 68 inline Status Build(const std::string &model_path, ModelType model_type, 70 /// \brief Build a model from model buffer so that it can run on a device. [all …]
|
| /third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
| D | DrawVertexAndIndexBufferOOBValidationTests.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 38 // Parameters for testing vertex-step-mode and instance-step-mode vertex buffer 46 // vertex-step-mode, and {instanceCount + firstInstance} 47 // for instance-step-mode 85 [[stage(fragment)]] fn main() -> [[location(0)]] vec4<f32> { in SetUp() 122 << R"() -> [[builtin(position)]] vec4<f32> { in CreateVertexShaderModuleWithBuffer() 169 // Create a render pipeline using only one vertex-step-mode Float32x4 buffer 180 // Create a render pipeline using one vertex-step-mode Float32x4 buffer and one 181 // instance-step-mode Float32x2 buffer 198 // Create a render pipeline using one vertex-step-mode and one instance-step-mode buffer, [all …]
|
| /third_party/curl/winbuild/ |
| D | README.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 9 This document describes how to compile, build and install curl and libcurl 10 from sources using the Visual C++ build tool. To build with VC++, you will of 16 full Visual Studio or Visual C++ if all you want is to build curl. 20 archive](https://developer.microsoft.com/en-us/windows/downloads/sdk-archive) 24 If you wish to support zlib, OpenSSL, c-ares, ssh2, you will have to download 28 |_curl-src 41 When you check out code git and build it, as opposed from a released source [all …]
|
| /third_party/ninja/misc/ |
| D | ninja-mode.el | 1 ;;; ninja-mode.el --- Major mode for editing .ninja files -*- lexical-binding: t -*- 3 ;; Package-Requires: ((emacs "24")) 11 ;; http://www.apache.org/licenses/LICENSE-2.0 21 ;; Simple emacs mode for editing .ninja files. 25 (defcustom ninja-indent-offset 2 31 (defconst ninja-keywords-re 32 (concat "^" (regexp-opt '("rule" "build" "subninja" "include" "pool" "default") 35 (defvar ninja-keywords 36 `((,ninja-keywords-re . font-lock-keyword-face) 37 ("^[[:space:]]*\\([[:alnum:]_]+\\)[[:space:]]*=" 1 font-lock-variable-name-face) [all …]
|
| /third_party/skia/m133/infra/bots/recipes/test_canvaskit.expected/ |
| D | canvaskit_trybot.json | 5 "-u", 7 "--json-output", 9 "ensure-directory", 10 "--mode", 12 "[START_DIR]/skia/modules/canvaskit/build" 34 "-u", 36 "--json-output", 38 "ensure-directory", 39 "--mode", 88 "-u", [all …]
|