Searched +full:- +full:- +full:no +full:- +full:default +full:- +full:features (Results 1 – 25 of 1066) sorted by relevance
12345678910>>...43
| /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/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/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/openhitls/docs/en/4_User Guide/ |
| D | 4_Configuration guide.md | 3 openHiTLS has a highly modular architecture, with RAM/ROM size depending on the selected features a… 6 …features of openHiTLS. It serves both as a comprehensive, full-featured configuration file and as … 13 "features":{ // Feature definition 14 "c":{ // C language implementation features 16 "sha1": null, // md sub-feature 17 "sha2": { // md sub-feature 18 "sha224": null, // sha2 sub-feature 19 "sha256": null, // sha2 sub-feature 25 "deps": ["sha256", "pbkdf2"] // Features required by scrypt 28 "deps": ["hmac"] // Features required by kdf, inherited by kdf sub-features [all …]
|
| /third_party/rust/rust/library/portable-simd/.github/workflows/ |
| D | ci.yml | 7 - master 16 runs-on: ubuntu-latest 19 - uses: actions/checkout@v2 20 - name: Setup Rust 22 rustup update nightly --no-self-update 23 rustup default nightly 25 - name: Run rustfmt 26 run: cargo fmt --all -- --check 30 runs-on: ubuntu-latest 32 fail-fast: false [all …]
|
| /third_party/rust/crates/unicode-width/.github/workflows/ |
| D | rust.yml | 13 RUSTFLAGS: -D warnings 14 RUSTDOCFLAGS: -D warnings 18 runs-on: ubuntu-latest 20 - uses: actions/checkout@v4 21 - name: Build 22 run: cargo build --verbose 23 - name: Run tests 24 run: cargo test --verbose 25 - name: Build docs 27 - name: Check formatting [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/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/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/protobuf/docs/design/editions/ |
| D | edition-zero-features.md | 1 # Edition Zero Features 5 [@mkruskal-google](https://github.com/mkruskal-google) 7 **Approved:** 2022-07-22 13 [Feature Settings for Editions](https://protobuf.dev/editions/features) (to be 18 *Edition Zero Features* defines the "first edition" of the brave new world of 19 no-`syntax` Protobuf. This document defines the actual mechanics of the features 31 appropriate application of features. 33 ## Existing Non-Conformance 38 the only way for a proto2/proto3 -> editions LSC to be a no-op. 40 For example, in this document we define a feature `features.enum = [all …]
|
| D | life-of-an-edition.md | 5 How to use Protobuf Editions to construct a large-scale change that modifies the 11 editions, themselves, and [features](protobuf-editions-design-features.md)) for 12 designing migrations and large-scale changes intended to solve a particular kind 17 * How features are added to the language. 19 * How to build different kinds of large-scale changes. 20 * Tooling in `protoc` to support large-scale changes. 23 ## Defining Features 25 There are two kinds of features: 27 * Global features, which are the fields of `proto.Features`. In this document, 28 we refer to them as `features.<name>`, e.g. `features.enum`. [all …]
|
| D | editions-life-of-a-featureset.md | 3 **Author:** [@mkruskal-google](https://github.com/mkruskal-google) 5 **Approved:** 2023-08-17 9 Outside of some minor spelling tweaks, our current implementation of features 11 [Protobuf Editions Design: Features](protobuf-editions-design-features.md). This 13 though, and it's left under-specified who is responsible for generating these 24 resolved runtime features to the runtime. This had the added benefit that we 25 could treat our C++ feature resolution logic as a source-of-truth and didn't 29 follow-up attempt to specifically handle the default feature sets of an edition. 30 We had realized that we would need proto2/proto3 default features in each 33 was that we should continue using the protoc frontend as the source-of-truth, [all …]
|
| D | edition-lifetimes.md | 3 Now that Edition Zero is complete, we need to re-evaluate what the lifetimes of 4 features and editions look like going forward. 9 [Protobuf Editions Design: Features](protobuf-editions-design-features.md) and 10 [Life of an Edition](life-of-an-edition.md) (among other less-relevant docs). 12 editions and features. Many of the ideas around editions have since been 13 simplified in [Edition Naming](edition-naming.md), where we opted for a stricter 16 may need to re-evaluate the feature lifetimes as well. 19 to *Life of an Edition*, which tries to put tighter constraints on how features 25 Today, features and editions are largely disconnected from each other. We have a 26 set of features that govern various behaviors, and they can all be used in any [all …]
|
| /third_party/rust/rust/library/std/ |
| D | Cargo.toml | 1 cargo-features = ["public-dependency"] 6 license = "MIT OR Apache-2.0" 7 repository = "https://github.com/rust-lang/rust.git" 12 crate-type = ["dylib", "rlib"] 16 cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] } 20 libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = t… 24 hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] } 25 …detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep… 28 addr2line = { version = "0.21.0", optional = true, default-features = false } 29 rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] } [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/rust/rust/src/tools/miri/ |
| D | Cargo.toml | 4 license = "MIT OR Apache-2.0" 6 repository = "https://github.com/rust-lang/miri" 8 default-run = "miri" 13 doctest = false # but no doc tests 17 test = false # we have no unit tests 18 doctest = false # and no doc tests 21 getrandom = { version = "0.2", features = ["std"] } 37 [dev-dependencies] 41 # Features chosen to match those required by env_logger, to avoid rebuilds 42 regex = { version = "1.5.5", default-features = false, features = ["perf", "std"] } [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/rust/compiler/rustc_codegen_cranelift/build_system/ |
| D | usage.txt | 4 ./y.sh prepare [--out-dir DIR] [--download-dir DIR] 5 …./y.sh build [--debug] [--sysroot none|clif|llvm] [--out-dir DIR] [--download-dir DIR] [--no-unsta… 6 …./y.sh test [--debug] [--sysroot none|clif|llvm] [--out-dir DIR] [--download-dir DIR] [--no-unstab… 7 …./y.sh abi-cafe [--debug] [--sysroot none|clif|llvm] [--out-dir DIR] [--download-dir DIR] [--no-un… 8 …./y.sh bench [--debug] [--sysroot none|clif|llvm] [--out-dir DIR] [--download-dir DIR] [--no-unsta… 11 --debug 15 --sysroot none|clif|llvm 19 `llvm` will use the pre-compiled standard library of rustc which is compiled with LLVM. 21 --out-dir DIR 23 By default this is the working directory. [all …]
|
| /third_party/protobuf/docs/design/prototiller/ |
| D | editions-tooling.md | 5 **Approved:** 2022-08-09 9 [Protobuf Editions](../editions/what-are-protobuf-editions.md) aims to introduce 13 permit everything that proto2 and proto3 permitted: any non-editions file can 17 fully automate major steps in editions-related upgrade operations, for both large-scale changes 20 * Non-automated large-scale change work in the editions space can be constrained to fixing 21 uses of generated code and flipping features on specific fields (or other 29 definition of an edition to work (see below), it seems to more-or-less place a 34 1. The "features janitor". This is a mode of `protoc` which consumes a `.proto` 36 features such that the resulting janitor'ed file has fewer explicit 37 features, but is not semantically different. [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/bindgen/bindgen/ |
| D | Cargo.toml | 3 "Jyun-Yan You <jyyou.tw@gmail.com>", 9 keywords = ["bindings", "ffi", "code-generation"] 10 categories = ["external-ffi-bindings", "development-tools::ffi"] 11 license = "BSD-3-Clause" 14 repository = "https://github.com/rust-lang/rust-bindgen" 16 homepage = "https://rust-lang.github.io/rust-bindgen/" 21 rust-version = "1.70.0" 28 annotate-snippets = { version = "0.9.1", features = ["color"], optional = true } 31 clang-sys = { version = "1", features = ["clang_6_0"] } 32 itertools = { version = ">=0.10,<0.14", default-features = false } [all …]
|
12345678910>>...43