Home
last modified time | relevance | path

Searched +full:- +full:- +full:all +full:- +full:features (Results 1 – 25 of 1136) sorted by relevance

12345678910>>...46

/third_party/rust/crates/syn/.github/workflows/
Dci.yml13 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/.github/workflows/
Dmain.yml6 - 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/rust/crates/rustix/
DCargo.toml8 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 …]
DCONTRIBUTING.md8 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/
Dvk_mandatory_format_support_capture_to_json.js2 * 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/
DMakefile4 # - 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/
Dci.yml13 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/vk-gl-cts/external/vulkan-docs/src/appendices/
Dversions.adoc1 // 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 …]
Dversions.txt1 // 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/rust/crates/regex/
DCargo.toml5 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 …]
DREADME.md4 syntax is similar to Perl-style regular expressions, but lacks a few features
5 like look around and backreferences. In exchange, all searches execute in
10 [![Build status](https://github.com/rust-lang/regex/workflows/ci/badge.svg)](https://github.com/rus…
12 [![Rust](https://img.shields.io/badge/rust-1.41.1%2B-blue.svg?maxAge=3600)](https://github.com/rust
29 Here's a simple example that matches a date in YYYY-MM-DD format and prints the
38 -
40 -
43 let caps = re.captures("2010-03-14").unwrap();
58 On 2010-03-14, foo happened. On 2014-10-14, bar happened.
62 let re = Regex::new(r"(\d{4})-(\d{2})-(\d{2})").unwrap();
[all …]
/third_party/rust/crates/minimal-lexical/docs/
DDevelopment.md13 … 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/
Dlib.rs3 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/crates/io-lifetimes/.github/workflows/
Dmain.yml6 - 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 …]
/third_party/rust/crates/proc-macro2/.github/workflows/
Dci.yml13 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/vixl/src/
Dcpu-features.h2 // All rights reserved.
33 #include "globals-vixl.h"
38 // VIXL aims to handle and detect all architectural features that are likely to
39 // influence code-generation decisions at EL0 (user-space).
41 // - There may be multiple VIXL feature flags for a given architectural
50 // - Conversely, some extensions have configuration options that do not affect
57 // - VIXL offers separate flags for separate features even if they're
62 // separate features.
64 // - VIXL can detect every feature for which it can generate code.
66 // - VIXL can detect some features for which it cannot generate code.
[all …]
/third_party/vk-gl-cts/external/vulkancts/scripts/src/extensions/
Dschema.json2 "$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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DCommandFlags.inc1 //===-- 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/skia/third_party/externals/zlib/
Dcpu_features.c1 /* cpu_features.c -- Processor features detection.
3 * Copyright 2018 The Chromium Authors. All rights reserved.
4 * Use of this source code is governed by a BSD-style license that can be
21 /* crc32 is a baseline feature in ARMv8.1-A, and macOS running on arm64 is new
39 #include <cpu-features.h>
44 #include <zircon/features.h>
61 // _cpu_check_features() doesn't need to do anything on mac/arm since all
62 // features are known at build time, so don't call it.
63 // Do provide cpu_check_features() (with a no-op implementation) so that we
64 // don't have to make all callers of it check for mac/arm.
[all …]
/third_party/rust/crates/syn/
DCargo.toml5 categories = ["development-tools::procedural-macro-helpers", "parser-implementations"]
12 "/LICENSE-APACHE",
13 "/LICENSE-MIT",
19 license = "MIT OR Apache-2.0"
21 rust-version = "1.56"
23 [features]
24 default = ["derive", "parsing", "printing", "clone-impls", "proc-macro"]
30 visit-mut = []
32 clone-impls = []
33 extra-traits = []
[all …]
/third_party/rust/crates/clap/.github/workflows/
Drust-next.yml1 name: rust-next
4 - cron: '3 3 3 * *'
15 - build: stable
16 os: ubuntu-latest
18 features: "full"
19 - build: linux
20 os: ubuntu-latest
22 features: "full"
23 - build: windows
24 os: windows-latest
[all …]
Dci.yml7 - cron: '3 3 3 * *'
17 runs-on: ubuntu-latest
19 - name: Done
27 - build: linux
28 os: ubuntu-latest
30 features: "full"
31 - build: windows
32 os: windows-latest
34 features: "full"
35 - build: mac
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dfeatures.txt1 // Copyright 2015-2021 The Khronos Group, Inc.
3 // SPDX-License-Identifier: CC-BY-4.0
5 // This text fragment is used many times in the Features chapter.
7 // tag::features[]
13 slink:VkDeviceCreateInfo to selectively enable these features.
14 // end::features[]
18 [[features]]
19 = Features
21 _Features_ describe functionality which is not supported on all
23 Features are properties of the physical device.
[all …]
/third_party/selinux/secilc/docs/
Dcil_introduction.md4 …igh level policy languages (such as the current module language) and the low-level kernel policy r…
6-level languages that can both consume and produce language constructs with more features than the…
8 * Eases the creation of high-level languages, encouraging the creation of more domain specific poli…
10 …nalysis of the output of multiple high-level languages using a single analysis tool set without lo…
13 ------------------
17- provide rich semantics needed for cross-language interaction but not for convenience. If a featu…
19- provide clear, simple syntax that is easy to parse and to generate by high-level compilers, anal…
21- the ultimate goal of CIL is the generation of the policy that will be enforced by the kernel. Th…
23 * The only good binary file format is a non-existent one - CIL is meant for a source policy oriente…
25 * Enable backwards compatibility but don't be a slave to it - source, but not binary, compatibility…
[all …]
/third_party/backends/doc/descriptions/
Dhs2p.desc3 ; It's basically emacs-lisp --- so ";" indicates comment to end of line.
4 ; All syntactic elements are keyword tokens, followed by a string or
8 ; All other information is optional (but what good is the file without it?).
15 :manpage "sane-hs2p" ; name of manpage (if it exists)
16All major functions necessary for scanning are supported. This backend should work with all Ricoh …
23 :model "IS450" ; name models for above-specified mfg.
26All major scanning-related features are supported (except for IPU). Certain non-scanning features,…
28 :model "IS-410"
33 :model "IS-420"
38 :model "IS-430"

12345678910>>...46