Searched +full:- +full:- +full:add +full:- +full:missing (Results 1 – 25 of 1077) sorted by relevance
12345678910>>...44
| /third_party/iptables/extensions/ |
| D | libxt_sctp.txlate | 1 iptables-translate -A INPUT -p sctp --dport 80 -j DROP 2 nft 'add rule ip filter INPUT sctp dport 80 counter drop' 4 iptables-translate -A INPUT -p sctp --sport 50 -j DROP 5 nft 'add rule ip filter INPUT sctp sport 50 counter drop' 7 iptables-translate -A INPUT -p sctp ! --dport 80 -j DROP 8 nft 'add rule ip filter INPUT sctp dport != 80 counter drop' 10 iptables-translate -A INPUT -p sctp ! --sport 50 -j DROP 11 nft 'add rule ip filter INPUT sctp sport != 50 counter drop' 13 iptables-translate -A INPUT -p sctp --sport 80:100 -j ACCEPT 14 nft 'add rule ip filter INPUT sctp sport 80-100 counter accept' [all …]
|
| /third_party/rust/rust/tests/rustdoc-ui/issues/ |
| D | issue-105742.stderr | 1 error[E0107]: missing generics for associated type `SVec::Item` 2 --> $DIR/issue-105742.rs:15:21 8 --> $DIR/issue-105742.rs:51:10 11 | ^^^^ -- 12 help: add missing lifetime argument 17 error[E0107]: missing generics for associated type `SVec::Item` 18 --> $DIR/issue-105742.rs:15:21 24 --> $DIR/issue-105742.rs:51:10 27 | ^^^^ - 28 help: add missing generic argument [all …]
|
| /third_party/rust/rust/tests/ui/generics/ |
| D | wrong-number-of-args.rs | 27 //~^ ERROR missing generics for struct `type_and_type::Ty` 28 //~| HELP add missing 32 //~| HELP add missing 42 //~| HELP add missing 49 //~^ ERROR missing generics for struct 50 //~| ERROR missing lifetime specifier 51 //~| HELP add missing 56 //~| HELP add missing 59 //~^ ERROR missing lifetime specifier 66 //~| ERROR missing lifetime specifier [all …]
|
| D | wrong-number-of-args.stderr | 1 error[E0106]: missing lifetime specifier 2 --> $DIR/wrong-number-of-args.rs:48:14 12 error[E0106]: missing lifetime specifier 13 --> $DIR/wrong-number-of-args.rs:58:16 23 error[E0106]: missing lifetime specifier 24 --> $DIR/wrong-number-of-args.rs:64:16 34 error[E0106]: missing lifetime specifier 35 --> $DIR/wrong-number-of-args.rs:120:22 40 …= note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomico… 41 help: consider making the bound lifetime-generic with a new `'a` lifetime [all …]
|
| /third_party/rust/rust/src/tools/clippy/tests/ui/ |
| D | implicit_return.stderr | 1 error: missing `return` statement 2 --> $DIR/implicit_return.rs:12:5 5 | ^^^^ help: add `return` as shown: `return true` 7 = note: `-D clippy::implicit-return` implied by `-D warnings` 9 error: missing `return` statement 10 --> $DIR/implicit_return.rs:16:15 13 | ^^^^ help: add `return` as shown: `return true` 15 error: missing `return` statement 16 --> $DIR/implicit_return.rs:16:29 19 | ^^^^^ help: add `return` as shown: `return false` [all …]
|
| D | suspicious_else_formatting.stderr | 1 error: this looks like an `else {..}` but the `else` is missing 2 --> $DIR/suspicious_else_formatting.rs:22:6 7 = note: to remove this lint, add the missing `else` or add a new line before the next block 8 = note: `-D clippy::suspicious-else-formatting` implied by `-D warnings` 10 error: this looks like an `else if` but the `else` is missing 11 --> $DIR/suspicious_else_formatting.rs:26:6 16 = note: to remove this lint, add the missing `else` or add a new line before the second `if` 18 error: this looks like an `else if` but the `else` is missing 19 --> $DIR/suspicious_else_formatting.rs:33:10 24 = note: to remove this lint, add the missing `else` or add a new line before the second `if` [all …]
|
| /third_party/rust/rust/tests/rustdoc-ui/ |
| D | unescaped_backticks.stderr | 2 --> $DIR/unescaped_backticks.rs:186:70 8 --> $DIR/unescaped_backticks.rs:1:9 12 help: the closing backtick of an inline code may be missing 22 --> $DIR/unescaped_backticks.rs:231:13 24 LL | //! `#![rustc_expected_cgu_reuse(module="spike", cfg="rpass2", kind="post-lto")] 27 help: the closing backtick of an inline code may be missing 29 LL | //! `#![rustc_expected_cgu_reuse(module="spike", cfg="rpass2", kind="post-lto")]` 33 LL | //! \`#![rustc_expected_cgu_reuse(module="spike", cfg="rpass2", kind="post-lto")] 37 --> $DIR/unescaped_backticks.rs:236:13 42 help: the closing backtick of an inline code may be missing [all …]
|
| /third_party/rust/rust/tests/ui/parser/ |
| D | recover-missing-semi-before-item.stderr | 2 --> $DIR/recover-missing-semi-before-item.rs:6:16 5 | ^ help: add `;` here 7 | ------ unexpected token 10 --> $DIR/recover-missing-semi-before-item.rs:11:16 13 | ^ help: add `;` here 15 | ----- unexpected token 18 --> $DIR/recover-missing-semi-before-item.rs:18:16 21 | ^ help: add `;` here 23 | ---- unexpected token 26 --> $DIR/recover-missing-semi-before-item.rs:25:16 [all …]
|
| /third_party/rust/rust/tests/ui/generic-associated-types/ |
| D | missing-bounds.stderr | 2 --> $DIR/missing-bounds.rs:37:33 4 LL | impl<B: Add> Add for E<B> where <B as Add>::Output = B { 7 = note: see issue #20041 <https://github.com/rust-lang/rust/issues/20041> for more information 10 LL | impl<B: Add> Add for E<B> where B: Add<Output = B> { 14 --> $DIR/missing-bounds.rs:11:11 16 LL | impl<B> Add for A<B> where B: Add { 17 | - this type parameter 20 | - ^^^^^^^^^^^^^^ expected type parameter `B`, found associated type 25 found associated type `<B as Add>::Output` 26 help: the type constructed contains `<B as Add>::Output` due to the type of the argument passed [all …]
|
| D | self-outlives-lint.stderr | 1 error: missing required bound on `Item` 2 --> $DIR/self-outlives-lint.rs:7:5 5 | ^^^^^^^^^^^^^- 7 | help: add the required where clause: `where Self: 'x` 10 …= note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/874… 12 error: missing required bound on `Out` 13 --> $DIR/self-outlives-lint.rs:23:5 16 | ^^^^^^^^^^^^- 18 | help: add the required where clause: `where T: 'x` 21 …= note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/874… [all …]
|
| D | gat-trait-path-missing-lifetime.stderr | 1 error[E0107]: missing generics for associated type `X::Y` 2 --> $DIR/gat-trait-path-missing-lifetime.rs:8:20 4 LL | fn foo<'a, T1: X<Y = T1>>(t : T1) -> T1::Y<'a> { 8 --> $DIR/gat-trait-path-missing-lifetime.rs:2:8 11 | ^ -- 12 help: add missing lifetime argument 14 LL | fn foo<'a, T1: X<Y<'a> = T1>>(t : T1) -> T1::Y<'a> { 17 error[E0107]: missing generics for associated type `X::Y` 18 --> $DIR/gat-trait-path-missing-lifetime.rs:8:20 20 LL | fn foo<'a, T1: X<Y = T1>>(t : T1) -> T1::Y<'a> { [all …]
|
| /third_party/skia/m133/tools/unicode_comparison/go/generate_table/ |
| D | main.go | 2 // Use of this source code is governed by a BSD-style license that can be 51 return fmt.Sprintf("%.6f", (float64(fr.Top)/float64(fr.Bottom)-1)*100) 55 func (r *Ratio) Add(other Ratio) { func 89 func (cd *CalculatedDelta) Add(other CalculatedDelta) { func 96 cd.Graphemes.Add(other.Graphemes) 97 cd.SoftBreaks.Add(other.SoftBreaks) 98 cd.HardBreaks.Add(other.HardBreaks) 99 cd.Whitespaces.Add(other.Whitespaces) 100 cd.Words.Add(other.Words) 101 cd.Controls.Add(other.Controls) [all …]
|
| /third_party/rust/rust/tests/ui/suggestions/ |
| D | missing-lifetime-specifier.stderr | 1 error[E0106]: missing lifetime specifiers 2 --> $DIR/missing-lifetime-specifier.rs:18:44 13 error[E0106]: missing lifetime specifiers 14 --> $DIR/missing-lifetime-specifier.rs:18:44 22 | |_- 26 error[E0106]: missing lifetime specifiers 27 --> $DIR/missing-lifetime-specifier.rs:23:44 40 error[E0106]: missing lifetime specifiers 41 --> $DIR/missing-lifetime-specifier.rs:23:44 51 | |_- [all …]
|
| D | impl-trait-missing-lifetime-gated.stderr | 1 error[E0106]: missing lifetime specifier 2 --> $DIR/impl-trait-missing-lifetime-gated.rs:9:54 4 LL | fn g(mut x: impl Iterator<Item = &()>) -> Option<&()> { x.next() } 10 LL | fn g(mut x: impl Iterator<Item = &()>) -> Option<&'static ()> { x.next() } 13 error[E0106]: missing lifetime specifier 14 --> $DIR/impl-trait-missing-lifetime-gated.rs:19:60 16 LL | async fn i(mut x: impl Iterator<Item = &()>) -> Option<&()> { x.next() } 22 LL | async fn i(mut x: impl Iterator<Item = &()>) -> Option<&'static ()> { x.next() } 25 error[E0106]: missing lifetime specifier 26 --> $DIR/impl-trait-missing-lifetime-gated.rs:27:58 [all …]
|
| /third_party/rust/rust/tests/ui/associated-types/ |
| D | missing-associated-types.stderr | 2 --> $DIR/missing-associated-types.rs:12:32 4 LL | type Foo<Rhs> = dyn Add<Rhs> + Sub<Rhs> + X<Rhs> + Y<Rhs>; 5 | -------- ^^^^^^^^ additional non-auto trait 7 | first non-auto trait 9 …f these as supertraits and using that trait here instead: `trait NewTrait: Add<Rhs> + Sub<Rhs> + X… 10 …-traits like `Send` and `Sync` are traits that have special properties; for more information on th… 12 error[E0191]: the value of the associated types `A` (from trait `Y`), `Output` (from trait `Add`), … 13 --> $DIR/missing-associated-types.rs:12:21 16 | ------ `A` defined here 18 LL | type Foo<Rhs> = dyn Add<Rhs> + Sub<Rhs> + X<Rhs> + Y<Rhs>; [all …]
|
| /third_party/cJSON/tests/json-patch-tests/ |
| D | tests.json | 27 { "comment": "add replaces any existing field", 29 "patch": [{"op": "add", "path": "/foo", "value":1}], 34 "patch": [{"op": "add", "path": "/0", "value": "foo"}], 44 "patch": [{"op": "add", "path": "/foo", "value": "1"}], 49 "patch": [{"op": "add", "path": "/foo", "value": 1}], 60 "patch": [{"op": "add", "path": "", "value": []}], 65 "patch": [{"op": "add", "path": "", "value": {}}], 70 "patch": [{"op": "add", "path": "/-", "value": "hi"}], 73 { "comment": "Add, / target", 75 "patch": [ {"op": "add", "path": "/", "value":1 } ], [all …]
|
| /third_party/mesa3d/docs/relnotes/ |
| D | 24.0.5.rst | 1 Mesa 24.0.5 Release Notes / 2024-04-10 18 --------------- 22 38cc245ca8faa3c69da6d2687f8906377001f63365348a62cc6f7fafb1e8c018 mesa-24.0.5.tar.xz 26 ------------ 28 - None 32 --------- 34 - anv: vkd3d-proton test_stress_suballocation failure 35 - d3d12: Zwift renders with bad textures/lighting 36 - NVK: Misrendering with Civilization 6 37 - radv: RDR2 might need zerovram [all …]
|
| D | 24.1.2.rst | 1 Mesa 24.1.2 Release Notes / 2024-06-19 18 --------------- 22 a2c584c8d57d3bd8ba11790a6e9ae3713f8821df96c059b78afb29dd975c9f45 mesa-24.1.2.tar.xz 26 ------------ 28 - None 32 --------- 34 - free_zombie_shaders() leave context in a bad state (access violation occurs) 35 - [NINE]Far Cry 1 trees flicker regression[bisected][traces] 36 - Vulkan: Most sync2 implementations are missing new access flags 37 - Incorrect buffer_list advance when writing disjoint image descriptors [all …]
|
| D | 22.3.3.rst | 1 Mesa 22.3.3 Release Notes / 2023-01-11 18 --------------- 22 bed799788bf2bd9ef079d97cd8e09348bf53cb086818578e40773b2b17812922 mesa-22.3.3.tar.xz 26 ------------ 28 - None 32 --------- 34 - radeonsi: Broken graphics in game ibb & obb with mesa_glthread=true 35 - Hotline Miami 2 crashes on startup. (\`mesa_glthread` defaults true) 36 - [RadeonSI] Dune: Spice Wars blue/purple screen 37 - iris: assertion failure in iris_resource_from_memobj [all …]
|
| /third_party/libabigail/ |
| D | NEWS | 4 elf-helpers: make sure config.h is included first 8 release-text-template.txt: Modernize a little bit. 9 dwarf-reader: Don't compute canonical type while propagating one 10 Bug 29693 - clang-libs from f37 fails self test 11 Bug 30466 - harfbuzz fails self-check on f38 12 Bug 30467 - enlightenment fails self check on f38 14 Bug 30503 - Fail to compare non-anonymous struct vs named struct data members 15 Bug 30461 - insight fails self-compare 16 fedabipkgdiff: Don't choke Koji servers with self-signed SSL certs 19 corpus,tools-utils: Support loading a corpus, its deps & other binaries [all …]
|
| /third_party/skia/m133/third_party/externals/libwebp/ |
| D | ChangeLog | 2 cf7c5a5d provide a way to opt-out/override WEBP_NODISCARD 3 cc34288a update ChangeLog (tag: v1.4.0-rc1) 11 07216886 webp-container-spec: fix VP8 chunk ref ('VP8'->'VP8 ') 14 d537cd37 cmake: fix vwebp_sdl compile w/libsdl-org release 15 6c484cbf CMakeLists.txt: add missing WEBP_BUILD_EXTRAS check 16 7b0bc235 man/cwebp.1: add more detail to -partition_limit 17 3c0011bb WebPMuxGetChunk: add an assert 18 955a3d14 Merge "muxread,MuxGet: add an assert" into main 19 00abc000 muxread,MuxGet: add an assert 21 1bf46358 man/cwebp.1: clarify -pass > 1 behavior w/o -size/-psnr [all …]
|
| /third_party/skia/third_party/externals/libwebp/ |
| D | ChangeLog | 3 731246ba update ChangeLog (tag: v1.2.1-rc2) 8 e0241154 Merge "libwebp/CMake: Add <BUILD_INTERFACE> to webp incl" into main 9 edea6444 libwebp/CMake: Add <BUILD_INTERFACE> to webp incl 10 ece18e55 dsp.h: respect --disable-sse2/sse4.1/neon 19 dc7e2b42 configure: add informational notices when disabling binaries 27 b60d4603 advanced_api_fuzzer: add extreme config value coverage 32 3e265136 Add WEBP_RESTRICT & use it in VP8BitReader 34 de3b4ba8 CMake: add WEBP_BUILD_LIBWEBPMUX 38 28d488e6 utils.h: add SizeOverflow() 56 98bbe35b Fix multi-threading with palettes. [all …]
|
| /third_party/rust/rust/tests/ui/ufcs/ |
| D | ufcs-qpath-missing-params.stderr | 1 error[E0107]: missing generics for trait `IntoCow` 2 --> $DIR/ufcs-qpath-missing-params.rs:14:16 8 --> $DIR/ufcs-qpath-missing-params.rs:3:11 11 | ^^^^^^^ - 12 help: add missing generic argument 17 error[E0107]: missing generics for trait `IntoCow` 18 --> $DIR/ufcs-qpath-missing-params.rs:17:16 24 --> $DIR/ufcs-qpath-missing-params.rs:3:11 27 | ^^^^^^^ - 28 help: add missing generic argument [all …]
|
| /third_party/rust/rust/tests/ui/stability-attribute/ |
| D | default-body-stability-err.stderr | 1 error[E0046]: not all trait items implemented, missing: `CONSTANT` 2 --> $DIR/default-body-stability-err.rs:10:1 9 = help: add `#![feature(constant_default_body)]` to the crate attributes to enable 11 error[E0046]: not all trait items implemented, missing: `fun` 12 --> $DIR/default-body-stability-err.rs:10:1 19 = help: add `#![feature(fun_default_body)]` to the crate attributes to enable 21 error[E0046]: not all trait items implemented, missing: `fun2` 22 --> $DIR/default-body-stability-err.rs:10:1 29 = help: add `#![feature(fun_default_body)]` to the crate attributes to enable 31 error[E0046]: not all trait items implemented, missing: `eq` [all …]
|
| /third_party/rust/rust/tests/ui/binop/ |
| D | issue-28837.stderr | 1 error[E0369]: cannot add `A` to `A` 2 --> $DIR/issue-28837.rs:6:7 5 | - ^ - A 9 note: an implementation of `Add` might be missing for `A` 10 --> $DIR/issue-28837.rs:1:1 13 | ^^^^^^^^ must implement `Add` 14 note: the trait `Add` must be implemented 15 --> $SRC_DIR/core/src/ops/arith.rs:LL:COL 18 --> $DIR/issue-28837.rs:8:7 20 LL | a - a; [all …]
|
12345678910>>...44