Home
last modified time | relevance | path

Searched refs:ignore (Results 1 – 25 of 2108) sorted by relevance

12345678910>>...85

/third_party/curl/tests/data/
Dtest106125 And you should ignore this data. aaaaaaaaaaaaaaaa
26 And you should ignore this data. aaaaaaaaaaaaaaaa
27 And you should ignore this data. aaaaaaaaaaaaaaaa
28 And you should ignore this data. aaaaaaaaaaaaaaaa
29 And you should ignore this data. aaaaaaaaaaaaaaaa
30 And you should ignore this data. aaaaaaaaaaaaaaaa
31 And you should ignore this data. aaaaaaaaaaaaaaaa
32 And you should ignore this data. aaaaaaaaaaaaaaaa
33 And you should ignore this data. aaaaaaaaaaaaaaaa
34 And you should ignore this data. aaaaaaaaaaaaaaaa
[all …]
Dtest106023 And you should ignore this data. aaaaaaaaaaaaaaaa
24 And you should ignore this data. aaaaaaaaaaaaaaaa
25 And you should ignore this data. aaaaaaaaaaaaaaaa
26 And you should ignore this data. aaaaaaaaaaaaaaaa
27 And you should ignore this data. aaaaaaaaaaaaaaaa
28 And you should ignore this data. aaaaaaaaaaaaaaaa
29 And you should ignore this data. aaaaaaaaaaaaaaaa
30 And you should ignore this data. aaaaaaaaaaaaaaaa
31 And you should ignore this data. aaaaaaaaaaaaaaaa
32 And you should ignore this data. aaaaaaaaaaaaaaaa
[all …]
/third_party/skia/third_party/externals/brotli/
D.gitattributes4 **/** export-ignore
7 bootstrap !export-ignore
8 BUILD !export-ignore
9 CMakeLists.txt !export-ignore
10 compiler_config_setting.bzl !export-ignore
11 configure !export-ignore
12 configure-cmake !export-ignore
13 configure.ac !export-ignore
14 CONTRIBUTING.md !export-ignore
15 LICENSE !export-ignore
[all …]
/third_party/ejdb/
Duncrustify.cfg64 utf8_bom = remove # ignore/add/remove/force
74 sp_do_brace_open = add # ignore/add/remove/force
77 sp_brace_close_while = add # ignore/add/remove/force
80 sp_while_paren_open = add # ignore/add/remove/force
88 sp_arith = force # ignore/add/remove/force
93 sp_arith_additive = ignore # ignore/add/remove/force
96 sp_assign = force # ignore/add/remove/force
101 sp_cpp_lambda_assign = ignore # ignore/add/remove/force
105 sp_cpp_lambda_square_paren = ignore # ignore/add/remove/force
109 sp_cpp_lambda_square_brace = ignore # ignore/add/remove/force
[all …]
/third_party/typescript_eslint/packages/typescript-estree/tests/ast-alignment/
Dfixtures-to-test.ts22 ignore?: string[]; property
60 const ignore = config.ignore ?? []; constant
72 ignore.push(...ignoreSourceType);
85 pattern: `${fixturesSubPath}/!(${ignore.join('|')}).src.${fileType}`,
131 ignore: [
145 ignore: [
157 ignore: [
188 ignore: [
204 ignore: [
241 ignore: [
[all …]
/third_party/python/Lib/test/
Dtest_pyclbr.py26 def assertListEq(self, l1, l2, ignore): argument
28 missing = (set(l1) ^ set(l2)) - set(ignore)
30 print("l1=%r\nl2=%r\nignore=%r" % (l1, l2, ignore), file=sys.stderr)
33 def assertHasattr(self, obj, attr, ignore): argument
35 if attr in ignore: return
41 def assertHaskey(self, obj, key, ignore): argument
43 if key in ignore: return
48 def assertEqualsOrIgnored(self, a, b, ignore): argument
50 if a not in ignore and b not in ignore:
53 def checkModule(self, moduleName, module=None, ignore=()): argument
[all …]
/third_party/typescript/tests/baselines/reference/
Dts-ignore.symbols1 === tests/cases/conformance/directives/ts-ignore.ts ===
2 // @ts-ignore with additional commenting
4 >invalidCommentedFancy : Symbol(invalidCommentedFancy, Decl(ts-ignore.ts, 1, 3))
6 // @ts-ignore with additional commenting
8 >validCommentedFancy : Symbol(validCommentedFancy, Decl(ts-ignore.ts, 4, 3))
10 // @ts-ignore
12 >invalidCommentedPlain : Symbol(invalidCommentedPlain, Decl(ts-ignore.ts, 7, 3))
14 // @ts-ignore
16 >validCommentedPlain : Symbol(validCommentedPlain, Decl(ts-ignore.ts, 10, 3))
19 >invalidPlain : Symbol(invalidPlain, Decl(ts-ignore.ts, 12, 3))
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments3.types6 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": boolean; })…
9 declare function OverloadComponent<U>(attr: {b: U, a?: string, "ignore-prop": boolean}): JSX.Elemen…
10 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": bo…
11 >attr : { b: U; a?: string; "ignore-prop": boolean; }
14 >"ignore-prop" : boolean
18 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": boolean; })…
33 let a0 = <OverloadComponent {...arg1} a="hello" ignore-prop />;
35 ><OverloadComponent {...arg1} a="hello" ignore-prop /> : JSX.Element
36 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": boolean; })…
39 >ignore-prop : true
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments3.js10 let a0 = <OverloadComponent {...arg1} a="hello" ignore-prop />;
11 let a1 = <OverloadComponent {...arg2} ignore-pro="hello world" />;
13 let a3 = <OverloadComponent {...arg1} ignore-prop />;
15 let a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1} />;
16 let a6 = <OverloadComponent {...arg2} ignore-prop {...arg1} />;
32 var a0 = <OverloadComponent {...arg1} a="hello" ignore-prop/>;
33 var a1 = <OverloadComponent {...arg2} ignore-pro="hello world"/>;
35 var a3 = <OverloadComponent {...arg1} ignore-prop/>;
37 var a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1}/>;
38 var a6 = <OverloadComponent {...arg2} ignore-prop {...arg1}/>;
DtsxStatelessFunctionComponentsWithTypeArguments4.errors.txt5 …Overload 2 of 3, '(attr: { b: unknown; a: string; "ignore-prop": boolean; }): Element', gave the f…
11 Type 'T & { "ignore-prop": true; }' has no properties in common with type 'IntrinsicAttributes'.
12 …Overload 2 of 3, '(attr: { b: number; a: string; "ignore-prop": boolean; }): Element', gave the fo…
13 …Type 'T & { "ignore-prop": true; }' is not assignable to type 'IntrinsicAttributes & { b: number; …
14 … missing in type '{ b: number; } & { "ignore-prop": true; }' but required in type '{ b: number; a:…
16 …Type 'T & { "ignore-prop": true; }' is not assignable to type 'IntrinsicAttributes & { b: unknown;…
17 …Property 'a' is missing in type '{ b: number; } & { "ignore-prop": true; }' but required in type '…
24 …declare function OverloadComponent<U>(attr: {b: U, a: string, "ignore-prop": boolean}): JSX.Elemen…
35 !!! error TS2769: Overload 2 of 3, '(attr: { b: unknown; a: string; "ignore-prop": boolean; }): E…
39 …is declared here on type 'IntrinsicAttributes & { b: unknown; a: string; "ignore-prop": boolean; }'
[all …]
DcheckJsFiles_skipDiagnostics.types7 /// @ts-ignore
12 /// @ts-ignore
17 /// @ts-ignore
30 // @ts-ignore
40 /* @ts-ignore */
48 /* @ts-ignore
58 // @ts-ignore: no call signature
DcheckJsFiles_skipDiagnostics.symbols6 /// @ts-ignore
10 /// @ts-ignore
14 /// @ts-ignore
23 // @ts-ignore
32 /* @ts-ignore */
39 /* @ts-ignore
48 // @ts-ignore: no call signature
DtsxStatelessFunctionComponentsWithTypeArguments5.types35 declare function ComponentSpecific1<U>(l: { prop: U, "ignore-prop": number }): JSX.Element;
36 >ComponentSpecific1 : <U>(l: { prop: U; "ignore-prop": number;}) => JSX.Element
37 >l : { prop: U; "ignore-prop": number; }
39 >"ignore-prop" : number
47 let a1 = <ComponentSpecific {...arg} ignore-prop="hi" />; // U is number
49 ><ComponentSpecific {...arg} ignore-prop="hi" /> : JSX.Element
52 >ignore-prop : string
54 let a2 = <ComponentSpecific1 {...arg} ignore-prop={10} />; // U is number
56 ><ComponentSpecific1 {...arg} ignore-prop={10} /> : JSX.Element
57 >ComponentSpecific1 : <U>(l: { prop: U; "ignore-prop": number; }) => JSX.Element
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments4.types6 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
9 declare function OverloadComponent<U>(attr: {b: U, a: string, "ignore-prop": boolean}): JSX.Element;
10 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boo…
11 >attr : { b: U; a: string; "ignore-prop": boolean; }
14 >"ignore-prop" : boolean
18 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
36 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
42 let a2 = <OverloadComponent {...arg1} ignore-prop /> // missing a
44 ><OverloadComponent {...arg1} ignore-prop /> : JSX.Element
45 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
[all …]
DcheckJsFiles_skipDiagnostics.errors.txt11 /// @ts-ignore
14 /// @ts-ignore
17 /// @ts-ignore
24 // @ts-ignore
32 /* @ts-ignore */
41 /* @ts-ignore
52 // @ts-ignore: no call signature
Dts-ignore.errors.txt1 tests/cases/conformance/directives/ts-ignore.ts(13,5): error TS2322: Type 'string' is not assignabl…
4 ==== tests/cases/conformance/directives/ts-ignore.ts (1 errors) ====
5 // @ts-ignore with additional commenting
8 // @ts-ignore with additional commenting
11 // @ts-ignore
14 // @ts-ignore
DtsxStatelessFunctionComponentOverload2.types39 >obj2 : { yy: number; "ignore-prop": string; }
40 >{ yy: 500, "ignore-prop": "hello"} : { yy: number; "ignore-prop": string; }
46 "ignore-prop": "hello"
47 >"ignore-prop" : string
109 const c8 = <OneThing ignore-prop={100} />
111 ><OneThing ignore-prop={100} /> : JSX.Element
113 >ignore-prop : number
116 const c9 = <OneThing {...{ "ignore-prop":200 }} />;
118 ><OneThing {...{ "ignore-prop":200 }} /> : JSX.Element
120 >{ "ignore-prop":200 } : { "ignore-prop": number; }
[all …]
/third_party/selinux/libselinux/src/
Dselinuxswig.i45 %ignore freecon;
46 %ignore freeconary;
49 %ignore set_matchpathcon_printf;
50 %ignore set_matchpathcon_invalidcon;
51 %ignore set_matchpathcon_canoncon;
53 %ignore avc_add_callback;
56 %ignore avc_netlink_acquire_fd;
57 %ignore avc_netlink_release_fd;
58 %ignore avc_netlink_check_nb;
/third_party/openssl/
D.gitattributes6 fuzz/corpora/** export-ignore
7 Configurations/*.norelease.conf export-ignore
8 .* export-ignore
9 util/mktar.sh export-ignore
10 boringssl export-ignore
11 krb5 export-ignore
12 pyca-cryptography export-ignore
/third_party/openssl/test/ssl-tests/
D05-sni.conf9 test-4 = 4-SNI-bad-sni-ignore-mismatch
11 test-6 = 6-SNI-bad-clienthello-sni-ignore-mismatch
141 [4-SNI-bad-sni-ignore-mismatch]
142 ssl_conf = 4-SNI-bad-sni-ignore-mismatch-ssl
144 [4-SNI-bad-sni-ignore-mismatch-ssl]
145 server = 4-SNI-bad-sni-ignore-mismatch-server
146 client = 4-SNI-bad-sni-ignore-mismatch-client
147 server2 = 4-SNI-bad-sni-ignore-mismatch-server
149 [4-SNI-bad-sni-ignore-mismatch-server]
154 [4-SNI-bad-sni-ignore-mismatch-client]
[all …]
/third_party/skia/third_party/externals/tint/test/intrinsics/ignore/
Duniform_buffer.wgsl.expected.wgsl1 intrinsics/ignore/uniform_buffer.wgsl:10:5 warning: use of deprecated intrinsic
2 ignore(u);
5 intrinsics/ignore/uniform_buffer.wgsl:11:5 warning: use of deprecated intrinsic
6 ignore(u.i);
18 ignore(u);
19 ignore(u.i);
Dstorage_buffer.wgsl.expected.wgsl1 intrinsics/ignore/storage_buffer.wgsl:10:5 warning: use of deprecated intrinsic
2 ignore(s);
5 intrinsics/ignore/storage_buffer.wgsl:11:5 warning: use of deprecated intrinsic
6 ignore(s.i);
18 ignore(s);
19 ignore(s.i);
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dprefer-ts-expect-error.md1 # Recommends using `@ts-expect-error` over `@ts-ignore` (`prefer-ts-expect-error`)
3 …placing a single-line comment or a comment block line starting with `@ts-ignore` immediately befor…
4 …o way to know if a `@ts-ignore` is actually suppressing an error without manually investigating wh…
6 This means its easy for `@ts-ignore`s to be forgotten about, and remain in code even after the erro…
7 …rror arises on that line it'll be suppressed by the forgotten about `@ts-ignore`, and so be missed.
11 This directive operates in the same manner as `@ts-ignore`, but will error if the line it's meant t…
15 This rule looks for usages of `@ts-ignore`, and flags them to be replaced with `@ts-expect-error`.
20 // @ts-ignore
26 * @ts-ignore */
29 /** @ts-ignore */
[all …]
/third_party/cJSON/
D.gitattributes4 .gitattributes export-ignore
5 .gitignore export-ignore
6 .github export-ignore
7 .editorconfig export-ignore
8 .travis.yml export-ignore
/third_party/node/deps/npm/node_modules/ignore-walk/
DREADME.md1 # ignore-walk
4 Status](https://travis-ci.org/npm/ignore-walk.svg?branch=master)](https://travis-ci.org/npm/ignore-…
8 Walk a directory creating a list of entries, parsing any `.ignore`
14 const walk = require('ignore-walk')
22 ignoreFiles: [ '.gitignore' ], // list of filenames. defaults to ['.ignore']
38 * `ignoreFiles` Filenames to treat as ignore files. The default is
39 `['.ignore']`. (This is where you'd put `.gitignore` or
40 `.npmignore` or whatever.) If multiple ignore files are in a
45 they are not excluded by any of the ignore rules. If not set, then
53 For example, given the rules `*` (ignore everything) and `!/a/b/c`

12345678910>>...85