HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 576 - 600 of 5875) sorted by null

<<21222324252627282930>>

  /external/autotest/server/site_tests/display_HotPlugAtBoot/
display_HotPlugAtBoot.py 42 errors = []
82 errors):
91 errors.append(error_message)
100 resolution, test_mirrored, errors):
103 if errors:
105 raise error.TestFail('; '.join(set(errors)))
107 raise error.TestError('; '.join(set(errors)))
  /external/fec/
exercise.c 7 #define FLAG_ERASURE 1 /* Randomly flag 50% of errors as erasures */
47 int errors; local
57 for(errors=0;errors <= NROOTS/2;errors++){
69 /* Make temp copy, seed with errors */
74 for(i=0;i<errors;i++){
99 if(derrors != errors){
101 printf(" decoder says %d errors, true number is %d\n",derrors,errors);
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
transpose_op.cc 43 errors::InvalidArgument("perm must be a vector, not ",
48 errors::InvalidArgument("transpose expects a vector of size ",
68 errors::InvalidArgument(d, " is out of range [0 .. ", dims, ")"));
78 errors::InvalidArgument(i, " is missing from 'perm' argument."));
111 errors::InvalidArgument("permutation of nonnegative int32s "
124 errors::InvalidArgument(d, " is not between 0 and ", size));
126 errors::InvalidArgument(d, " is duplicated in the input."));
  /external/tensorflow/tensorflow/core/kernels/
reshape_op.h 40 errors::InvalidArgument("sizes input must be 1-D, not ",
58 context->CtxFailure(errors::InvalidArgument(
66 errors::InvalidArgument("Reshape cannot infer the missing input size "
72 errors::InvalidArgument(
79 errors::InvalidArgument("Input to reshape is a tensor with ",
104 return errors::InvalidArgument(
111 return errors::InvalidArgument("Size ", d,
sparse_slice_op.cc 38 errors::InvalidArgument(
42 errors::InvalidArgument(
46 errors::InvalidArgument(
50 errors::InvalidArgument(
54 errors::InvalidArgument(
60 errors::InvalidArgument(
65 errors::InvalidArgument(
cwise_ops_common.cc 29 ctx->SetStatus(errors::Unimplemented(
35 // For speed, errors during compute are caught only via boolean flag, with no
37 // ops that have compute errors are integer division and mod, and the only
42 ctx->CtxFailure(errors::InvalidArgument("Integer division by zero"));
46 ctx->CtxFailure(errors::InvalidArgument(
50 errors::Internal("Unexpected error in binary operator "
51 "(only integer div and mod should have errors)"));
60 ctx->SetStatus(errors::InvalidArgument(
decode_image_op.cc 83 errors::InvalidArgument("Bad op type ", type_string()));
93 errors::InvalidArgument("channels must be 0, 1, 3, or 4, got ",
104 errors::InvalidArgument("Type must be uint8 or uint16, got ", dt));
121 errors::InvalidArgument("ratio must be 1, 2, 4, or 8, got ",
138 errors::InvalidArgument("dct_method must be one of "
151 errors::InvalidArgument("contents must be scalar, got shape ",
160 errors::InvalidArgument("Expected image (JPEG, PNG, or GIF), got ",
163 errors::InvalidArgument(
167 errors::InvalidArgument(FileFormatString(magic, input),
188 errors::InvalidArgument
    [all...]
  /external/tensorflow/tensorflow/python/lib/io/
tf_record.py 23 from tensorflow.python.framework import errors
72 with errors.raise_exception_on_not_ok_status() as status:
80 with errors.raise_exception_on_not_ok_status() as status:
82 except errors.OutOfRangeError:
109 with errors.raise_exception_on_not_ok_status() as status:
131 with errors.raise_exception_on_not_ok_status() as status:
136 with errors.raise_exception_on_not_ok_status() as status:
  /external/autotest/server/site_tests/display_HotPlugAtSuspend/
display_HotPlugAtSuspend.py 50 errors = []
81 errors):
96 errors.append("%s - %s" % (test_case, str(ex)))
115 errors.append("%s - %s" % (test_case, str(ex)))
121 errors):
130 errors.append("%s - %s" % (test_case, error_message))
135 resolution, test_mirrored, errors):
138 if errors:
140 raise error.TestFail('; '.join(set(errors)))
142 raise error.TestError('; '.join(set(errors)))
    [all...]
  /external/autotest/utils/
parallel.py 5 def __init__(self, str, errors):
7 self.errors = errors
62 errors = []
73 errors.append("%s failed" % fn.__name__)
81 if len(self.functions) > 0 and len(errors) == 0:
82 errors.append("Deadlock detected")
84 if len(errors) > 0:
85 msg = "Errors occurred during execution:"
86 msg = '\n'.join([msg] + errors)
    [all...]
  /external/guice/core/src/com/google/inject/internal/
AbstractBindingProcessor.java 60 AbstractBindingProcessor(Errors errors, ProcessedBindingData bindingData) {
61 super(errors);
75 errors.cannotBindToGuiceType(rawType.getSimpleName());
85 errors.bindingAlreadySet(key, original.getSource());
89 errors.errorCheckingDuplicateBinding(key, original.getSource(), t);
95 errors.jitBindingAlreadySet(key);
131 key.getTypeLiteral().getRawType(), source, errors); local
153 scoping = Scoping.makeInjectable(scoping, injector, errors);
160 binding.getInjector().initializeBinding(binding, errors.withSource(source))
    [all...]
Initializer.java 88 void validateOustandingInjections(Errors errors) {
91 pendingMembersInjectors.put(reference.instance, reference.validate(errors));
93 errors.merge(e.getErrors());
103 void injectAll(final Errors errors) {
108 reference.get(errors);
110 errors.merge(e.getErrors());
137 public MembersInjectorImpl<T> validate(Errors errors) throws ErrorsException
    [all...]
ProvisionListenerStackCallback.java 63 public T provision(Errors errors, InternalContext context, ProvisionCallback<T> callable)
65 Provision provision = new Provision(errors, context, callable);
78 throw errors
94 final Errors errors; field in class:ProvisionListenerStackCallback.Provision
103 public Provision(Errors errors, InternalContext context, ProvisionCallback<T> callable) {
106 this.errors = errors;
    [all...]
  /external/guice/core/src/com/google/inject/spi/
InjectionPoint.java 29 import com.google.inject.internal.Errors;
91 Errors errors = new Errors(field); local
94 key = Annotations.getKey(declaringType.getFieldType(field), field, annotations, errors);
96 errors.merge(e.getErrorMessages());
98 errors.merge(e.getErrors());
100 errors.throwConfigurationExceptionIfErrorsExist();
108 Errors errors = new Errors(member) local
242 Errors errors = new Errors(rawType); local
335 Errors errors = new Errors(); local
379 Errors errors = new Errors(); local
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_graph_utils_test.cc 49 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
53 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
57 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
66 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
70 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
74 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
78 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
82 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
87 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code());
136 ASSERT_EQ(errors::Code::INVALID_ARGUMENT, s.code())
    [all...]
  /external/autotest/server/site_tests/platform_TotalMemory/
platform_TotalMemory.py 67 errors = list()
70 errors.append('MemoryTotal is not consistent. variance=%dKB' %
76 errors.append('The difference between Free Memory readings '
80 if errors:
81 raise error.TestFail('; '.join(errors))
  /external/googletest/googletest/src/
gtest-typed-test.cc 67 Message errors; local
74 errors << "Test " << name << " is listed more than once.\n";
91 errors << "No test named " << name
100 errors << "You forgot to list test " << it->first << ".\n";
104 const std::string& errors_str = errors.GetString();
  /external/icu/icu4c/source/common/unicode/
idna.h 98 * The label might be modified according to the types of errors.
99 * Labels with severe errors will be left in (or turned into) their Unicode form.
121 * The label might be modified according to the types of errors.
144 * The domain name might be modified according to the types of errors.
145 * Labels with severe errors will be left in (or turned into) their Unicode form.
167 * The domain name might be modified according to the types of errors.
264 * Output container for IDNA processing errors.
274 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
276 * Were there IDNA processing errors?
277 * @return TRUE if there were processing errors
316 uint32_t errors, labelErrors; member in class:IDNAInfo
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-typed-test.cc 67 Message errors; local
74 errors << "Test " << name << " is listed more than once.\n";
91 errors << "No test named " << name
100 errors << "You forgot to list test " << it->first << ".\n";
104 const std::string& errors_str = errors.GetString();
  /external/libxml2/python/tests/
thread2.py 18 self.errors = []
23 self.errors.append(str)
55 ec = len(eh.errors)
57 print("FAILED: should have obtained errors")
70 if len(eh.errors) != ec+THREADS_COUNT*ec:
71 print("FAILED: did not obtain the correct number of errors")
85 if len(eh.errors) != ec+THREADS_COUNT*ec*2:
86 print("FAILED: did not obtain the correct number of errors")
  /external/syslinux/gpxe/src/usr/
ifmgmt.c 75 for ( i = 0 ; i < ( sizeof ( stats->errors ) /
76 sizeof ( stats->errors[0] ) ) ; i++ ) {
77 if ( stats->errors[i].count )
79 stats->errors[i].count,
80 strerror ( stats->errors[i].rc ) );
  /external/tensorflow/tensorflow/core/framework/
lookup_interface.cc 19 #include "tensorflow/core/lib/core/errors.h"
26 return errors::InvalidArgument("Input key shape ", shape.DebugString(),
36 return errors::InvalidArgument("Key must be type ", key_dtype(),
40 return errors::InvalidArgument("Value must be type ", value_dtype(),
57 return errors::InvalidArgument(
79 return errors::InvalidArgument(
  /external/v8/testing/gtest/src/
gtest-typed-test.cc 67 Message errors; local
74 errors << "Test " << name << " is listed more than once.\n";
91 errors << "No test named " << name
100 errors << "You forgot to list test " << it->first << ".\n";
104 const std::string& errors_str = errors.GetString();
  /external/valgrind/none/tests/
ioctl_moans.stderr.exp 2 This could cause spurious value errors to appear.
5 This could cause spurious value errors to appear.
8 This could cause spurious value errors to appear.
11 This could cause spurious value errors to appear.
14 This could cause spurious value errors to appear.
17 This could cause spurious value errors to appear.
20 This could cause spurious value errors to appear.
23 This could cause spurious value errors to appear.
26 This could cause spurious value errors to appear.
29 This could cause spurious value errors to appear
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/vkjson/
vkjson.h 66 std::string* errors);
72 std::string* errors);
78 std::string* errors);
92 std::string* errors) {
93 return VkJsonDeviceFromJson(json, properties, errors);

Completed in 1504 milliseconds

<<21222324252627282930>>