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

<<41424344454647484950>>

  /external/guice/core/src/com/google/inject/internal/
DeferredLookups.java 47 void initialize(Errors errors) {
49 new LookupProcessor(errors).process(injector, lookups);
InjectorOptionsProcessor.java 41 InjectorOptionsProcessor(Errors errors) {
42 super(errors);
  /external/llvm/test/MC/ARM/
ldr-pseudo-obj-errors.s 6 @These tests look for errors that should be reported for invalid object layout
7 @with the ldr pseudo. They are tested separately from parse errors because they
  /external/parameter-framework/upstream/parameter/
SystemClass.h 55 * @param[out] strError is filled with new line separated errors if the function returns false,
97 * @param[out] errors is the list of error that occured during loadings.
102 bool loadSubsystemsFromSharedLibraries(core::Results &errors,
109 * @param[out] errors is the list of error that occured during loadings.
115 bool loadPlugins(std::list<std::string> &lstrPluginFiles, core::Results &errors);
  /external/python/cpython2/Lib/encodings/
ascii.py 22 return codecs.ascii_encode(input, self.errors)[0]
26 return codecs.ascii_decode(input, self.errors)[0]
latin_1.py 22 return codecs.latin_1_encode(input,self.errors)[0]
26 return codecs.latin_1_decode(input,self.errors)[0]
  /external/python/cpython2/Lib/test/
test_threaded_import.py 36 if test.threaded_import_hangers.errors:
37 raise TestFailed(test.threaded_import_hangers.errors)
  /external/python/cpython3/Lib/email/
_header_value_parser.py 76 from email import errors
330 if any(isinstance(x, errors.UndecodableBytesDefect)
405 if any(isinstance(x, errors.UndecodableBytesDefect)
488 if any(isinstance(x, errors.UndecodableBytesDefect)
    [all...]
  /external/python/cpython3/Lib/encodings/
ascii.py 22 return codecs.ascii_encode(input, self.errors)[0]
26 return codecs.ascii_decode(input, self.errors)[0]
latin_1.py 22 return codecs.latin_1_encode(input,self.errors)[0]
26 return codecs.latin_1_decode(input,self.errors)[0]
  /external/python/cpython3/Lib/unittest/
result.py 31 failures and errors that occurred among those test runs. The collections
41 self.errors = []
115 self.errors.append((test, self._exc_info_to_string(err, test)))
136 errors = self.failures
138 errors = self.errors
139 errors.append((subtest, self._exc_info_to_string(err, test)))
165 return ((len(self.failures) == len(self.errors) == 0) and
214 return ("<%s run=%i errors=%i failures=%i>" %
215 (util.strclass(self.__class__), self.testsRun, len(self.errors),
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/clinic/
multibytecodec.c.h 6 "encode($self, /, input, errors=None)\n"
11 "\'errors\' may be given to set a different error handling scheme. Default is\n"
12 "\'strict\' meaning that encoding errors raise a UnicodeEncodeError. Other possible\n"
22 const char *errors);
28 static const char * const _keywords[] = {"input", "errors", NULL};
31 const char *errors = NULL; local
34 &input, &errors)) {
37 return_value = _multibytecodec_MultibyteCodec_encode_impl(self, input, errors);
44 "decode($self, /, input, errors=None)\n"
49 "\'errors\' may be given to set a different error handling scheme. Default is\n
69 const char *errors = NULL; local
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
concat_op.cc 49 errors::InvalidArgument(
68 errors::InvalidArgument(
85 errors::InvalidArgument(
134 errors::InvalidArgument(
139 errors::InvalidArgument("input ", i,
174 errors::InvalidArgument("Concat dim is out of range: ", axis,
180 errors::InvalidArgument("input ", i, " should contain ", dims,
196 errors::InvalidArgument("input[", i, ",", j,
fill_op.cc 39 errors::InvalidArgument("dims must be a vector of int32, got shape ",
42 errors::InvalidArgument("value must be a scalar, got shape ",
gather_op.cc 85 return errors::InvalidArgument("Gather dimension ", axis + i,
178 errors::InvalidArgument("axis must be scalar"));
181 errors::InvalidArgument("axis must be int32 or int64"));
190 errors::InvalidArgument("Expected axis in the range [", -params_dims,
196 errors::InvalidArgument("indices must be int32 or int64"));
224 errors::InvalidArgument("params must be at least a vector"));
226 errors::InvalidArgument("indices must be at least a vector"));
231 errors::InvalidArgument(
segment_reduction_ops.cc 53 errors::InvalidArgument(
59 errors::InvalidArgument(
unpack_op.cc 53 errors::InvalidArgument("axis = ", axis_, " not in [",
59 errors::InvalidArgument("Input shape axis ", axis, " must equal ", num,
  /external/tensorflow/tensorflow/compiler/xla/tests/
filecheck.cc 22 #include "tensorflow/core/lib/core/errors.h"
36 return tensorflow::errors::Internal("couldn't get a pattern file name");
57 return tensorflow::errors::Internal("couldn't start FileCheck");
  /external/tensorflow/tensorflow/contrib/rnn/kernels/
blas_gemm.cc 58 OP_REQUIRES(ctx, blas_launch_status, errors::Aborted("CuBlasGemm failed!"));
60 ctx->SetStatus(errors::InvalidArgument("CuBlasGemm needs CUDA."));
  /external/tensorflow/tensorflow/core/common_runtime/
debugger_state_interface.cc 18 #include "tensorflow/core/lib/core/errors.h"
67 return errors::Internal(
88 return errors::Internal(
  /external/tensorflow/tensorflow/core/framework/
reader_op_kernel.h 63 context->SetStatus(errors::Cancelled("read operation was cancelled"));
76 return errors::ResourceExhausted("Failed to allocate reader");
  /external/tensorflow/tensorflow/core/grappler/clusters/
cluster.h 98 return errors::Unimplemented(strings ::StrCat(
106 return errors::Unimplemented(
  /external/tensorflow/tensorflow/core/kernels/
batch_util.cc 20 #include "tensorflow/core/lib/core/errors.h"
35 return errors::Internal(
109 return errors::Unimplemented("CopyElementToSlice Unhandled data type: ",
128 return errors::Unimplemented("CopySliceToElement Unhandled data type: ",
141 return errors::Internal(
182 return errors::Unimplemented(
191 return errors::Internal(
212 return errors::Unimplemented("CopyElementToLargerSlice Unhandled rank: ",
225 return errors::Unimplemented("SetElementZero Unhandled data type: ",
bitcast_op.cc 37 errors::InvalidArgument("cannot convert between datatype ",
51 errors::InvalidArgument(
crop_and_resize_op.cc 31 #include "tensorflow/core/lib/core/errors.h"
62 return errors::InvalidArgument("boxes must be 2-D",
67 return errors::InvalidArgument("boxes must have 4 columns");
71 return errors::InvalidArgument("box_index must be 1-D",
75 return errors::InvalidArgument("box_index has incompatible shape");
96 errors::OutOfRange("box_index has values outside [0, batch_size)"),
117 errors::InvalidArgument("method must be 'bilinear'", method));
135 errors::InvalidArgument("input image must be 4-D",
144 errors::InvalidArgument("image dimensions must be positive"), done);
150 errors::InvalidArgument("crop_size must be 1-D"
    [all...]

Completed in 847 milliseconds

<<41424344454647484950>>