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

<<21222324252627282930>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
unicode_internal.py 22 return codecs.unicode_internal_encode(input, self.errors)[0]
26 return codecs.unicode_internal_decode(input, self.errors)[0]
  /external/boringssl/src/util/fipstools/
ar.go 21 "errors"
37 return nil, errors.New("ar: not an archive file")
51 return nil, errors.New("ar: error reading file header: " + err.Error())
58 return nil, errors.New("ar: failed to parse file size: " + err.Error())
69 return nil, errors.New("ar: error reading file contents: " + err.Error())
76 return nil, errors.New("ar: two filename tables found")
86 return nil, errors.New("ar: long filename reference found before filename table")
93 return nil, errors.New("ar: failed to parse filename offset: " + err.Error())
96 return nil, errors.New("ar: filename offset overflow")
100 return nil, errors.New("ar: filename offset out of bounds"
    [all...]
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 109 std::vector<std::string>* errors) {
122 errors->push_back("The library \"" + path +
127 errors->push_back("The library \"" + path + "\" is not a public library but it loaded.");
133 errors->push_back("unexpected dlerror: " + err);
143 std::vector<std::string>* errors) {
153 errors->push_back("Failed to open " + dir + ": " + strerror(errno));
168 } else if (!check_lib(path, library_search_paths, libraries, errors)) {
236 std::vector<std::string> errors; local
242 errors.push_back("Errors in vendor public library file:" + error_msg)
    [all...]
  /external/chromium-trace/catapult/devil/
PRESUBMIT.py 53 errors = []
55 errors.extend(
60 if errors:
63 items=errors)]
  /external/junit/src/main/java/org/junit/runners/
ParentRunner.java 119 * Adds to {@code errors} a throwable for each problem noted with the test class (available from {@link #getTestClass()}).
124 protected void collectInitializationErrors(List<Throwable> errors) {
125 validatePublicVoidNoArgMethods(BeforeClass.class, true, errors);
126 validatePublicVoidNoArgMethods(AfterClass.class, true, errors);
127 validateClassRules(errors);
128 applyValidators(errors);
131 private void applyValidators(List<Throwable> errors) {
134 errors.addAll(each.validateTestClass(getTestClass()));
140 * Adds to {@code errors} if any method in this class is annotated with
151 boolean isStatic, List<Throwable> errors) {
160 CLASS_RULE_VALIDATOR.validate(getTestClass(), errors); local
161 CLASS_RULE_METHOD_VALIDATOR.validate(getTestClass(), errors); local
    [all...]
  /external/libmojo/third_party/catapult/devil/
PRESUBMIT.py 57 errors = []
59 errors.extend(
64 if errors:
67 items=errors)]
  /external/libxml2/python/tests/
validRNG.py 10 self.errors = []
15 self.errors.append(msg)
51 if ret != 0 or e.errors:
59 if ret == 0 or not e.errors:
  /external/llvm/bindings/go/llvm/
linker.go 22 import "errors"
27 err := errors.New("Linking failed")
  /external/lzma/CPP/7zip/UI/Console/
List.h 24 UInt64 &errors,
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
pad_op.cc 37 errors::InvalidArgument("paddings must be a matrix with 2 columns: ",
45 errors::InvalidArgument(
66 errors::InvalidArgument("Paddings must be non-negative: ",
76 errors::InvalidArgument("constant_values must be a scalar."));
select_op.cc 39 errors::InvalidArgument(
53 errors::InvalidArgument(
57 errors::InvalidArgument(
61 errors::InvalidArgument("Number of batches of 'then' must "
  /external/tensorflow/tensorflow/core/common_runtime/
session.cc 19 #include "tensorflow/core/lib/core/errors.h"
34 return errors::Unimplemented(
42 return errors::Unimplemented(
50 return errors::Unimplemented(
74 return errors::Internal("Failed to create session.");
session_factory.h 21 #include "tensorflow/core/lib/core/errors.h"
60 return errors::Unimplemented("Reset()");
session_state.cc 27 return errors::InvalidArgument("The tensor with handle '", handle,
37 return errors::InvalidArgument("Failed to add a tensor with handle '",
46 return errors::InvalidArgument("Failed to delete a tensor with handle '",
60 return errors::InvalidArgument("Failed to add a tensor with name '", name,
  /external/tensorflow/tensorflow/core/public/
session.h 130 return errors::Unimplemented(
135 return errors::Unimplemented(
140 return errors::Unimplemented(
195 return errors::Unimplemented(
  /external/tensorflow/tensorflow/core/util/
activation_mode.cc 19 #include "tensorflow/core/lib/core/errors.h"
40 return errors::NotFound(str_value, " is not an allowed activation mode");
  /external/tensorflow/tensorflow/python/data/kernel_tests/
prefetch_dataset_op_test.py 22 from tensorflow.python.framework import errors
40 with self.assertRaises(errors.OutOfRangeError):
49 with self.assertRaisesRegexp(errors.InvalidArgumentError, "buffer_size"):
53 with self.assertRaisesRegexp(errors.InvalidArgumentError, "buffer_size"):
  /external/valgrind/memcheck/tests/
accounting.stderr.exp 13 For counts of detected and suppressed errors, rerun with: -v
14 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
bug155125.stderr.exp 14 For counts of detected and suppressed errors, rerun with: -v
15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
describe-block.stderr.exp 14 For counts of detected and suppressed errors, rerun with: -v
15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
  /external/valgrind/memcheck/tests/linux/
brk.stderr.exp 12 For counts of detected and suppressed errors, rerun with: -v
13 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/none/tests/x86/
bug126147-x86.c 117 size_t errors = 0; variable
126 ++errors;
190 if (errors == 0)
192 printf("No errors.\n");
196 printf("%d errors.\n", (int)errors);
  /external/wpa_supplicant_8/src/common/
ctrl_iface_common.h 25 int errors; member in struct:wpa_ctrl_dst
  /frameworks/support/navigation/safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/
ArgumentsGenerationTask.kt 48 Mapping(file.relativeTo(project.projectDir).path, output.files) to output.errors
72 val (mappings, errors) = generateArgs(navigationFiles, outputDir)
74 failIfErrors(errors)
81 val (newMapping, errors) = generateArgs(navFiles, outputDir)
96 failIfErrors(errors)
99 private fun failIfErrors(errors: List<ErrorMessage>) {
100 if (errors.isNotEmpty()) {
101 val errString = errors.joinToString("\n") { it.toClickableText() }
104 "Following errors found: \n$errString")
  /test/vti/test_serving/gae/webapp/src/handlers/
errors.py 40 def __init__(self, code=None, msg=None, errors=None):
43 self.errors = errors or []
47 return repr([self.code, self.msg, self.errors])

Completed in 1302 milliseconds

<<21222324252627282930>>