Home
last modified time | relevance | path

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

12345678910>>...47

/external/rust/crates/grpcio/.github/workflows/
Dci.yml7 - 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/angle/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 …]
/external/rust/crates/rustix/patches/
D0001-Make-linux-raw-sys-dependency-optional.patch4 Subject: [PATCH 1/3] Make linux-raw-sys dependency optional
9 cfg(feature = "linux-raw-sys") to keep the build working.
11 With this, quite a few features just work:
13 cargo build --no-default-features --features \
14 use-libc,use-libc-auxv,std,event,mount,time,pipe,rand,stdio
15 ---
16 Cargo.toml | 4 ++--
17 Cargo.toml.orig | 5 +++--
18 src/backend/libc/io/syscalls.rs | 6 +++---
19 src/backend/libc/io/types.rs | 2 +-
[all …]
D0004-Don-t-rename-errno-to-libc_errno.patch8 Change-Id: Ied4890f9a6217c627624daa33d98b1bb78081bba
9 ---
10 Cargo.toml | 16 ++++++----------
11 Cargo.toml.orig | 13 ++++++-------
13 src/backend/libc/fs/dir.rs | 2 +-
15 src/backend/libc/io/errno.rs | 2 +-
16 src/backend/libc/io/syscalls.rs | 2 +-
20 10 files changed, 25 insertions(+), 20 deletions(-)
22 diff --git a/Cargo.toml b/Cargo.toml
24 --- a/Cargo.toml
[all …]
/external/rust/crates/rustix/
DCargo.toml5 # with all versions of Cargo and also rewrite `path` dependencies
14 rust-version = "1.63"
30 description = "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls"
41 "os::unix-apis",
42 "date-and-time",
44 "network-programming",
46 license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
50 features = ["all-apis"]
51 rustdoc-args = [
52 "--cfg",
[all …]
DCargo.toml.orig8 description = "Safe Rust bindings to POSIX/Unix/Linux/Winsock-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.63"
19 bitflags = { version = "2.4.0", default-features = false }
20 itoa = { version = "1.0.1", default-features = false, optional = true }
22 # Special dependencies used in rustc-dep-of-std mode.
23 core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
24 alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
36 # libc backend can be selected via adding `--cfg=rustix_use_libc` to
[all …]
/external/rust/crates/ring/src/
Dcpu.rs5 // copyright notice and this permission notice appear in all copies.
7 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
8 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 /// A witness indicating that CPU features have been detected and cached.
17 /// TODO: Eventually all feature detection logic should be done through
18 /// functions that accept a `Features` parameter, to guarantee that nothing
21 /// This is a zero-sized type so that it can be "stored" wherever convenient.
23 pub(crate) struct Features(()); struct
26 pub(crate) fn features() -> Features { in features() function
27 // We don't do runtime feature detection on aarch64-apple-* as all AAarch64 in features()
[all …]
/external/crosvm/
DCargo.toml6 default-run = "crosvm"
14 opt-level = 3
15 overflow-checks = true
17 [profile.release-test]
34 codegen-units = 1
37 # Explicitly list all crates of crosvm as workspace members since not all of them may be referenced
111 # This crate depends on optional features and is compiled via dependencies when enabled.
115 [features]
116 ## Default features of crosvm. This selection is somewhat arbitrary for historical reasons.
117 default = ["audio", "balloon", "config-file", "document-features", "gpu", "qcow", "usb", "libvda-st…
[all …]
/external/aws-sdk-java-v2/changelogs/
D2.10.x-CHANGELOG.md1 # __2.10.91__ __2020-03-20__
3 - ### Features
4 - Updated service endpoint metadata.
7 - ### Features
8- Added "productId" and "portfolioId" to responses from CreateConstraint, UpdateConstraint, ListCo…
10 # __2.10.90__ __2020-03-19__
12 - ### Features
13- AWS Certificate Manager documentation updated on API calls ImportCertificate and ListCertificate…
16 - ### Features
17 - Documentation updates for AWS Outposts.
[all …]
/external/rust/crates/criterion/ci/
Dscript.sh1 set -ex
5 FEATURES="async_smol async_tokio async_std async_futures"
8 cargo clippy --all -- -D warnings
11 cargo doc --features "$FEATURES" --all --no-deps
15 cp -r book/book/html/ target/doc/book/
16 travis-cargo doc-upload || true
18 cargo fmt --all -- --check
21 cargo build -Z minimal-versions
23 export RUSTFLAGS="-D warnings"
25 cargo build --features "$FEATURES" $BUILD_ARGS
[all …]
/external/llvm/lib/Support/
DHost.cpp1 //===-- Host.cpp - Implement OS Host Concept --------------------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
25 // Include the platform-specific parts of this class.
42 #define DEBUG_TYPE "host-detection"
44 //===----------------------------------------------------------------------===//
48 //===----------------------------------------------------------------------===//
62 return -1; in readCpuInfo()
67 return -1; in readCpuInfo()
172 /// getX86CpuIDAndInfo - Execute the specified cpuid and return the 4 values in
[all …]
/external/rust/crates/regex/
DCargo.toml.orig5 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 …]
/external/googleapis/google/cloud/aiplatform/v1/
Dfeaturestore_monitoring.proto7 // http://www.apache.org/licenses/LICENSE-2.0
27 // Configuration of how features in Featurestore are monitored.
35 // For EntityType-level config:
37 // default for Features under it; otherwise by default enable snapshot
38 // analysis monitoring with monitoring_interval for Features under it.
39 // Feature-level config:
40 // disabled = true indicates disabled regardless of the EntityType-level
41 // config; unset monitoring_interval indicates going with EntityType-level
43 // monitoring_interval regardless of the EntityType-level config.
51 // Customized export features time window for snapshot analysis. Unit is one
[all …]
/external/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/proto/google/cloud/aiplatform/v1/
Dfeaturestore_monitoring.proto7 // http://www.apache.org/licenses/LICENSE-2.0
27 // Configuration of how features in Featurestore are monitored.
35 // For EntityType-level config:
37 // default for Features under it; otherwise by default enable snapshot
38 // analysis monitoring with monitoring_interval for Features under it.
39 // Feature-level config:
40 // disabled = true indicates disabled regardless of the EntityType-level
41 // config; unset monitoring_interval indicates going with EntityType-level
43 // monitoring_interval regardless of the EntityType-level config.
51 // Customized export features time window for snapshot analysis. Unit is one
[all …]
/external/rust/crates/bytemuck/.github/workflows/
Drust.yml13 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/rust/crates/base64/.circleci/
Dconfig.yml7 - 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:
50 - run:
[all …]
/external/rust/crates/virtio-drivers/.github/workflows/
Dmain.yml10 runs-on: ubuntu-latest
12 - uses: actions/checkout@v4
13 - name: Check code format
14 uses: actions-rs/cargo@v1
17 args: --all -- --check
18 - name: Clippy
19 uses: actions-rs/clippy-check@v1
24 runs-on: ubuntu-latest
26 - uses: actions/checkout@v4
27 - name: Build with no features
[all …]
/external/rust/crates/combine/
Dci.sh1 #!/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/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/proto/google/cloud/aiplatform/v1beta1/
Dfeaturestore_monitoring.proto7 // http://www.apache.org/licenses/LICENSE-2.0
29 // Configuration of how features in Featurestore are monitored.
37 // For EntityType-level config:
39 // default for Features under it; otherwise by default enable snapshot
40 // analysis monitoring with monitoring_interval for Features under it.
41 // Feature-level config:
42 // disabled = true indicates disabled regardless of the EntityType-level
43 // config; unset monitoring_interval indicates going with EntityType-level
45 // monitoring_interval regardless of the EntityType-level config.
54 // are set when creating/updating EntityTypes/Features,
[all …]
/external/googleapis/google/cloud/aiplatform/v1beta1/
Dfeaturestore_monitoring.proto7 // http://www.apache.org/licenses/LICENSE-2.0
29 // Configuration of how features in Featurestore are monitored.
37 // For EntityType-level config:
39 // default for Features under it; otherwise by default enable snapshot
40 // analysis monitoring with monitoring_interval for Features under it.
41 // Feature-level config:
42 // disabled = true indicates disabled regardless of the EntityType-level
43 // config; unset monitoring_interval indicates going with EntityType-level
45 // monitoring_interval regardless of the EntityType-level config.
54 // are set when creating/updating EntityTypes/Features,
[all …]
/external/rust/crates/bstr/
DCargo.toml.orig5 description = "A string type that is not required to be valid UTF-8."
11 license = "MIT OR Apache-2.0"
12 categories = ["text-processing", "encoding"]
15 rust-version = "1.60"
24 [features]
28 unicode = ["dep:once_cell", "dep:regex-automata"]
32 memchr = { version = "2.4.0", default-features = false }
34 regex-automata = { version = "0.1.5", default-features = false, optional = true }
35 serde = { version = "1.0.85", default-features = false, optional = true }
37 [dev-dependencies]
[all …]
/external/rust/crates/futures/
DCargo.toml5 # with all versions of Cargo and also rewrite `path` dependencies
14 rust-version = "1.56"
19 composability, and iterator-like interfaces.
21 homepage = "https://rust-lang.github.io/futures-rs"
29 license = "MIT OR Apache-2.0"
30 repository = "https://github.com/rust-lang/futures-rs"
33 all-features = true
34 rustdoc-args = [
35 "--cfg",
40 features = [
[all …]
DCargo.toml.orig5 rust-version = "1.56"
6 license = "MIT OR Apache-2.0"
9 repository = "https://github.com/rust-lang/futures-rs"
10 homepage = "https://rust-lang.github.io/futures-rs"
13 composability, and iterator-like interfaces.
18 futures-core = { path = "../futures-core", version = "0.3.30", default-features = false }
19 futures-task = { path = "../futures-task", version = "0.3.30", default-features = false }
20 futures-channel = { path = "../futures-channel", version = "0.3.30", default-features = false, feat…
21 futures-executor = { path = "../futures-executor", version = "0.3.30", default-features = false, op…
22 futures-io = { path = "../futures-io", version = "0.3.30", default-features = false }
[all …]
/external/python/bumble/rust/
DCargo.toml6 license = "Apache-2.0"
12 categories = ["api-bindings", "network-programming"]
13 rust-version = "1.76.0"
15 # https://github.com/frewsxcv/cargo-all-features#options
16 [package.metadata.cargo-all-features]
19 # To exercise combinations of any of these features, remove from `always_include_features`
20 always_include_features = ["anyhow", "pyo3-asyncio-attributes", "dev-tools", "bumble-tools"]
23 pyo3 = { version = "0.18.3", features = ["macros"] }
24 pyo3-asyncio = { version = "0.18.0", features = ["tokio-runtime"] }
25 tokio = { version = "1.28.2", features = ["macros", "signal"] }
[all …]
/external/rust/crates/serde_json/.github/workflows/
Dci.yml12 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 …]

12345678910>>...47