Searched +full:- +full:- +full:all +full:- +full:features (Results 1 – 25 of 1091) sorted by relevance
12345678910>>...44
| /third_party/rust/crates/rustix/.github/workflows/ |
| D | main.yml | 6 - main 13 runs-on: ubuntu-latest 15 - uses: actions/checkout@v3 18 - uses: ./.github/actions/install-rust 21 - run: cargo fmt --all -- --check 25 runs-on: ${{ matrix.os }} 30 - build: stable 31 os: ubuntu-latest 33 - build: nightly 34 os: ubuntu-latest [all …]
|
| /third_party/protobuf/docs/design/editions/ |
| 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 22 protoc frontend would be able to calculate all the feature sets and then 23 propagate all four sets to the generators, who would then forward the fully 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. [all …]
|
| D | editions-feature-extension-layout.md | 3 **Author:** [@mkruskal-google](https://github.com/mkruskal-google), 6 **Approved:** 2023-08-23 10 "[What are Protobuf Editions](what-are-protobuf-editions.md)" lays out a plan 11 for allowing for more targeted features not owned by the protobuf team. It uses 12 extensions of the global features proto to implement this. One thing that was 14 generator, and runtime implementations are all similar but not identical 19 "[Editions Zero: utf8_validation Without Problematic Options](editions-zero-utf8_validation.md)" 20 is) is a recent plan to add a new set of generator features for utf8 validation. 23 the current behaviors across proto2/proto3 are distinct for all 3 29 plan was to make feature extensions runtime implementation-specific (e.g. C++, [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 …]
|
| 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 | protobuf-editions-design-features.md | 1 # Protobuf Editions Design: Features 6 **Approved:** 2022-10-13 9 features. 13 The [Protobuf Editions](what-are-protobuf-editions.md) project uses "editions" 15 "features" with a default value per feature. The set of features or a default 17 Features define the specific points of change and evolution on a per entity 23 [custom options](https://protobuf.dev/programming-guides/proto2#customoptions) 29 Here is a small sample usage of features to give a flavor for how it looks 38 option features.repeated_field_encoding = EXPANDED; 39 option features.enum = OPEN; [all …]
|
| D | editions-feature-visibility.md | 3 **Authors:** [@mkruskal-google](https://github.com/mkruskal-google) 5 **Approved:** 2023-09-08 9 While [Editions: Life of a FeatureSet](editions-life-of-a-featureset.md) handles 10 how we propagate features *to* runtimes, what's left under-specified is how the 11 runtimes should expose features to their users. *Exposing Editions Feature Sets* 14 This is a much more targeted document laying out how features should be treated 21 1. **Direct access to resolved features protos** - While runtime decisions 22 *should* be made based on the data in these protos, their struct-like nature 27 difficult to guarantee that complex relationships between features and other 30 2. **Accidental use of unresolved features** - Unresolved features represent a [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/rustix/ |
| D | Cargo.toml | 8 description = "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls" 10 license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" 14 categories = ["os::unix-apis", "date-and-time", "filesystem", "network-programming"] 16 rust-version = "1.48" 18 [build-dependencies] 23 itoa = { version = "1.0.1", default-features = false, optional = true } 24 io-lifetimes = { version = "1.0.0", default-features = false, features = ["close"], optional = true… 26 # Special dependencies used in rustc-dep-of-std mode. 27 core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" } 28 alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" } [all …]
|
| D | CONTRIBUTING.md | 8 To keep compile times low, most features in rustix's API are behind cargo 9 features. A special feature, `all-apis` enables all APIs, which is useful 13 cargo test --features=all-apis 18 enable the `use-libc` feature: 21 cargo test --features=all-apis,use-libc 26 getting all the `cfg`s lined up to get everything compiling on all the
|
| /third_party/skia/third_party/externals/angle2/scripts/ |
| D | vk_mandatory_format_support_capture_to_json.js | 2 * Copyright 2018 The ANGLE Project Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style license that can be 6 * Instructions: Copy all the tables from the HTML source to a plain document 17 // Map all features to indexes of squares. 18 $("#features-formats-mandatory-features-subbyte td").each(function() { 22 indexToFeatureMap[index--] = $(this).text(); 28 ["features-formats-mandatory-features-subbyte", 29 "features-formats-mandatory-features-2byte", 30 "features-formats-mandatory-features-4byte", 31 "features-formats-mandatory-features-10bit", [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} 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 22 _FEATURES_release = ${_FEATURES_full} --release [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/rust/src/tools/clippy/tests/ui/ |
| D | cfg_features.stderr | 1 error: feature may misspelled as features 2 --> $DIR/cfg_features.rs:4:11 4 LL | #[cfg(features = "not-really-a-feature")] 5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `feature = "not-really-a-feature"` 7 = note: `-D clippy::maybe-misused-cfg` implied by `-D warnings` 9 error: feature may misspelled as features 10 --> $DIR/cfg_features.rs:7:34 12 LL | #[cfg(all(feature = "right", features = "wrong"))] 15 error: feature may misspelled as features 16 --> $DIR/cfg_features.rs:10:15 [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
| D | versions.adoc | 1 // Copyright 2015-2024 The Khronos Group Inc. 3 // SPDX-License-Identifier: CC-BY-4.0 14 <<extendingvulkan-compatibility-promotion,promoted>> from extensions. 26 [[versions-1.3]] 30 // is a refpage-specific alternate form of the section. 32 [open,refpage='VK_VERSION_1_3',desc='Vulkan version 1.3',type='feature',anchor='versions-1.3',xrefs… 33 -- 34 Vulkan Version 1.3 <<extendingvulkan-compatibility-promotion,promoted>> a 39 All differences in behavior between these extensions and the corresponding 40 Vulkan 1.3 functionality are summarized in the <<versions-1.3-promotions, [all …]
|
| D | versions.txt | 1 // Copyright 2015-2021 The Khronos Group, Inc. 3 // SPDX-License-Identifier: CC-BY-4.0 14 <<extendingvulkan-compatibility-promotion,promoted>> from extensions. 24 [[versions-1.2]] 28 // is a refpage-specific alternate form of the section. 30 [open,refpage='VK_VERSION_1_2',desc='Vulkan version 1.2',type='feature',anchor='versions-1.2',xrefs… 31 -- 32 Vulkan Version 1.2 <<extendingvulkan-compatibility-promotion,promoted>> a 37 All differences in behavior between these extensions and the corresponding 38 Vulkan 1.2 functionality are summarized in the <<versions-1.2-promotions, [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/regex/ |
| 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" 12 finite automata and guarantees linear time matching on all inputs. 14 categories = ["text-processing"] 21 "bench", "regex-capi", "regex-debug", "regex-syntax", 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/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 25 - name: Run rustfmt 26 run: cargo fmt --all -- --check 30 runs-on: ubuntu-latest 32 fail-fast: false 35 … # We shouldn't really have any OS-specific code, so think of this as a list of architectures [all …]
|
| /third_party/rust/crates/minimal-lexical/docs/ |
| D | Development.md | 13 … made **public** to separate the tests from the implementation, although non-documented members is… 24 - Clippy 25 - Rustfmt 26 - Miri 27 - Valgrind 28 - Tarpaulin 29 - Fuzz 30 - Count 39 cargo +nightly install cargo-valgrind 40 cargo +nightly install cargo-tarpaulin [all …]
|
| /third_party/rust/crates/syn/tests/features/ |
| D | lib.rs | 3 NOTE: use --release 5 and test case in the rust-lang/rust repo, which can be pretty 6 slow in debug mode. Consider running cargo test with `--release` 10 #[cfg(not(feature = "all-features"))] 12 ERROR: use --all-features 13 Syn's test suite normally only works with all-features enabled. 14 Run again with `--all-features`, or run with `--features test`
|
| /third_party/rust/rust/src/tools/tidy/src/ |
| D | unstable_book.rs | 1 use crate::features::{CollectedFeatures, Features, Status}; 6 pub const PATH_STR: &str = "doc/unstable-book"; 8 pub const COMPILER_FLAGS_DIR: &str = "src/compiler-flags"; 10 pub const LANG_FEATURES_DIR: &str = "src/language-features"; 12 pub const LIB_FEATURES_DIR: &str = "src/library-features"; 15 pub fn unstable_book_path(base_src_path: &Path) -> PathBuf { in unstable_book_path() 19 /// Builds the path to the directory where the features are documented within the Unstable Book 21 pub fn unstable_book_lang_features_path(base_src_path: &Path) -> PathBuf { in unstable_book_lang_features_path() 25 /// Builds the path to the directory where the features are documented within the Unstable Book 27 pub fn unstable_book_lib_features_path(base_src_path: &Path) -> PathBuf { in unstable_book_lib_features_path() [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/scripts/src/extensions/ |
| D | schema.json | 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 9 …: "This section must be present for all KHR extensions, for all extensions that were promoted to t… 22 "pattern": "^$|^[1-9]\\.[0-9]\\.[0-9]\\.[0-9]$" 31 …"description": "When this section is present it specifies mandatory features for extension or vulk… 34 "^VkPhysicalDevice[1-9A-Za-z]*Features(EXT|KHR|VALVE)?$": 37 "description": "List of mandatory features in given feature structure.", 44 "features": object 47 …"description": "List of structure attributes - at least one of them must be supported when require… 57 …"description": "List of requirements (other features, extensions, vulkan version). This list can b… 66 "description": "When this section is present it specifies mandatory features variant.", [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/io-lifetimes/.github/workflows/ |
| D | main.yml | 6 - main 12 runs-on: ubuntu-latest 14 - uses: actions/checkout@v3 17 - uses: ./.github/actions/install-rust 20 - run: cargo fmt --all -- --check 24 runs-on: ${{ matrix.os }} 29 - build: stable 30 os: ubuntu-latest 32 - build: nightly 33 os: ubuntu-latest [all …]
|
12345678910>>...44