| /third_party/rust/crates/syn/.github/workflows/ |
| D | ci.yml | 12 RUSTFLAGS: -Dwarnings 17 runs-on: ubuntu-latest 18 timeout-minutes: 45 20 - uses: actions/checkout@v3 21 - uses: dtolnay/rust-toolchain@nightly 23 components: rustc-dev 24 - run: cargo test --all-features --release --tests 28 runs-on: ${{matrix.os || 'ubuntu'}}-latest 30 fail-fast: false 34 - rust: nightly [all …]
|
| /third_party/rust/crates/num-traits/ci/ |
| D | test_full.sh | 3 set -e 5 CRATE=num-traits 9 local array=($(rustc --version)); 16 IFS=. read -ra rust <<< "$RUST_VERSION" 17 IFS=. read -ra want <<< "$1" 18 [[ "${rust[0]}" -gt "${want[0]}" || 19 ( "${rust[0]}" -eq "${want[0]}" && 20 "${rust[1]}" -ge "${want[1]}" ) 30 FEATURES=() 31 check_version 1.26 && FEATURES+=(i128) [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/serde/.github/workflows/ |
| D | ci.yml | 9 RUSTFLAGS: -Dwarnings 14 runs-on: ubuntu-latest 16 - uses: actions/checkout@v2 17 - uses: dtolnay/rust-toolchain@nightly 18 - run: cd test_suite && cargo test --features unstable 22 runs-on: windows-latest 24 - uses: actions/checkout@v2 25 - uses: dtolnay/rust-toolchain@nightly 26 - run: cd test_suite && cargo test --features unstable -- --skip ui --exact 30 runs-on: ubuntu-latest [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/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@v3 31 - uses: dtolnay/rust-toolchain@master 34 - run: cargo test 35 - run: cargo test --no-default-features 36 - run: cargo test --features span-locations 37 - name: RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo test [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 …]
|
| /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 libstd) 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. libstd) [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/tracing/.github/workflows/ |
| D | CI.yml | 6 - master 7 - "v0.1.x" 13 # Incremental compilation is useful as part of an edit-build-test-edit cycle, 18 # faster...but no future builds will ever occur in any given CI environment. 20 # See https://matklad.github.io/2021/09/04/fast-rust-builds.html#ci-workflow 40 runs-on: ubuntu-latest 42 - uses: actions/checkout@v3 43 - uses: actions-rs/toolchain@v1 48 - name: Check 49 uses: actions-rs/cargo@v1 [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/signal-hook/.github/workflows/ |
| D | test.yaml | 14 fail-fast: false 17 - ubuntu-latest 18 - macos-latest 19 - windows-latest 21 - stable 22 - beta 23 - nightly 25 - 1.36.0 27 - 1.40.0 29 runs-on: ${{ matrix.os }} [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/rust/crates/num-traits/.github/workflows/ |
| D | ci.yaml | 5 - staging 6 - trying 12 runs-on: ubuntu-latest 17 - name: Rust install 18 uses: actions-rs/toolchain@v1 23 - name: Checkout 25 - name: Build 26 uses: actions-rs/cargo@v1 29 - name: Test 35 runs-on: ubuntu-latest [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-2022 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/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/rust/crates/tracing/tracing/ |
| D | Cargo.toml | 4 # - Remove path dependencies 5 # - Update html_root_url. 6 # - Update doc url 7 # - Cargo.toml 8 # - README.md 9 # - Update CHANGELOG.md. 10 # - Create "v0.1.x" git tag 15 repository = "https://github.com/tokio-rs/tracing" 18 Application-level tracing for Rust. 21 "development-tools::debugging", [all …]
|
| /third_party/node/deps/acorn/acorn-walk/ |
| D | CHANGELOG.md | 1 ## 8.1.0 (2021-04-24) 3 ### New features 7 ## 8.0.2 (2021-01-25) 11 Adjust package.json to work with Node 12.16.0 and 13.0-13.6. 13 ## 8.0.0 (2021-01-05) 19 ## 8.0.0 (2020-08-12) 21 ### New features 25 ## 7.2.0 (2020-06-17) 27 ### New features 35 ## 7.1.1 (2020-02-13) [all …]
|
| /third_party/alsa-utils/alsactl/ |
| D | alsactl.1 | 3 alsactl \- advanced controls for ALSA soundcard driver 16 features that you can't seem to control from a mixer application, 23 The \fI<card>\fP argument is optional. If no soundcards are specified, 44 This command tries to initialize all devices to a default state. If device 74 .SS dump-state 78 .SS dump-cfg 86 \fI\-h, \-\-help\fP 90 \fI\-d, \-\-debug\fP 94 \fI\-v, \-\-version\fP 98 \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 …]
|