Home
last modified time | relevance | path

Searched refs:Required (Results 1 – 25 of 482) sorted by relevance

12345678910>>...20

/third_party/protobuf/conformance/
Dfailure_list_php.txt9 Required.Proto2.JsonInput.StoresDefaultPrimitive.Validator
10 Required.Proto3.JsonInput.DoubleFieldTooSmall
11 Required.Proto3.JsonInput.FloatFieldTooLarge
12 Required.Proto3.JsonInput.FloatFieldTooSmall
13 Required.Proto3.JsonInput.Int32FieldNotInteger
14 Required.Proto3.JsonInput.Int64FieldNotInteger
15 Required.Proto3.JsonInput.OneofFieldDuplicate
16 Required.Proto3.JsonInput.RepeatedFieldWrongElementTypeExpectingStringsGotInt
17 Required.Proto3.JsonInput.RepeatedListValue.JsonOutput
18 Required.Proto3.JsonInput.RepeatedListValue.ProtobufOutput
[all …]
Dfailure_list_ruby.txt79 Required.DurationProtoInputTooLarge.JsonOutput
80 Required.DurationProtoInputTooSmall.JsonOutput
81 Required.Proto2.JsonInput.StoresDefaultPrimitive.Validator
82 Required.Proto3.JsonInput.DoubleFieldMaxNegativeValue.JsonOutput
83 Required.Proto3.JsonInput.DoubleFieldMaxNegativeValue.ProtobufOutput
84 Required.Proto3.JsonInput.DoubleFieldMinPositiveValue.JsonOutput
85 Required.Proto3.JsonInput.DoubleFieldMinPositiveValue.ProtobufOutput
86 Required.Proto3.JsonInput.DoubleFieldNan.JsonOutput
87 Required.Proto3.JsonInput.DurationMinValue.JsonOutput
88 Required.Proto3.JsonInput.DurationRepeatedValue.JsonOutput
[all …]
Dfailure_list_js.txt86 Required.Proto3.ProtobufInput.RepeatedScalarMessageMerge.ProtobufOutput
87 Required.Proto3.ProtobufInput.ValidDataMap.STRING.MESSAGE.MergeValue.ProtobufOutput
88 Required.Proto2.ProtobufInput.ValidDataRepeated.BOOL.PackedInput.ProtobufOutput
89 Required.Proto2.ProtobufInput.ValidDataRepeated.DOUBLE.PackedInput.ProtobufOutput
90 Required.Proto2.ProtobufInput.ValidDataRepeated.ENUM.PackedInput.ProtobufOutput
91 Required.Proto2.ProtobufInput.ValidDataRepeated.FIXED32.PackedInput.ProtobufOutput
92 Required.Proto2.ProtobufInput.ValidDataRepeated.FIXED64.PackedInput.ProtobufOutput
93 Required.Proto2.ProtobufInput.ValidDataRepeated.FLOAT.PackedInput.ProtobufOutput
94 Required.Proto2.ProtobufInput.ValidDataRepeated.INT32.PackedInput.ProtobufOutput
95 Required.Proto2.ProtobufInput.ValidDataRepeated.INT64.PackedInput.ProtobufOutput
[all …]
Dfailure_list_java.txt38 Required.Proto3.JsonInput.EnumFieldNotQuoted
39 Required.Proto3.JsonInput.Int32FieldLeadingZero
40 Required.Proto3.JsonInput.Int32FieldNegativeWithLeadingZero
41 Required.Proto3.JsonInput.Int32FieldPlusSign
42 Required.Proto3.JsonInput.RepeatedFieldWrongElementTypeExpectingStringsGotBool
43 Required.Proto3.JsonInput.RepeatedFieldWrongElementTypeExpectingStringsGotInt
44 Required.Proto3.JsonInput.StringFieldNotAString
45 Required.Proto3.ProtobufInput.PrematureEofInDelimitedDataForKnownNonRepeatedValue.MESSAGE
46 Required.Proto3.ProtobufInput.PrematureEofInDelimitedDataForKnownRepeatedValue.MESSAGE
47 Required.Proto2.ProtobufInput.PrematureEofInDelimitedDataForKnownNonRepeatedValue.MESSAGE
[all …]
Dtext_format_failure_list_java.txt5 Required.Proto3.TextFormatInput.AnyField.ProtobufOutput
6 Required.Proto3.TextFormatInput.AnyField.TextFormatOutput
Dtext_format_failure_list_python.txt4 Required.Proto3.TextFormatInput.FloatFieldMaxValue.ProtobufOutput
5 Required.Proto3.TextFormatInput.FloatFieldMaxValue.TextFormatOutput
/third_party/typescript/tests/baselines/reference/
DrequiredMappedTypeModifierTrumpsVariance.types2 const a: Required<{ a?: 1; x: 1 }> = { a: 1, x: 1 };
3 >a : Required<{ a?: 1; x: 1; }>
12 const b: Required<{ b?: 1; x: 1 }> = { b: 1, x: 1 };
13 >b : Required<{ b?: 1; x: 1; }>
23 >A : Required<{ a?: 1; x: 1; }>
24 >a : Required<{ a?: 1; x: 1; }>
27 >B : Required<{ b?: 1; x: 1; }>
28 >b : Required<{ b?: 1; x: 1; }>
31 >A = b : Required<{ b?: 1; x: 1; }>
32 >A : Required<{ a?: 1; x: 1; }>
[all …]
DrequiredMappedTypeModifierTrumpsVariance.errors.txt1 …error TS2741: Property 'a' is missing in type 'Required<{ b?: 1; x: 1; }>' but required in type 'R…
2 …error TS2741: Property 'b' is missing in type 'Required<{ a?: 1; x: 1; }>' but required in type 'R…
3 …mpsVariance.ts(8,3): error TS2339: Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>…
4 …mpsVariance.ts(9,3): error TS2339: Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>…
7 …Property 'a' is missing in type 'Required<{ b?: 1; x: 1; }>' but required in type 'Required<{ a?: …
10 …Property 'b' is missing in type 'Required<{ a?: 1; x: 1; }>' but required in type 'Required<{ b?: …
11 …psVariance.ts(21,6): error TS2339: Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>…
12 …psVariance.ts(22,6): error TS2339: Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>…
16 const a: Required<{ a?: 1; x: 1 }> = { a: 1, x: 1 };
17 const b: Required<{ b?: 1; x: 1 }> = { b: 1, x: 1 };
[all …]
DmappedTypes6.types50 function f1<T>(x: Required<T>, y: T, z: Partial<T>) {
51 >f1 : <T>(x: Required<T>, y: T, z: Partial<T>) => void
52 >x : Required<T>
57 >x = x : Required<T>
58 >x : Required<T>
59 >x : Required<T>
63 >x : Required<T>
68 >x : Required<T>
72 >y = x : Required<T>
74 >x : Required<T>
[all …]
DrequiredMappedTypeModifierTrumpsVariance.symbols2 const a: Required<{ a?: 1; x: 1 }> = { a: 1, x: 1 };
4 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
10 const b: Required<{ b?: 1; x: 1 }> = { b: 1, x: 1 };
12 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
34 a.b; // Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>'.
37 b.a; // Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>'.
44 a: Required<T>;
46 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
83 aa.a.b; // Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>'.
88 bb.a.a; // Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>'.
DmappedTypes6.errors.txt1 …types/mapped/mappedTypes6.ts(23,5): error TS2322: Type 'T' is not assignable to type 'Required<T>'.
2 …ped/mappedTypes6.ts(24,5): error TS2322: Type 'Partial<T>' is not assignable to type 'Required<T>'.
5 tests/cases/conformance/types/mapped/mappedTypes6.ts(37,5): error TS2322: Type 'Required<T>' is not…
12 …types/mapped/mappedTypes6.ts(42,5): error TS2322: Type 'T' is not assignable to type 'Required<T>'.
13 …ped/mappedTypes6.ts(43,5): error TS2322: Type 'Partial<T>' is not assignable to type 'Required<T>'.
17 …ypes/mapped/mappedTypes6.ts(57,5): error TS2322: Type '{}' is not assignable to type 'Required<T>'.
21 …S2739: Type '{ a: number; }' is missing the following properties from type 'Required<Foo>': b, c, d
22 …ype '{ a: number; b: number; }' is missing the following properties from type 'Required<Foo>': c, d
23 …'d' is missing in type '{ a: number; b: number; c: number; }' but required in type 'Required<Foo>'.
50 function f1<T>(x: Required<T>, y: T, z: Partial<T>) {
[all …]
DmappedTypesArraysTuples.js7 type T02 = Required<[number, string?, ...boolean[]]>;
11 type T12 = Required<string[]>;
14 type T15 = Required<ReadonlyArray<string>>;
18 type T22 = Required<(string | undefined)[]>;
21 type T25 = Required<ReadonlyArray<string | undefined>>;
37 type T54 = ReadWrite<Required<T53>>;
136 declare type T02 = Required<[number, string?, ...boolean[]]>;
139 declare type T12 = Required<string[]>;
142 declare type T15 = Required<ReadonlyArray<string>>;
145 declare type T22 = Required<(string | undefined)[]>;
[all …]
DrequiredMappedTypeModifierTrumpsVariance.js2 const a: Required<{ a?: 1; x: 1 }> = { a: 1, x: 1 };
3 const b: Required<{ b?: 1; x: 1 }> = { b: 1, x: 1 };
13 a: Required<T>;
DmappedTypes6.js22 function f1<T>(x: Required<T>, y: T, z: Partial<T>) {
36 function f2<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>) {
56 function f3<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>) {
98 declare let x2: Required<Foo>;
249 declare function f1<T>(x: Required<T>, y: T, z: Partial<T>): void;
253 declare function f2<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>): void;
254 declare function f3<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>): void;
266 declare let x2: Required<Foo>;
DmappedTypesArraysTuples.symbols25 type T02 = Required<[number, string?, ...boolean[]]>;
27 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
37 type T12 = Required<string[]>;
39 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
51 type T15 = Required<ReadonlyArray<string>>;
53 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
64 type T22 = Required<(string | undefined)[]>;
66 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
78 type T25 = Required<ReadonlyArray<string | undefined>>;
80 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
[all …]
DidenticalTypesNoDifferByCheckOrder.symbols17 type SomePropsX = Required<Pick<SomeProps, "x">> & Omit<SomeProps, "x">;
19 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
40 type SomePropsCloneX = Required<Pick<SomePropsClone, "x">> & Omit<SomePropsClone, "x">;
42 >Required : Symbol(Required, Decl(lib.es5.d.ts, --, --))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMScheduleA9.td459 InstrStage<1, [A9_DRegsVFP], 0, Required>,
467 InstrStage<1, [A9_DRegsVFP], 0, Required>,
476 InstrStage<1, [A9_DRegsVFP], 0, Required>,
486 InstrStage<1, [A9_DRegsVFP], 0, Required>,
495 InstrStage<1, [A9_DRegsVFP], 0, Required>,
504 InstrStage<1, [A9_DRegsVFP], 0, Required>,
512 InstrStage<1, [A9_DRegsVFP], 0, Required>,
521 InstrStage<1, [A9_DRegsVFP], 0, Required>,
529 InstrStage<1, [A9_DRegsVFP], 0, Required>,
538 InstrStage<1, [A9_DRegsVFP], 0, Required>,
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDAGDeltaAlgorithm.cpp119 const changeset_ty &Required) { in UpdatedSearchState() argument
120 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
151 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
158 const changeset_ty &Required; member in __anona13ee6a50111::DeltaActiveSetHelper
164 DDAI.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
168 return DDAI.GetTestResult(S, Required); in ExecuteOneTest()
173 const changeset_ty &Required) in DeltaActiveSetHelper() argument
174 : DDAI(DDAI), Required(Required) {} in DeltaActiveSetHelper()
291 const changeset_ty &Required) { in GetTestResult() argument
292 changeset_ty Extended(Required); in GetTestResult()
[all …]
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypesArraysTuples.ts9 type T02 = Required<[number, string?, ...boolean[]]>;
13 type T12 = Required<string[]>;
16 type T15 = Required<ReadonlyArray<string>>;
20 type T22 = Required<(string | undefined)[]>;
23 type T25 = Required<ReadonlyArray<string | undefined>>;
39 type T54 = ReadWrite<Required<T53>>;
DmappedTypes6.ts24 function f1<T>(x: Required<T>, y: T, z: Partial<T>) {
38 function f2<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>) {
58 function f3<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>) {
100 declare let x2: Required<Foo>;
/third_party/typescript/tests/cases/compiler/
DrequiredMappedTypeModifierTrumpsVariance.ts1 const a: Required<{ a?: 1; x: 1 }> = { a: 1, x: 1 };
2 const b: Required<{ b?: 1; x: 1 }> = { b: 1, x: 1 };
12 a: Required<T>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DAMDGPUMetadataVerifier.h42 bool verifyEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required,
45 verifyScalarEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required,
49 bool Required);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DAMDGPUMetadataVerifier.cpp67 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyEntry() argument
71 return !Required; in verifyEntry()
76 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyScalarEntry() argument
79 return verifyEntry(MapNode, Key, Required, [=](msgpack::DocNode &Node) { in verifyScalarEntry()
85 StringRef Key, bool Required) { in verifyIntegerEntry() argument
86 return verifyEntry(MapNode, Key, Required, [this](msgpack::DocNode &Node) { in verifyIntegerEntry()
/third_party/grpc/summerofcode/
Dideas.md12 **Required skills for all projects:** git version control, collaborative
21 * **Required skills:** C programming language, C++ programming language.
25 …* **Required skills:** C programming language, C++ programming language, Python programming langua…
31 …* **Required skills:** Python programming language, open source development across multiple reposi…
35 …* **Required skills:** Python programming language, Bazel toolchain, Cython, open source developme…
/third_party/curl/tests/data/
Dtest59015 HTTP/1.1 407 Authorization Required swsclose
27 HTTP/1.1 407 Authorization Required to proxy me my dear
46 HTTP/1.1 407 Authorization Required swsclose
53 HTTP/1.1 407 Authorization Required to proxy me my dear

12345678910>>...20