Home
last modified time | relevance | path

Searched +full:fail +full:- +full:fast (Results 1 – 25 of 1020) sorted by relevance

12345678910>>...41

/third_party/rust/crates/libc/.github/workflows/
Dbors.yml6 - auto-libc
7 - try
13 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
17 runs-on: ubuntu-22.04
19 fail-fast: true
22 i686-unknown-linux-gnu,
23 x86_64-unknown-linux-gnu,
26 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
29 - uses: actions/checkout@v3
30 - name: Setup Rust toolchain
[all …]
Dmain.yml8 - master
16 runs-on: ubuntu-22.04
18 fail-fast: true
21 i686-unknown-linux-gnu,
22 x86_64-unknown-linux-gnu,
25 - uses: actions/checkout@v3
26 - name: Setup Rust toolchain
27 run: TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
28 - name: Execute run-docker.sh
29 run: LIBC_CI=1 sh ./ci/run-docker.sh ${{ matrix.target }}
[all …]
/third_party/rust/crates/libloading/.github/workflows/
Dlibloading.yml2 group: ${{ github.workflow }}-${{ github.ref }}
3 cancel-in-progress: true
8 paths-ignore: ['*.mkd', 'LICENSE']
13 native-test:
14 runs-on: ${{ matrix.os }}
16 fail-fast: false
19 os: [ubuntu-latest, windows-latest, macOS-latest]
20 timeout-minutes: 20
22 - uses: actions/checkout@v2
23 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DCodePointTrieTest.java33 /* Values for setting possibly overlapping, out-of-order ranges of values */
43 return Utility.hex(start) + ".." + Utility.hex(limit - 1) + ':' + Utility.hex(value); in toString()
79 return "≤" + Utility.hex(limit - 1) + ':' + Utility.hex(value); in toString()
123 fail(String.format( // log_err( in doCheckRange()
130 fail(String.format( in doCheckRange()
136 fail(String.format( in doCheckRange()
146 // Test iteration starting from various UTF-8/16 and trie structure boundaries.
147 // Also test starting partway through lead & trail surrogates for fixed-surrogate-value options,
178 expEnd = checkRanges[i].limit - 1; in testTrieGetRanges()
181 expEnd = -1; in testTrieGetRanges()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DCodePointTrieTest.java36 /* Values for setting possibly overlapping, out-of-order ranges of values */
46 return Utility.hex(start) + ".." + Utility.hex(limit - 1) + ':' + Utility.hex(value); in toString()
82 return "≤" + Utility.hex(limit - 1) + ':' + Utility.hex(value); in toString()
126 fail(String.format( // log_err( in doCheckRange()
133 fail(String.format( in doCheckRange()
139 fail(String.format( in doCheckRange()
149 // Test iteration starting from various UTF-8/16 and trie structure boundaries.
150 // Also test starting partway through lead & trail surrogates for fixed-surrogate-value options,
181 expEnd = checkRanges[i].limit - 1; in testTrieGetRanges()
184 expEnd = -1; in testTrieGetRanges()
[all …]
/third_party/rust/crates/serde/.github/workflows/
Dci.yml9 RUSTFLAGS: -Dwarnings
14 runs-on: ubuntu-latest
16 - uses: actions/checkout@v2
17 - uses: dtolnay/rust-toolchain@nightly
18 - run: cd test_suite && cargo test --features unstable
22 runs-on: windows-latest
24 - uses: actions/checkout@v2
25 - uses: dtolnay/rust-toolchain@nightly
26 - run: cd test_suite && cargo test --features unstable -- --skip ui --exact
30 runs-on: ubuntu-latest
[all …]
/third_party/node/benchmark/buffers/
Dbuffer-creation.js7 'fast-alloc',
8 'fast-alloc-fill',
9 'fast-allocUnsafe',
10 'slow-allocUnsafe',
19 case 'fast-alloc':
22 case 'fast-alloc-fill':
29 case 'fast-allocUnsafe':
32 case 'slow-allocUnsafe':
36 assert.fail('Should not get here');
/third_party/rust/crates/minimal-lexical/.github/workflows/
DSimple.yml12 runs-on: ubuntu-latest
14 fail-fast: false
18 - uses: actions/checkout@v2
21 - uses: dtolnay/rust-toolchain@master
24 - run: cargo check
25 - run: cargo test
26 - run: cargo test --features=compact
30 runs-on: ubuntu-latest
32 fail-fast: true
34 - uses: actions/checkout@v2
[all …]
DCross.yml11 runs-on: ubuntu-latest
13 fail-fast: false
17 - aarch64-linux-android
18 - arm-linux-androideabi
19 - armv7-linux-androideabi
20 - i686-linux-android
21 - x86_64-linux-android
24 - aarch64-unknown-linux-gnu
25 - arm-unknown-linux-gnueabi
26 - armv7-unknown-linux-gnueabihf
[all …]
/third_party/lz4/tests/
DMakefile2 # LZ4 programs - Makefile
3 # Copyright (C) Yann Collet 2011-2020
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 # - LZ4 homepage : http://www.lz4.org
23 # - LZ4 source repository : https://github.com/lz4/lz4
37 DEBUGFLAGS = -g -DLZ4_DEBUG=$(DEBUGLEVEL)
38 CFLAGS ?= -O3 # can select custom optimization flags. Example : CFLAGS=-O2 make
39 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \
40 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
41 -Wpointer-arith -Wstrict-aliasing=1
[all …]
/third_party/benchmark/.github/workflows/
Dbuild-and-test.yml1 name: build-and-test
8 # TODO: add 32-bit builds (g++ and clang++) for ubuntu
9 # (requires g++-multilib and libc6:i386)
14 runs-on: ${{ matrix.os }}
16 fail-fast: false
18 os: [ubuntu-latest, ubuntu-20.04, macos-latest]
22 - displayTargetName: windows-latest-release
23 os: windows-latest
25 - displayTargetName: windows-latest-debug
26 os: windows-latest
[all …]
Dbuild-and-test-perfcounters.yml1 name: build-and-test-perfcounters
13 runs-on: ${{ matrix.os }}
15 fail-fast: false
17 os: [ubuntu-latest, ubuntu-20.04]
20 - uses: actions/checkout@v2
22 - name: install libpfm
23 run: sudo apt -y install libpfm4-dev
25 - name: setup cmake
26 uses: jwlawson/actions-setup-cmake@v1.9
28 cmake-version: '3.5.1'
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java5 * Copyright (C) 2009-2014, International Business Machines Corporation and
39 … errln(String.format("FAIL: UnicodeSet(%s).spanBack(%s) returns the wrong value pos %d (!= 1)", in TestSimpleStringSpan()
44 … errln(String.format("FAIL: UnicodeSet(%s).span(%s) returns the wrong value pos %d (!= 3)", in TestSimpleStringSpan()
49 … errln(String.format("FAIL: UnicodeSet(%s).span(%s, 1) returns the wrong value pos %d (!= 3)", in TestSimpleStringSpan()
65 …errln(String.format("FAIL: UnicodeSet(%s) containsSpanBackUTF16(%s) returns the wrong value length… in TestSimpleStringSpanSlow()
70 …errln(String.format("FAIL: UnicodeSet(%s) containsSpanUTF16(%s) returns the wrong value length %d … in TestSimpleStringSpanSlow()
75 …errln(String.format("FAIL: UnicodeSet(%s) containsSpanUTF16(%s) returns the wrong value length %d … in TestSimpleStringSpanSlow()
91 errln("FAIL: UnicodeSet(" + pattern + ").containsAll(" + string + ") should be FALSE"); in TestSimpleStringSpanAndFreeze()
95 String string16 = string.substring(0, string.length() - 4); in TestSimpleStringSpanAndFreeze()
97 … errln("FAIL: UnicodeSet(" + pattern + ").containsAll(" + string + "[:-4]) should be TRUE"); in TestSimpleStringSpanAndFreeze()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java6 * Copyright (C) 2009-2014, International Business Machines Corporation and
42 … errln(String.format("FAIL: UnicodeSet(%s).spanBack(%s) returns the wrong value pos %d (!= 1)", in TestSimpleStringSpan()
47 … errln(String.format("FAIL: UnicodeSet(%s).span(%s) returns the wrong value pos %d (!= 3)", in TestSimpleStringSpan()
52 … errln(String.format("FAIL: UnicodeSet(%s).span(%s, 1) returns the wrong value pos %d (!= 3)", in TestSimpleStringSpan()
68 …errln(String.format("FAIL: UnicodeSet(%s) containsSpanBackUTF16(%s) returns the wrong value length… in TestSimpleStringSpanSlow()
73 …errln(String.format("FAIL: UnicodeSet(%s) containsSpanUTF16(%s) returns the wrong value length %d … in TestSimpleStringSpanSlow()
78 …errln(String.format("FAIL: UnicodeSet(%s) containsSpanUTF16(%s) returns the wrong value length %d … in TestSimpleStringSpanSlow()
94 errln("FAIL: UnicodeSet(" + pattern + ").containsAll(" + string + ") should be FALSE"); in TestSimpleStringSpanAndFreeze()
98 String string16 = string.substring(0, string.length() - 4); in TestSimpleStringSpanAndFreeze()
100 … errln("FAIL: UnicodeSet(" + pattern + ").containsAll(" + string + "[:-4]) should be TRUE"); in TestSimpleStringSpanAndFreeze()
[all …]
/third_party/glslang/.github/workflows/
Dcontinuous_integration.yml13 - master
17 runs-on: ${{matrix.os}}
19 fail-fast: false
21 os: [ubuntu-20.04]
25 - uses: actions/checkout@v2
26 - uses: actions/setup-python@v2
28 python-version: '3.7'
29 - name: Install Ubuntu Package Dependencies
31 sudo apt-get -qq update
32 sudo apt-get install -y clang-6.0
[all …]
/third_party/libbpf/.github/workflows/
Dbuild.yml1 name: libbpf-build
7 - cron: '0 18 * * *'
10 group: ci-build-${{ github.head_ref }}
11 cancel-in-progress: true
16 runs-on: ubuntu-latest
19 fail-fast: false
22 - name: default
24 - name: ASan+UBSan
26 - name: clang
28 - name: clang ASan+UBSan
[all …]
/third_party/rust/crates/clap/examples/tutorial_builder/
D04_01_enum.rs5 Fast, enumerator
11 fn value_variants<'a>() -> &'a [Self] { in value_variants()
12 &[Mode::Fast, Mode::Slow] in value_variants()
15 fn to_possible_value<'a>(&self) -> Option<PossibleValue> { in to_possible_value()
17 Mode::Fast => PossibleValue::new("fast").help("Run swiftly"), in to_possible_value()
24 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { in fmt()
35 fn from_str(s: &str) -> Result<Self, Self::Err> { in from_str()
57 .expect("'MODE' is required and parsing will fail if its missing") in main()
59 Mode::Fast => { in main()
/third_party/cJSON/.github/workflows/
DCI.yml6 paths-ignore:
7 - '**.md'
8 - 'LICENSE'
11 paths-ignore:
12 - '**.md'
13 - 'LICENSE'
17 runs-on: ubuntu-latest
20 fail-fast: false
23 - ENABLE_VALGRIND
24 - ENABLE_SANITIZERS
[all …]
/third_party/googletest/googletest/test/
Dgoogletest-failfast-unittest.py35 --gtest_fail_fast flag. The default value of the flag can also be changed
36 by Bazel fail fast environment variable TESTBRIDGE_TEST_RUNNER_FAIL_FAST.
38 This script tests such functionality by invoking googletest-failfast-unittest_
48 # Bazel testbridge environment variable for fail fast
51 # The environment variable for specifying fail fast.
54 # The command line flag for specifying fail fast.
63 # Command to run the googletest-failfast-unittest_ program.
65 'googletest-failfast-unittest_')
69 LIST_TESTS_FLAG = '--gtest_list_tests'
95 args += ['--gtest_output=xml:' + xml_path]
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_scale_vaapi.c16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
63 D(FAST); in scale_vaapi_mode_name()
75 AVFilterLink *inlink = outlink->src->inputs[0]; in scale_vaapi_config_output()
76 AVFilterContext *avctx = outlink->src; in scale_vaapi_config_output()
77 VAAPIVPPContext *vpp_ctx = avctx->priv; in scale_vaapi_config_output()
78 ScaleVAAPIContext *ctx = avctx->priv; in scale_vaapi_config_output()
82 ctx->w_expr, ctx->h_expr, in scale_vaapi_config_output()
84 &vpp_ctx->output_width, &vpp_ctx->output_height)) < 0) in scale_vaapi_config_output()
87 ff_scale_adjust_dimensions(inlink, &vpp_ctx->output_width, &vpp_ctx->output_height, in scale_vaapi_config_output()
88 ctx->force_original_aspect_ratio, ctx->force_divisible_by); in scale_vaapi_config_output()
[all …]
/third_party/rust/crates/tracing/.config/
Dnextest.toml4 # Print out output for failing tests as soon as they fail, and also at the end
6 failure-output = "immediate-final"
8 fail-fast = false
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DEpochTracker.h1 //===- llvm/ADT/EpochTracker.h - ADT epoch tracking --------------*- C++ -*-==//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // These can be used to write iterators that are fail-fast when LLVM is built
13 //===----------------------------------------------------------------------===//
18 #include "llvm/Config/abi-breaking.h"
27 /// ("handles") pointing into themselves fail-fast. When building without
45 /// The destructor calls incrementEpoch to make use-after-free bugs
55 /// make an iterator-invalidating modification.
65 : EpochAddress(&Parent->Epoch), EpochAtCreation(Parent->Epoch) {} in HandleBase()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DEpochTracker.h1 //===- llvm/ADT/EpochTracker.h - ADT epoch tracking --------------*- C++ -*-==//
8 //===----------------------------------------------------------------------===//
11 // These can be used to write iterators that are fail-fast when LLVM is built
14 //===----------------------------------------------------------------------===//
19 #include "llvm/Config/abi-breaking.h"
20 #include "llvm/Config/llvm-config.h"
29 /// ("handles") pointing into themselves fail-fast. When building without
47 /// \brief The destructor calls incrementEpoch to make use-after-free bugs
57 /// make an iterator-invalidating modification.
67 : EpochAddress(&Parent->Epoch), EpochAtCreation(Parent->Epoch) {} in HandleBase()
/third_party/rust/crates/clap/.github/workflows/
Dci.yml7 - cron: '3 3 3 * *'
17 runs-on: ubuntu-latest
19 - name: Done
27 - build: linux
28 os: ubuntu-latest
31 - build: windows
32 os: windows-latest
35 - build: mac
36 os: macos-latest
39 - build: minimal
[all …]
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_lrz.c3 * SPDX-License-Identifier: MIT
13 /* Low-resolution Z buffer is very similar to a depth prepass that helps
25 * - Fragment shader side-effects (writing to SSBOs, atomic operations, etc);
26 * - Writing to stencil buffer
27 * - Writing depth while:
28 * - Changing direction of depth test (e.g. from OP_GREATER to OP_LESS);
29 * - Using OP_ALWAYS or OP_NOT_EQUAL;
30 * - Clearing depth with vkCmdClearAttachments;
31 * - (pre-a650) Not clearing depth attachment with LOAD_OP_CLEAR;
32 * - (pre-a650) Using secondary command buffers;
[all …]

12345678910>>...41