| /third_party/rust/crates/syn/.github/workflows/ |
| D | ci.yml | 13 RUSTFLAGS: -Dwarnings 23 runs-on: ubuntu-latest 24 timeout-minutes: 45 26 - uses: actions/checkout@v4 27 - uses: dtolnay/rust-toolchain@nightly 29 components: llvm-tools, rustc-dev 30 - run: cargo test --all-features --release --tests 36 runs-on: ${{matrix.os || 'ubuntu'}}-latest 38 fail-fast: false 42 - rust: nightly [all …]
|
| /third_party/rust/crates/log/.github/workflows/ |
| D | main.yml | 7 runs-on: ${{ matrix.os }} 12 - build: stable 13 os: ubuntu-latest 15 - build: beta 16 os: ubuntu-latest 18 - build: nightly 19 os: ubuntu-latest 21 - build: macos 22 os: macos-latest 24 - build: win32 [all …]
|
| /third_party/rust/crates/proc-macro2/.github/workflows/ |
| D | ci.yml | 13 RUSTFLAGS: -Dwarnings 23 runs-on: ubuntu-latest 25 fail-fast: false 28 timeout-minutes: 45 30 - uses: actions/checkout@v4 31 - uses: dtolnay/rust-toolchain@master 34 components: rust-src 35 - run: cargo test 36 - run: cargo test --no-default-features 37 - run: cargo test --features span-locations [all …]
|
| /third_party/rust/crates/serde/.github/workflows/ |
| D | ci.yml | 13 RUSTFLAGS: -Dwarnings 18 runs-on: ubuntu-latest 19 timeout-minutes: 45 21 - uses: actions/checkout@v4 22 - uses: dtolnay/rust-toolchain@nightly 23 - run: cd test_suite && cargo test --features unstable 27 runs-on: windows-latest 28 timeout-minutes: 45 30 - uses: actions/checkout@v4 31 - uses: dtolnay/rust-toolchain@nightly [all …]
|
| /third_party/rust/crates/nom/.github/workflows/ |
| D | ci.yml | 13 runs-on: ubuntu-latest 18 - stable 19 - beta 20 - nightly 21 - 1.48.0 23 features: 24 - '' 27 - rust: stable 28 features: '' 29 - rust: stable [all …]
|
| /third_party/rust/crates/clap/ |
| D | Makefile | 4 # - Easy to debug: show the command being run 5 # - Leverage CI features: Only run individual steps so we can use features like reporting elapsed t… 7 ARGS?=--workspace 10 ARGS+=--target ${TOOLCHAIN_TARGET} 15 _FEATURES = minimal default wasm full debug release 16 _FEATURES_minimal = --no-default-features --features "std" 18 …asm = --no-default-features --features "std help usage error-context suggestions" --features "depr… 19 _FEATURES_full = --features "deprecated derive cargo env unicode string unstable-replace wrap_help" 20 _FEATURES_next = ${_FEATURES_full} --features unstable-v5 21 _FEATURES_debug = ${_FEATURES_full} --features debug --features clap_complete/debug [all …]
|
| D | deny.toml | 6 # http://www.apache.org/licenses/LICENSE-2.0 15 # * deny - An error will be produced and the check will fail 16 # * warn - A warning will be produced, but the check will not fail 17 # * allow - No warning or error will be produced, though in some cases a note 22 # https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html 31 # 2019-12-17 there are no security notice advisories in 32 # https://github.com/rustsec/advisory-db 37 # e.g. "RUSTSEC-0000-0000", 43 # https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html 51 "Apache-2.0", [all …]
|
| /third_party/rust/crates/libc/ci/ |
| D | build.sh | 8 set -ex 18 rustup component add rust-src 32 until [ $n -ge $N ] 34 if rustup target add "${TARGET}" --toolchain "${RUST}" ; then 42 # Test that libc builds without any default features (no std) 44 cargo "+${RUST}" "${BUILD_CMD}" -vv --no-default-features --target "${TARGET}" 46 # FIXME: With `build-std` feature, `compiler_builtins` emits a lof of lint warnings. 47 RUSTFLAGS="-A improper_ctypes_definitions" cargo "+${RUST}" "${BUILD_CMD}" \ 48 -Z build-std=core,alloc -vv --no-default-features --target "${TARGET}" 50 # Test that libc builds with default features (e.g. std) [all …]
|
| /third_party/rust/crates/regex/ |
| D | test | 3 set -e 6 # features. We don't test the complete space, since the complete space is quite 8 # (like regex-automata), we'll be able to test more of the space. 9 echo "===== DEFAULT FEATURES ===" 13 cargo test --doc 15 features=( 18 "std unicode-perl" 20 "std perf-cache" 21 "std perf-dfa" 22 "std perf-inline" [all …]
|
| D | Cargo.toml | 5 license = "MIT OR Apache-2.0" 7 repository = "https://github.com/rust-lang/regex" 9 homepage = "https://github.com/rust-lang/regex" 14 categories = ["text-processing"] 21 "bench", "regex-capi", "regex-debug", "regex-syntax", 25 # There are no benchmarks in the library code itself 27 # Doc tests fail when some features aren't present. The easiest way to work 29 # with `cargo test --doc`. 32 # Features are documented in the "Crate features" section of the crate docs: 33 # https://docs.rs/regex/*/#crate-features [all …]
|
| /third_party/rust/crates/once_cell/xtask/src/ |
| D | main.rs | 10 fn main() -> xshell::Result<()> { in main() 18 cmd!(sh, "cargo test --workspace --no-run").run()?; in main() 24 for &release in &[None, Some("--release")] { in main() 25 cmd!(sh, "cargo test --features unstable {release...}").run()?; in main() 28 "cargo test --no-default-features --features unstable,std,parking_lot {release...}" in main() 34 cmd!(sh, "cargo test --no-default-features --features unstable --test it").run()?; in main() 35 cmd!(sh, "cargo test --no-default-features --features unstable,alloc --test it").run()?; in main() 37 cmd!(sh, "cargo test --no-default-features --features critical-section").run()?; in main() 38 cmd!(sh, "cargo test --features critical-section").run()?; in main() 44 cmd!(sh, "cargo test --features unstable").run()?; in main() [all …]
|
| /third_party/rust/crates/linux-raw-sys/.github/workflows/ |
| D | main.yml | 6 - main 12 runs-on: ubuntu-latest 18 RUSTFLAGS: -D warnings 20 - uses: actions/checkout@v3 21 - run: | 24 rustup default ${{ matrix.rust }} 26 cargo check --features "netlink" 27 cargo check --no-default-features --features "std netlink" 28 cargo check --no-default-features --features "no_std netlink" 29 cargo check --no-default-features --features "no_std general errno" [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| D | CommandFlags.inc | 1 //===-- CommandFlags.h - Command Line Flags Interface -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file contains codegen-specific flags that are shared between different 13 //===----------------------------------------------------------------------===// 31 cl::desc("Architecture to generate code for (see --version)")); 35 cl::desc("Target a specific cpu type (-mcpu=help for details)"), 36 cl::value_desc("cpu-name"), cl::init("")); 40 cl::desc("Target specific attributes (-mattr=help for details)"), 41 cl::value_desc("a1,+a2,-a3,...")); [all …]
|
| /third_party/rust/crates/minimal-lexical/ci/ |
| D | test.sh | 3 set -ex 10 cargo --version 12 # Force default tests to disable default feature on NO_STD. 13 if [ ! -z $NO_STD ]; then 14 DEFAULT_FEATURES="--no-default-features" 15 DOCTESTS="--tests" 19 FEATURES=( 26 if [ ! -z $NO_FEATURES ]; then 31 for features in "${FEATURES[@]}"; do 32 check_features="$DEFAULT_FEATURES --features=$features" [all …]
|
| /third_party/rust/crates/minimal-lexical/scripts/ |
| D | timings.py | 6 Plot the timings from building minimal-lexical. 26 parser = argparse.ArgumentParser(description='Time building minimal-lexical.') 28 '--features', 29 help='''optional features to add''', 30 default='', 33 '--no-default-features', 34 help='''disable default features''', 53 command = 'cargo +nightly build -Z timings=json' 55 command = f'{command} --no-default-features' 56 if args.features: [all …]
|
| /third_party/vixl/src/aarch64/ |
| D | cpu-features-auditor-aarch64.cc | 19 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 27 #include "cpu-features-auditor-aarch64.h" 29 #include "cpu-features.h" 30 #include "globals-vixl.h" 31 #include "utils-vixl.h" 33 #include "decoder-aarch64.h" 80 auditor_->last_instruction_ = CPUFeatures::None(); in RecordInstructionFeaturesScope() 83 auditor_->seen_.Combine(auditor_->last_instruction_); in ~RecordInstructionFeaturesScope() 86 void Record(const CPUFeatures& features) { in Record() argument 87 auditor_->last_instruction_.Combine(features); in Record() [all …]
|
| /third_party/rust/crates/env_logger/ci/src/ |
| D | task.rs | 7 pub features: BTreeSet<Feature>, field 12 impl Default for TestArgs { 13 fn default() -> Self { in default() method 15 features: BTreeSet::new(), in default() 23 fn features_string(&self) -> Option<String> { in features_string() 24 if self.features.is_empty() { in features_string() 28 let s = self.features.iter().fold(String::new(), |mut s, f| { in features_string() 41 pub fn test(args: TestArgs) -> bool { in test() 42 let features = args.features_string(); in test() localVariable 50 .arg("--verbose"); in test() [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/chapters/ |
| D | VK_EXT_validation_features.txt | 1 // Copyright 2018-2021 The Khronos Group, Inc. 3 // SPDX-License-Identifier: CC-BY-4.0 5 [open,refpage='VkValidationFeaturesEXT',desc='Specify validation features to enable or disable for … 6 -- 8 specific validation features, add a slink:VkValidationFeaturesEXT structure 10 specifying the features to be enabled or disabled. 17 * pname:enabledValidationFeatureCount is the number of features to enable. 20 features to be enabled. 21 * pname:disabledValidationFeatureCount is the number of features to 25 features to be disabled. [all …]
|
| D | VK_EXT_validation_features.adoc | 1 // Copyright 2018-2024 The Khronos Group Inc. 3 // SPDX-License-Identifier: CC-BY-4.0 5 [open,refpage='VkValidationFeaturesEXT',desc='Specify validation features to enable or disable for … 6 -- 8 specific validation features, add a slink:VkValidationFeaturesEXT structure 10 specifying the features to be enabled or disabled. 17 * pname:enabledValidationFeatureCount is the number of features to enable. 20 features to be enabled. 21 * pname:disabledValidationFeatureCount is the number of features to 25 features to be disabled. [all …]
|
| /third_party/musl/ |
| D | WHATSNEW | 1 0.5.0 - initial release 5 0.5.9 - signal ABI bugfix, various cleanup and fixes: 17 with the default settings on i386 was not reordering them). 25 many internal improvements have been made to the syscall-related code 30 0.6.0 - x86_64 port, various important bugs fixed 48 0.7.0 - major improvements to posix conformance and completeness 61 malloc(0) now returns a non-null pointer. 64 hanging), and non-default-type mutex behavior. 67 libgcc with dwarf2 unwind support, and possibly other low-level tools. 69 improved musl-gcc compiler wrapper. [all …]
|
| /third_party/alsa-utils/alsactl/ |
| D | alsactl.1 | 3 alsactl \- advanced controls for ALSA soundcard driver 18 features that you can't seem to control from a mixer application, 25 The \fI<card>\fP argument is optional. If no soundcards are specified, 46 This command tries to initialize all devices to a default state. If device 81 .SS dump-state 85 .SS dump-cfg 93 \fI\-h, \-\-help\fP 97 \fI\-d, \-\-debug\fP 101 \fI\-v, \-\-version\fP 105 \fI\-f, \-\-file\fP [all …]
|
| /third_party/rust/crates/regex/regex-syntax/ |
| D | test | 3 set -e 6 echo "===== DEFAULT FEATURES ===" 9 features=( 11 unicode-age 12 unicode-bool 13 unicode-case 14 unicode-gencat 15 unicode-perl 16 unicode-script 17 unicode-segment [all …]
|
| /third_party/curl/docs/libcurl/ |
| D | curl_version_info.md | 1 --- 3 SPDX-License-Identifier: curl 7 See-also: 8 - curl_version (3) 10 - All 11 --- 15 curl_version_info - returns runtime libcurl version info 28 features in the running version of libcurl. *age* should be set to the 37 or not, instead of using compile-time checks, as dynamic/DLL libraries can be 41 curl_global_init(3) has not been called. It is therefore not thread-safe [all …]
|
| /third_party/rust/crates/bindgen/ci/ |
| D | test.sh | 3 set -e 5 set -u 7 set -x 8 # Give a pipeline a non-zero exit code if one of its constituents fails 9 set -o pipefail 12 echo "x86_64-linux-gnu-ubuntu-16.04" 17 [0-8].* | 9.0.0) echo "x86_64-darwin-apple" ;; 19 *) echo "x86_64-apple-darwin" ;; 26 # By default, take the .0 patch release 35 [0-8].* | 9.0.0) [all …]
|
| /third_party/rust/crates/memchr/.github/workflows/ |
| D | ci.yml | 5 - master 8 - master 10 - cron: '00 01 * * *' 15 # For some builds, we use cross to test on 32-bit and big-endian 18 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`. 22 runs-on: ${{ matrix.os }} 26 - pinned 27 - stable 28 - stable-32 29 - stable-mips [all …]
|