Home
last modified time | relevance | path

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

12345678910>>...58

/external/rust/crates/grpcio/.github/workflows/
Dci.yml7 - master
9 - cron: '0 22 * * *'
13 RUSTFLAGS: "--deny=warnings"
17 Linux-Format:
18 name: Linux-Format
19 runs-on: ubuntu-latest
21 - uses: actions/checkout@v2
22 - run: sudo apt-get install -y clang-tidy-9
23- run: sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-9 100
24- run: which go && go version && which cargo && cargo version && clang --version && openssl versio…
[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/rusqlite/.github/workflows/
Dmain.yml6 - master
9 - master
11 - cron: '00 01 * * *'
19 fail-fast: false
23 - { target: x86_64-pc-windows-msvc, os: windows-latest }
24 - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
25 - { target: x86_64-apple-darwin, os: macos-latest }
26 - { target: x86_64-pc-windows-gnu, os: windows-latest, host: -x86_64-pc-windows-gnu }
28 runs-on: ${{ matrix.os }}
31 - uses: actions/checkout@v2
[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/ci/
Dtest_runner.py2 # Copyright 2021 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
7 # - Selects which tests to run based on local environment
8 # - Can run some tests single-threaded
9 # - Can run some tests using the VM provided by the builders.
10 # - Can generate junit xml files for integration with sponge
25 # Print debug info. Overriden by -v or -vv
30 # builders built-in VM.
32 os.path.abspath("./ci/vm_tools/exec_binary_in_vm") + " --no-sync"
35 # Runs tests using QEMU user-space emulation.
[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"]
20 "bench", "regex-capi", "regex-debug", "regex-syntax",
26 # Doc tests fail when some features aren't present. The easiest way to work
28 # with `cargo test --doc`.
31 # Features are documented in the "Crate features" section of the crate docs:
32 # https://docs.rs/regex/*/#crate-features
[all …]
/external/rust/crates/futures/
DCargo.toml5 # with all versions of Cargo and also rewrite `path` dependencies
9 # issue against the rust-lang/cargo repository. If you're
18 …of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n"
19 homepage = "https://rust-lang.github.io/futures-rs"
24 license = "MIT OR Apache-2.0"
25 repository = "https://github.com/rust-lang/futures-rs"
27 all-features = true
28 rustdoc-args = ["--cfg", "docsrs"]
31 features = ["std", "async-await", "compat", "io-compat", "executor", "thread-pool"]
32 [dependencies.futures-channel]
[all …]
DCargo.toml.orig6 license = "MIT OR Apache-2.0"
9 repository = "https://github.com/rust-lang/futures-rs"
10 homepage = "https://rust-lang.github.io/futures-rs"
14 composability, and iterator-like interfaces.
19 futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
20 futures-task = { path = "../futures-task", version = "0.3.13", default-features = false }
21 futures-channel = { path = "../futures-channel", version = "0.3.13", default-features = false, feat…
22 futures-executor = { path = "../futures-executor", version = "0.3.13", default-features = false, op…
23 futures-io = { path = "../futures-io", version = "0.3.13", default-features = false }
24 futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false }
[all …]
/external/rust/crates/serde_cbor/
D.travis.yml3 - 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/chrono/
DCargo.toml5 # with all versions of Cargo and also rewrite `path` dependencies
9 # issue against the rust-lang/cargo repository. If you're
23 categories = ["date-and-time"]
24 license = "MIT/Apache-2.0"
27 features = ["serde"]
30 features = ["serde"]
38 required-features = ["__internal_bench"]
43 required-features = ["serde"]
48 [dependencies.num-integer]
50 default-features = false
[all …]
/external/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 …]
/external/tensorflow/tensorflow/core/example/
Dfeature_util.h1 /* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
7 http://www.apache.org/licenses/LICENSE-2.0
23 // int id = example.features().feature().at("tag").int64_list().value(0);
26 // auto features = example->mutable_features();
27 // (*features->mutable_feature())["tag"].mutable_int64_list()->add_value(id);
29 // For float features you have to use float_list, for string - bytes_list.
33 // GetFeatureValues<int64>("tag", &example)->Add(id);
35 // Modification of bytes features is slightly different:
37 // *tag->Add() = "lorem ipsum";
42 // GetFeatureValues gives you access to underlying data - RepeatedField object
[all …]
/external/angle/third_party/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 …]
/external/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 …]
/external/rust/crates/clap/.github/
DCONTRIBUTING.md3 …od at. Anything from documentation, code cleanup, issue completion, new features, you name it, eve…
5 … to the [examples/](examples) directory, or file an issue and tell me. I'm all about giving credit…
9 To test with all features both enabled and disabled, you can run these commands:
12 $ cargo test --no-default-features
13 $ cargo test --features "yaml unstable"
21 $ just run-tests
29 $ cargo test --test <test_name>
33 $ just run-test <test_name>
38 …ainst many different lints using [`clippy`](https://github.com/rust-lang-nursery/rust-clippy). In …
44 $ cargo build --features lints
[all …]
/external/vixl/src/aarch64/
Dcpu-features-auditor-aarch64.cc2 // All rights reserved.
27 #include "cpu-features.h"
28 #include "globals-vixl.h"
29 #include "utils-vixl.h"
30 #include "decoder-aarch64.h"
32 #include "cpu-features-auditor-aarch64.h"
44 auditor_->last_instruction_ = CPUFeatures::None(); in RecordInstructionFeaturesScope()
47 auditor_->seen_.Combine(auditor_->last_instruction_); in ~RecordInstructionFeaturesScope()
50 void Record(const CPUFeatures& features) { in Record() argument
51 auditor_->last_instruction_.Combine(features); in Record()
[all …]
/external/cpu_features/
DREADME.md1-ci.org/google/cpu_features.svg?branch=master)](https://travis-ci.org/google/cpu_features) [![Buil…
3 A cross-platform C library to retrieve CPU features (such as available
8 - [Design Rationale](#rationale)
9 - [Code samples](#codesample)
10 - [Running sample code](#usagesample)
11 - [What's supported](#support)
12 - [Android NDK's drop in replacement](#ndk)
13 - [License](#license)
14 - [Build with cmake](#cmake)
19 - **Simple to use.** See the snippets below for examples.
[all …]
/external/rust/crates/syn/
DCargo.toml5 # with all versions of Cargo and also rewrite `path` dependencies
9 # issue against the rust-lang/cargo repository. If you're
18 include = ["/benches/**", "/build.rs", "/Cargo.toml", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.m…
22 categories = ["development-tools::procedural-macro-helpers"]
23 license = "MIT OR Apache-2.0"
26 all-features = true
27 rustdoc-args = ["--cfg", "doc_cfg"]
28 targets = ["x86_64-unknown-linux-gnu"]
31 features = ["full", "visit", "visit-mut", "fold", "extra-traits"]
36 required-features = ["full", "parsing"]
[all …]
DCargo.toml.orig5 license = "MIT OR Apache-2.0"
9 categories = ["development-tools::procedural-macro-helpers"]
15 "/LICENSE-APACHE",
16 "/LICENSE-MIT",
23 [features]
24 default = ["derive", "parsing", "printing", "clone-impls", "proc-macro"]
30 visit-mut = []
32 clone-impls = []
33 extra-traits = []
34 proc-macro = ["proc-macro2/proc-macro", "quote/proc-macro"]
[all …]
/external/rust/crates/futures-util/
DCargo.toml5 # with all versions of Cargo and also rewrite `path` dependencies
9 # issue against the rust-lang/cargo repository. If you're
15 name = "futures-util"
18 description = "Common utilities and extension traits for the futures-rs library.\n"
19 homepage = "https://rust-lang.github.io/futures-rs"
20 documentation = "https://docs.rs/futures-util/0.3"
21 license = "MIT OR Apache-2.0"
22 repository = "https://github.com/rust-lang/futures-rs"
24 all-features = true
25 rustdoc-args = ["--cfg", "docsrs"]
[all …]
/external/rust/crates/bytes/ci/
Dtest-stable.sh3 set -ex
5 cmd="${1:-test}"
7 # Install cargo-hack for feature flag test
8 cargo install cargo-hack
11 # * --each-feature includes both default/no-default features
12 # * --optional-deps is needed for serde feature
13 cargo hack "${cmd}" --each-feature --optional-deps
14 # Run with all features
15 cargo "${cmd}" --all-features
17 cargo doc --no-deps --all-features
[all …]
/external/tensorflow/tensorflow/python/feature_column/
Dfeature_column.py1 # Copyright 2017 The TensorFlow Authors. All Rights Reserved.
7 # http://www.apache.org/licenses/LICENSE-2.0
18 features. FeatureColumns are also the primary way of encoding features for
26 * Continuous features can be represented by `numeric_column`.
27 * Categorical features can be represented by any `categorical_column_with_*`
29 - `categorical_column_with_vocabulary_list`
30 - `categorical_column_with_vocabulary_file`
31 - `categorical_column_with_hash_bucket`
32 - `categorical_column_with_identity`
33 - `weighted_categorical_column`
[all …]
/external/rust/crates/arbitrary/.github/workflows/
Drust.yml8 runs-on: ubuntu-latest
10 - uses: actions/checkout@v1
11 - run: rustup update
12 - name: Build
13 run: cargo build --verbose --all
14 - name: Run tests
15 run: cargo test --verbose --all
17 name: All Features Enabled Build
18 runs-on: ubuntu-latest
20 - uses: actions/checkout@v1
[all …]

12345678910>>...58