Home
last modified time | relevance | path

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

12345678910>>...41

/third_party/lz4/tests/
Dtest-lz4-basic.sh3 FPREFIX="tmp-tlb"
5 set -e
8 rm -rf $FPREFIX*
13 set -x
15 datagen -g0 | lz4 -v | lz4 -t
16 datagen -g16KB | lz4 -9 | lz4 -t
17 datagen -g20KB > $FPREFIX-dg20k
18 lz4 < $FPREFIX-dg20k | lz4 -d > $FPREFIX-dec
19 diff -q $FPREFIX-dg20k $FPREFIX-dec
20 lz4 --no-frame-crc < $FPREFIX-dg20k | lz4 -d > $FPREFIX-dec
[all …]
/third_party/curl/docs/cmdline-opts/
Dfail.md1 ---
3 SPDX-License-Identifier: curl
4 Long: fail
7 Help: Fail fast with no output on HTTP errors
9 Mutexed: fail-with-body
12 See-also:
13 - fail-with-body
14 - fail-early
16 - --fail $URL
17 ---
[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/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/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/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/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/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/libuv/.github/workflows/
DCI-win.yml1 name: CI-win
6 - '**'
7 - '!docs/**'
8 - '!src/unix/**'
9 - '!.**'
10 - '.github/workflows/CI-win.yml'
13 - v[0-9].*
14 - master
17 build-windows:
18 runs-on: windows-${{ matrix.config.server }}
[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/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/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/grpc/doc/
Dwait-for-ready.md6 implementations SHOULD fail such RPCs immediately. This is known as "fail fast,"
7 but usage of the term is historical. RPCs SHOULD NOT fail as a result of the
10 gRPC implementations MAY provide a per-RPC option to not fail RPCs as a result
13 The RPCs SHOULD still fail before `READY` if there are unrelated reasons, such
/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/rust/rust/library/portable-simd/.github/workflows/
Dci.yml7 - 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/grpc/examples/python/wait_for_ready/
DREADME.md1 # gRPC Python Example for Wait-for-ready
3 The default behavior of an RPC is to fail instantly if the server is not ready yet. This example de…
6 ### Definition of 'wait-for-ready' semantics
7 …entations SHOULD fail such RPCs immediately. This is known as "fail fast," but the usage of the te…
9-RPC option to not fail RPCs as a result of the channel being in TRANSIENT_FAILURE state. Instead,…
11 > From https://github.com/grpc/grpc/blob/master/doc/wait-for-ready.md
14 ### Use cases for 'wait-for-ready'
16fail first couple RPC calls due to unavailability of the server. If developers failed to prepare f…
18 …failure may result in a temporary unavailability of the server. With 'wait-for-ready' semantics, t…
/third_party/grpc/test/core/tsi/alts/handshaker/
Dalts_concurrent_connectivity_test.cc9 // http://www.apache.org/licenses/LICENSE-2.0
118 server_->Shutdown(grpc_timeout_milliseconds_to_deadline(0)); in ~FakeHandshakeServer()
155 server_thd_->join(); in ~TestServer()
166 self->server_cq_, gpr_inf_future(GPR_CLOCK_REALTIME), nullptr); in PollUntilShutdown()
205 ~ConnectLoopRunner() { thd_->join(); } in ~ConnectLoopRunner()
208 for (size_t i = 0; i < self->loops_; i++) { in ConnectLoop()
213 self->server_address_.get(), self->fake_handshake_server_addr_.get(), in ConnectLoop()
214 self->reconnect_backoff_ms_); in ConnectLoop()
219 while (state != self->expected_connectivity_states_) { in ConnectLoop()
220 if (self->expected_connectivity_states_ == in ConnectLoop()
[all …]
/third_party/mesa3d/src/freedreno/ci/
Dfreedreno-a307-fails.txt1 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_center,Fail
2 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_corner,Fail
3 dEQP-GLES2.functional.clipping.point.wide_point_clip,Fail
4 dEQP-GLES2.functional.clipping.point.wide_point_clip_viewport_center,Fail
5 dEQP-GLES2.functional.clipping.point.wide_point_clip_viewport_corner,Fail
6 dEQP-GLES2.functional.polygon_offset.fixed16_displacement_with_units,Fail
7 dEQP-GLES2.functional.texture.filtering.2d.linear_nearest_clamp_l8_npot,Fail
8 dEQP-GLES2.functional.texture.filtering.2d.linear_nearest_clamp_rgb888_npot,Fail
9 dEQP-GLES2.functional.texture.filtering.2d.linear_nearest_clamp_rgba4444_npot,Fail
10 dEQP-GLES2.functional.texture.filtering.2d.linear_nearest_clamp_rgba8888_npot,Fail
[all …]
/third_party/astc-encoder/Test/
Dastc_test_functional.py2 # SPDX-License-Identifier: Apache-2.0
3 # -----------------------------------------------------------------------------
4 # Copyright 2020-2023 Arm Limited
10 # http://www.apache.org/licenses/LICENSE-2.0
17 # -----------------------------------------------------------------------------
25 images, these tests rely on an HDRI-enabled build of ImageMagic being available
27 HDRI-enabled run:
29 convert --version
41 ----------------
52 ----------------
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_scale_vaapi.c16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
61 D(FAST); in scale_vaapi_mode_name()
73 AVFilterLink *inlink = outlink->src->inputs[0]; in scale_vaapi_config_output()
74 AVFilterContext *avctx = outlink->src; in scale_vaapi_config_output()
75 VAAPIVPPContext *vpp_ctx = avctx->priv; in scale_vaapi_config_output()
76 ScaleVAAPIContext *ctx = avctx->priv; in scale_vaapi_config_output()
80 ctx->w_expr, ctx->h_expr, in scale_vaapi_config_output()
82 &vpp_ctx->output_width, &vpp_ctx->output_height)) < 0) in scale_vaapi_config_output()
85 ff_scale_adjust_dimensions(inlink, &vpp_ctx->output_width, &vpp_ctx->output_height, in scale_vaapi_config_output()
86 ctx->force_original_aspect_ratio, ctx->force_divisible_by); in scale_vaapi_config_output()
[all …]

12345678910>>...41