Home
last modified time | relevance | path

Searched full:broken (Results 1 – 25 of 5101) sorted by relevance

12345678910>>...205

/external/aws-sdk-java-v2/services/kinesis/src/main/resources/codegen-resources/
Dcustomization.config25 …"Account endpoint targeting control operation type in ADC regions": "Test is broken for client tes…
26 …"Account endpoint targeting control operation type": "Test is broken for client tests, need operat…
27 …"Account endpoint targeting data operation type in ADC regions": "Test is broken for client tests,…
28 …"Account endpoint targeting data operation type": "Test is broken for client tests, need operation…
29 …"Account endpoint with Dual Stack and FIPS enabled": "Test is broken for client tests, need operat…
30 …"Account endpoint with Dual Stack enabled": "Test is broken for client tests, need operationInputs…
31 …"Account endpoint with FIPS and DualStack disabled": "Test is broken for client tests, need operat…
32 …"Account endpoint with FIPS and DualStack enabled for cn regions.": "Test is broken for client tes…
33 … "Account endpoint with FIPS enabled": "Test is broken for client tests, need operationInputs.",
34 …int with fips targeting control operation type in ADC regions": "Test is broken for client tests, …
[all …]
/external/cronet/stable/net/http/
Dbroken_alternative_services.h25 // Contains information about a broken alternative service, and the context in
26 // which it's known to be broken.
41 // The context in which the alternative service is known to be broken in. Used
46 // Stores broken alternative services and when their brokenness expires.
50 // Stores how many times an alternative service has been marked broken.
60 // This class tracks HTTP alternative services that have been marked as broken.
62 // exponential back-off formula: each time an alt-svc is marked broken, the
64 // delay. This prevents broken alt-svcs from being retried too often by the
74 // Called when a broken alternative service's expiration time is reached.
81 // |delegate| will be notified when a broken alternative service expires. It
[all …]
Dbroken_alternative_services_unittest.cc23 // Initial delay for broken alternative services.
248 // Mark |alternative_service1| as broken until default network changes. in TEST_F()
250 // |alternative_service1| should be considered as currently broken and in TEST_F()
251 // recently broken. in TEST_F()
265 // |alternative_service1| should still be considered as currently broken and in TEST_F()
266 // recently broken. in TEST_F()
275 // Mark |alternative_service2| as broken until default network changes. in TEST_F()
277 // |alternative_service2| should be considered as currently broken and in TEST_F()
278 // recently broken. in TEST_F()
286 // Mark |alternative_service3| as broken. in TEST_F()
[all …]
/external/cronet/tot/net/http/
Dbroken_alternative_services.h25 // Contains information about a broken alternative service, and the context in
26 // which it's known to be broken.
41 // The context in which the alternative service is known to be broken in. Used
46 // Stores broken alternative services and when their brokenness expires.
50 // Stores how many times an alternative service has been marked broken.
60 // This class tracks HTTP alternative services that have been marked as broken.
62 // exponential back-off formula: each time an alt-svc is marked broken, the
64 // delay. This prevents broken alt-svcs from being retried too often by the
74 // Called when a broken alternative service's expiration time is reached.
81 // |delegate| will be notified when a broken alternative service expires. It
[all …]
Dbroken_alternative_services_unittest.cc23 // Initial delay for broken alternative services.
248 // Mark |alternative_service1| as broken until default network changes. in TEST_F()
250 // |alternative_service1| should be considered as currently broken and in TEST_F()
251 // recently broken. in TEST_F()
265 // |alternative_service1| should still be considered as currently broken and in TEST_F()
266 // recently broken. in TEST_F()
275 // Mark |alternative_service2| as broken until default network changes. in TEST_F()
277 // |alternative_service2| should be considered as currently broken and in TEST_F()
278 // recently broken. in TEST_F()
286 // Mark |alternative_service3| as broken. in TEST_F()
[all …]
/external/grpc-grpc/src/core/lib/experiments/
Drollouts.yaml19 # - broken - the experiment defaults to off and is not tested
32 # e.g the following would mark the experiment as broken on ios, false on
37 # ios: broken
51 ios: broken
53 windows: broken
59 ios: broken
63 windows: broken
67 ios: broken
71 windows: broken
75 ios: broken
[all …]
/external/igt-gpu-tools/tests/i915/
Dgem_lut_handle.c50 #define BROKEN 0x2 macro
61 !!(flags & USE_LUT) ^ !!(flags & BROKEN) ? 0 : handle; in exec()
126 if (flags & BROKEN) { in many_exec()
180 fail(exec(fd, handle, BROKEN));
185 fail(exec(fd, handle, USE_LUT | BROKEN));
201 fail(many_exec(fd, handle, i-1, i-1, NORMAL | BROKEN));
202 fail(many_exec(fd, handle, i-1, i, NORMAL | BROKEN));
203 fail(many_exec(fd, handle, i-1, i+1, NORMAL | BROKEN));
204 fail(many_exec(fd, handle, i, i-1, NORMAL | BROKEN));
205 fail(many_exec(fd, handle, i, i, NORMAL | BROKEN));
[all …]
/external/clang/test/SemaObjC/
Dmethod-conflict-1.m15 - (void)myMethod1:(NSObject *)object; // broken-note {{previous definition is here}}
21 - (void)myMethod1:(NSArray *)object { // broken-warning {{conflicting parameter types in implementa…
30 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
31 - (void)myMethod1:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
35 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementat…
37 - (void)myMethod1:(MyClass<MyProtocol> *)object { // broken-warning {{conflicting parameter types i…
47 - (void) test1:(A*) object; // broken-note {{previous definition is here}}
52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of …
58 - (void) test1:(id) object; // broken-note {{previous definition is here}}
62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of …
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DInputOutputExceptionTest.java27 fail("Input must be broken."); in testIOExceptionOnLoad()
30 assertEquals("java.io.IOException: Broken 2", e.getMessage()); in testIOExceptionOnLoad()
37 fail("Output must be broken."); in testIOExceptionOnDump()
40 assertEquals("java.io.IOException: Broken 12", e.getMessage()); in testIOExceptionOnDump()
48 throw new IOException("Broken 1"); in read()
53 throw new IOException("Broken 2"); in read()
58 throw new IOException("Broken 3"); in close()
66 throw new IOException("Broken 10"); in close()
71 throw new IOException("Broken 11"); in flush()
76 throw new IOException("Broken 12"); in write()
/external/ltp/testcases/network/stress/interface/
D00_Descriptions.txt2 Verify the IPv4/IPv6 connectivity is not broken when ip/ifconfig
6 Verify the IPv4 connectivity is not broken when ifconfig
10 Verify the IPv4/IPv6 connectivity is not broken when ip/ifconfig adds,
14 Verify the IPv4/IPv6 connectivity is not broken when ip/ifconifg
18 Verify the IPv4/IPv6 connectivity is not broken when the ip/route adds,
22 Verify the IPv4/IPv6 connectivity is not broken when the ip/route
26 Verify the IPv4/IPv6 connectivity is not broken when ip/ifconfig
/external/antlr/runtime/Python/unittests/
Dtestexceptions.py18 @testbase.broken("FIXME", Exception)
28 @testbase.broken("FIXME", Exception)
38 @testbase.broken("FIXME", Exception)
48 @testbase.broken("FIXME", Exception)
58 @testbase.broken("FIXME", Exception)
68 @testbase.broken("FIXME", Exception)
78 @testbase.broken("FIXME", Exception)
88 @testbase.broken("FIXME", Exception)
/external/antlr/runtime/Python3/unittests/
Dtestexceptions.py18 @testbase.broken("FIXME", Exception)
28 @testbase.broken("FIXME", Exception)
38 @testbase.broken("FIXME", Exception)
48 @testbase.broken("FIXME", Exception)
58 @testbase.broken("FIXME", Exception)
68 @testbase.broken("FIXME", Exception)
78 @testbase.broken("FIXME", Exception)
88 @testbase.broken("FIXME", Exception)
/external/toybox/tests/
Dsh.test17 [ -z "$TEST_HOST" ] && : ${BROKEN=true}
122 $BROKEN testing '<< trailing \' $'cat<<EOF 2>/dev/null\nabcde\nnext\\\nEOF\nEOF' \
124 $BROKEN testing '<< trailing \ 2' $'cat<<EOF\nabcde\nEO\\\nF\necho hello' \
129 $BROKEN testing '\\n in <<EOF' $'cat<<EO\\\nF\n$PATH\nEOF\n' "$PATH\n" "" ""
131 $BROKEN testing '\\n in HERE terminator' $'cat<<EOF\nabc\nE\\\nOF\necho hello\n' \
156 $BROKEN testing 'prefix is local for builtins' 'abc=123; abc=def unset abc; echo $abc' \
158 $BROKEN testing 'prefix localizes magic vars' \
164 $BROKEN testing '$_ with functions' 'true; x(){ echo $_;}; x abc; echo $_' \
181 $BROKEN testing 'eval6' $'false; eval \'echo $?\'' '1\n' '' ''
184 $BROKEN testing 'eval9' $'A=echo; false; eval \'$A $?\'' '1\n' '' ''
[all …]
Dfind.test88 ln -s ../broken dir/link2
141 ln -s nowhere broken
142 testing "-H broken" "find -H broken" "broken\n" "" ""
143 testing "-L broken" "find -L broken" "broken\n" "" ""
152 rm -rf dir broken perm irrelevant
165 skipnot [ "$(uname)" != "Darwin" ] # Darwin's towlower() is broken.
/external/autotest/site_utils/
Ddut_status.py6 """Report whether DUTs are working or broken.
11 determine whether they're "working" or "broken". For purposes of
12 the script, "broken" means "the DUT requires manual intervention
14 broken". The status determination is based on the history of
53 -n/--broken - Only include hosts in a non-working state. Hosts
64 surrounding the DUT's last change from working to broken,
69 * With the --working or --broken options, the list of host names
76 --broken options.
87 'NO' means the DUT is broken. That diagnosis is based on a job that
98 job's logs. The status indicates the working or broken status after
[all …]
Dbalance_pools.py8 This command takes all broken DUTs in a specific pool for specific
10 of spares. The command is meant primarily for replacing broken DUTs
40 The command attempts to remove all broken DUTs from the target POOL
49 If not enough working spares are available, broken DUTs may be left
52 When reducing pool size, working DUTs will be returned after broken
79 # number of broken models against. It seemed like the best choice that
162 + Broken - the DUT is unable to run tests, or it is locked.
164 DUT may be either working or broken.
182 @property broken_hosts The list of this pool's broken DUTs.
241 values indicate spares are needed to replace broken DUTs in
[all …]
/external/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp92 EXPECT_EQ(B, true) << "Bool serialization broken"; in TEST_F()
121 EXPECT_EQ(I, 21) << "Bool serialization broken"; in TEST_F()
158 EXPECT_EQ(s8, -101) << "int8_t serialization broken"; in TEST_F()
159 EXPECT_EQ(u8, 250) << "uint8_t serialization broken"; in TEST_F()
160 EXPECT_EQ(s16, -10000) << "int16_t serialization broken"; in TEST_F()
161 EXPECT_EQ(u16, 10000) << "uint16_t serialization broken"; in TEST_F()
162 EXPECT_EQ(s32, -1000000000) << "int32_t serialization broken"; in TEST_F()
163 EXPECT_EQ(u32, 1000000000ULL) << "uint32_t serialization broken"; in TEST_F()
164 EXPECT_EQ(s64, -10000000000) << "int64_t serialization broken"; in TEST_F()
165 EXPECT_EQ(u64, 10000000000ULL) << "uint64_t serialization broken"; in TEST_F()
[all …]
/external/clang/tools/scan-build-py/tests/functional/src/build/
DMakefile23 $(OBJDIR)/broken-one.o: $(SRCDIR)/broken-one.c
24 $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/broken-one.c
26 $(OBJDIR)/broken-two.o: $(SRCDIR)/broken-two.c
27 $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/broken-two.c
36 build_broken: $(OBJDIR)/main.o $(OBJDIR)/broken-one.o $(OBJDIR)/broken-two.o
/external/clang/tools/scan-build-py/tests/functional/src/compilation_database/
Dbuild_broken.json.in10 "command": "cc -c -o broken-one.o broken-one.c -Wall -DDEBUG \"-Dvariable=value with space\"",
11 "file": "${path}/broken-one.c"
16 "command": "g++ -c -o broken-two.o broken-two.c -Wall -DDEBUG -Dvariable=value",
17 "file": "${path}/broken-two.c"
/external/musl/
DWHATSNEW139 fixed broken %N$ positional argument specifiers in printf.
165 fixed broken sendmsg/recvmsg functions on x86_64 (caused by incorrect
168 fixed broken sigsetjmp asm on x86_64.
221 - broken select timeouts due to incorrect timeval definition
322 - broken FD_* macros on 64-bit targets
526 - iconv_open wrongly rejecting most dest charsets (broken in 0.8.0)
527 - sysconf failure when correct value is -1 (broken in 0.8.8)
564 - mbsnrtowcs and wcsnrtombs were completely broken (bad exit logic)
585 - broken strrchr(str, 0)
586 - broken mbsinit(0)
[all …]
/external/rust/android-crates-io/crates/diplomat_core/src/hir/snapshots/
Ddiplomat_core__hir__attrs__tests__iterator.snap5 Lowering error in Broken::iterable_no_return: Iterables must return a custom type
6 Lowering error in Broken::iterable_no_self: Iterables must take self
7 Lowering error in Broken::iterable_non_custom: Cannot mark type as iterable twice
8 Lowering error in Broken::iterable_non_custom: Iterables must return a custom opaque type
/external/trusty/musl/
DWHATSNEW139 fixed broken %N$ positional argument specifiers in printf.
165 fixed broken sendmsg/recvmsg functions on x86_64 (caused by incorrect
168 fixed broken sigsetjmp asm on x86_64.
221 - broken select timeouts due to incorrect timeval definition
322 - broken FD_* macros on 64-bit targets
526 - iconv_open wrongly rejecting most dest charsets (broken in 0.8.0)
527 - sysconf failure when correct value is -1 (broken in 0.8.8)
564 - mbsnrtowcs and wcsnrtombs were completely broken (bad exit logic)
585 - broken strrchr(str, 0)
586 - broken mbsinit(0)
[all …]
/external/llvm/bindings/go/llvm/
Danalysis.go39 broken := C.LLVMVerifyModule(m.C, C.LLVMVerifierFailureAction(a), &cmsg)
43 if broken != 0 {
51 var verifyFunctionError = errors.New("Function is broken")
56 broken := C.LLVMVerifyFunction(f.C, C.LLVMVerifierFailureAction(a))
60 if broken != 0 {
/external/mesa3d/src/freedreno/ci/
Dtraces-freedreno.yml35 label: [skip, broken]
57 label: [skip, broken]
70 label: [skip, broken, slow]
71 text: Broken minimap rendering since around !14643
239 label: [broken]
243 label: [broken]
401 label: [broken]
409 label: [broken]
455 label: [skip, broken, flakes]
457 label: [skip, broken, flakes]
[all …]
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/
DDoc.java49 * be broken.
55 * broken independently of each other, to fill in the {@link Level}.
60 * A {@code FORCED} {@link Break} will always be broken, and a {@link Level} it appears in will
116 * Return the width of a {@code Doc}, or {@code Float.POSITIVE_INFINITY} if it must be broken.
146 * @return the width, or {@code Float.POSITIVE_INFINITY} if it must be broken
254 State broken = in computeBreaks() local
257 return state.withColumn(broken.column); in computeBreaks()
351 * @return the width, or {@code Float.POSITIVE_INFINITY} if any {@link Doc} must be broken
563 * @param flat the text when not broken
575 * @param flat the text when not broken
[all …]

12345678910>>...205