Searched +full:- +full:- +full:no +full:- +full:default +full:- +full:features (Results 1 – 25 of 1185) sorted by relevance
12345678910>>...48
| /external/rust/crates/grpcio/.github/workflows/ |
| D | ci.yml | 7 - master 8 - v0.* 10 - cron: '0 22 * * *' 14 …# Some of the bindgen tests generate "deref-nullptr" warnings, see https://github.com/rust-lang/ru… 15 RUSTFLAGS: "--deny=warnings --allow deref-nullptr" 20 Linux-Format: 21 name: Linux-Format 22 runs-on: ubuntu-latest 24 - uses: actions/checkout@v2 25 …- run: which cargo && cargo version && clang --version && openssl version && which cmake && cmake … [all …]
|
| /external/rust/crates/ahash/.github/workflows/ |
| D | rust.yml | 7 runs-on: ubuntu-latest 9 - uses: actions/checkout@v4 10 - name: Install latest stable 11 uses: dtolnay/rust-toolchain@master 15 - name: check nostd 16 run: cargo check --no-default-features 17 - name: test nostd 18 run: cargo test --no-default-features 19 - name: check constrandom 20 run: cargo check --no-default-features --features compile-time-rng [all …]
|
| /external/rust/crates/combine/ |
| D | ci.sh | 1 #!/bin/bash -x 2 set -ex 5 cargo "$@" test --all-features 6 cargo "$@" test --all-features --examples 8 cargo "$@" test --bench json --bench http -- --test 9 cargo "$@" check --bench mp4 --features mp4 11 cargo "$@" build --no-default-features --features alloc 12 cargo "$@" test --no-default-features --features alloc --examples 14 cargo "$@" build --no-default-features 15 cargo "$@" test --no-default-features --examples [all …]
|
| /external/rust/crates/flate2/.github/workflows/ |
| D | main.yml | 7 runs-on: ${{ matrix.os }} 13 - build: stable 14 os: ubuntu-latest 16 - build: beta 17 os: ubuntu-latest 19 - build: nightly 20 os: ubuntu-latest 22 - build: macos 23 os: macos-latest 25 - build: windows [all …]
|
| /external/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 components: rust-src 35 - run: cargo test 36 - run: cargo test --no-default-features 37 - run: cargo test --features span-locations [all …]
|
| /external/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 …]
|
| /external/rust/crates/base64/.circleci/ |
| D | config.yml | 7 - build: 11 …# Yes, a single-parameter axis, but means it can be referred to as a cache parameter easily without 13 … # The default rust images (not -slim or -alpine) are based on buildpack-deps. Hopefully this will 23 '1.70.0', # minimum needed to build dev-dependencies 37 - image: << parameters.rust_img >> 39 - checkout 40 - restore_cache: 41 …key: project-cache-v5-<< parameters.rust_img >>-<< parameters.toolchain_override >>-{{ checksum "C… 42 - run: 48 rustup default '<< parameters.toolchain_override >>' [all …]
|
| /external/rust/crates/byteorder/.github/workflows/ |
| D | ci.yml | 6 - master 8 - cron: '00 01 * * *' 13 # For some builds, we use cross to test on 32-bit and big-endian 16 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`. 18 runs-on: ${{ matrix.os }} 22 - pinned 23 - stable 24 - stable-32 25 - stable-mips 26 - beta [all …]
|
| /external/rust/crates/serde_json/.github/workflows/ |
| D | ci.yml | 12 RUSTFLAGS: -Dwarnings 17 runs-on: ${{matrix.os}}-latest 19 fail-fast: false 22 timeout-minutes: 45 24 - uses: actions/checkout@v3 25 - uses: dtolnay/rust-toolchain@nightly 26 - run: cargo test 27 - run: cargo test --features preserve_order --tests -- --skip ui --exact 28 - run: cargo test --features float_roundtrip --tests -- --skip ui --exact 29 - run: cargo test --features arbitrary_precision --tests -- --skip ui --exact [all …]
|
| /external/rust/crates/serde_cbor/ |
| D | .travis.yml | 3 - 1.40.0 4 - stable 5 - beta 6 - nightly 9 - rust: nightly 12 - rustup component add rustfmt 13 …- rustup target add thumbv7em-none-eabihf # Any target that does not have a standard library w… 15 - cargo fmt --all -- --check 16 - (rustup component add clippy && cargo clippy --all -- -D clippy::all) || true 17 - cargo build [all …]
|
| /external/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.orig | 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 …]
|
| /external/rust/crates/itertools/.github/workflows/ |
| D | ci.yml | 7 - staging 8 - trying 13 runs-on: ubuntu-latest 15 - uses: actions/checkout@v2 16 - uses: dtolnay/rust-toolchain@1.36.0 17 - run: cargo check --no-default-features 18 - run: cargo check --no-default-features --features "use_alloc" 19 - run: cargo check 23 runs-on: ubuntu-latest 25 - uses: actions/checkout@v2 [all …]
|
| /external/rust/crates/chrono/.github/workflows/ |
| D | test.yml | 4 # It's really `--all-features`, but not adding the mutually exclusive features from rkyv 5 …ALL_NON_EXCLUSIVE_FEATURES: --features "default unstable-locales rkyv-32 rkyv-validation rustc-ser… 16 os: [ubuntu-latest, macos-latest, windows-latest] 17 tz: ["ACST-9:30", "EST4", "UTC0", "Asia/Katmandu"] 18 runs-on: ${{ matrix.os }} 20 - uses: actions/checkout@v4 21 - uses: dtolnay/rust-toolchain@stable 22 - uses: Swatinem/rust-cache@v2 23 - run: cargo test ${{ env.ALL_NON_EXCLUSIVE_FEATURES }} --color=always -- --color=always 31 os: [ubuntu-latest] [all …]
|
| /external/rust/crates/rand/ |
| D | Cargo.toml.orig | 5 license = "MIT OR Apache-2.0" 7 repository = "https://github.com/rust-random/rand" 9 homepage = "https://rust-random.github.io/book" 14 categories = ["algorithms", "no-std"] 17 include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"] 21 # RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open 22 all-features = true 23 rustdoc-args = ["--cfg", "doc_cfg"] 26 features = ["small_rng", "serde1"] 28 [features] [all …]
|
| /external/rust/crates/criterion/.github/workflows/ |
| D | ci.yaml | 4 - master 7 - master 8 - version-0.4 14 runs-on: ubuntu-latest 18 - stable 19 - beta 20 - 1.57 # MSRV 23 - uses: actions/checkout@v2 25 - uses: actions-rs/toolchain@v1 33 - uses: Swatinem/rust-cache@v1 [all …]
|
| /external/sdv/vsomeip/third_party/boost/thread/doc/ |
| D | configuration.qbk | 2 (C) Copyright 2012-2015 Vicente J. Botet Escriba. 12 [table Default Values for Configurable Features 13 [[Feature] [Anti-Feature] [V2] [V3] [V4] [V5] ] 14 [[USES_CHRONO] [DONT_USE_CHRONO] [YES/NO] [YES/NO] [YES/NO] [YES/NO] ] 16 [[THROW_IF_PRECONDITION_NOT_SATISFIED] [-] [NO] [NO] [NO] [NO] ] 20 [[PROVIDES_PROMISE_LAZY] [DONT_PROVIDE_PROMISE_LAZY] [YES] [NO] [NO] [NO] ] 22 [[PROVIDES_BASIC_THREAD_ID] [DONT_PROVIDE_BASIC_THREAD_ID] [NO] [YES] [YES] [YES] ] 23 …[[PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN] [DONT_PROVIDE_GENERIC_SHARED_MUTEX_ON_WIN] [NO] [YES] [… 25 …EX_UPWARDS_CONVERSION] [DONT_PROVIDE_SHARED_MUTEX_UPWARDS_CONVERSION] [NO] [YES] [YES] [YES] ] 26 [[PROVIDES_EXECUTORS] [-] [NO] [NO] [NO] [YES] ] [all …]
|
| /external/rust/crates/indexmap/ |
| D | Cargo.toml.orig | 7 license = "Apache-2.0 OR MIT" 10 categories = ["data-structures", "no-std"] 11 rust-version = "1.56" 16 [build-dependencies] 20 arbitrary = { version = "1.0", optional = true, default-features = false } 21 quickcheck = { version = "1.0", optional = true, default-features = false } 22 serde = { version = "1.0", optional = true, default-features = false } 27 rustc-rayon = { version = "0.4", optional = true } 31 default-features = false 32 features = ["raw"] [all …]
|
| D | Cargo.toml | 14 rust-version = "1.56" 25 "data-structures", 26 "no-std", 28 license = "Apache-2.0 OR MIT" 32 no-dev-version = true 33 tag-name = "{{version}}" 36 features = [ 39 "serde-1", 52 default-features = false 56 features = ["raw"] [all …]
|
| /external/rust/crates/half/ |
| D | Makefile.toml | 5 CI_CARGO_TEST_FLAGS = { value = "--locked -- --nocapture", condition = { env_true = [ 8 …ST_CHANNEL}", default_value = "--features=std,serde,num-traits,bytemuck,zerocopy", mapping = { "ni… 17 "@@remove-empty(CARGO_MAKE_CARGO_VERBOSE_FLAGS)", 22 # Let clippy run on non-nightly CI 23 [tasks.clippy-ci-flow] 26 # Let format check run on non-nightly CI 27 [tasks.check-format-ci-flow] 30 [tasks.check-docs] 34 env = { RUSTDOCFLAGS = "-D warnings" } 38 "--workspace", [all …]
|
| /external/rust/crates/downcast-rs/.github/workflows/ |
| D | main.yml | 7 runs-on: ubuntu-latest 9 - uses: actions/checkout@v2 10 - uses: actions-rs/toolchain@v1 15 - name: Build 16 uses: actions-rs/cargo@v1 19 - name: Test 20 uses: actions-rs/cargo@v1 23 - name: Clippy 24 uses: actions-rs/cargo@v1 27 - name: Docs [all …]
|
| /external/rust/crates/bytemuck/.github/workflows/ |
| D | rust.yml | 13 runs-on: ${{ matrix.os }} 17 # our `--feature` config here, but doing so will be very slow, as the 20 # versions (all on linux-x86_64) 21 - { rust: 1.34.0, os: ubuntu-latest } 22 - { rust: stable, os: ubuntu-latest } 23 - { rust: beta, os: ubuntu-latest } 24 - { rust: nightly, os: ubuntu-latest } 25 # non-linux platforms (ones which don't require `cross`) 26 - { rust: stable, os: macos-latest } 27 - { rust: stable, os: windows-latest } [all …]
|
| /external/crosvm/tools/ |
| D | presubmit | 3 # Use of this source code is governed by a BSD-style license that can be 23 black = cmd("black").with_color_arg(always="--color", never="--no-color") 35 installed_toolchains = cmd("rustup target list --installed").lines() 56 return [python.with_cwd(TOOLS_ROOT).with_args("-m", file) for file in PYTHON_TESTS] 61 return [mypy("--pretty", file) for file in context.all_files] 67 "--check" if not context.fix else None, 74 if "blaze" in mdformat("--version").stdout(): 80 "--wrap 100", 81 "--check" if not context.fix else "", 89 …long arguments: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processth… [all …]
|
| /external/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 …]
|
| /external/rust/crates/errno/.github/workflows/ |
| D | main.yml | 4 - main 7 - cron: '5 21 * * 5' 15 runs-on: ${{ matrix.os }} 18 os: [ubuntu-latest, macos-latest, windows-latest] 21 - name: Checkout repository 23 - name: Install toolchain 24 uses: dtolnay/rust-toolchain@master 27 - name: Setup cache 28 uses: Swatinem/rust-cache@v2 29 - name: Test (no features) [all …]
|
12345678910>>...48