Searched refs:LOGGER (Results 1 - 25 of 41) sorted by relevance

12

/external/testng/src/main/java/org/testng/internal/
H A DPropertyUtils.java19 private static final Logger LOGGER = Logger.getLogger(PropertyUtils.class); field in class:PropertyUtils
23 LOGGER.warn("Cannot set property " + name + " with value " + value + ". The target instance is null");
29 LOGGER.warn("Cannot set property " + name + " with value " + value + ". Property class could not be found");
40 LOGGER.warn("Cannot retrieve property class for " + propertyName + ". Target instance class is null");
49 LOGGER.warn("Cannot retrieve property " + propertyName + ". Class is null");
61 LOGGER.warn("Cannot retrieve property " + propertyName + ". Cause is: " + ie);
69 LOGGER.warn("Cannot set property " + name + " with value " + value + ". Targe instance is null");
75 LOGGER.warn("Cannot set property " + name + " with value " + value + ". Property does not exist");
83 LOGGER.warn("Cannot set property " + name + " with value " + value + ". Cause " + iae);
/external/mockito/src/test/java/org/mockito/junit/
H A DTestableJUnitRunner.java19 private final static ThreadLocal<SimpleMockitoLogger> LOGGER = new ThreadLocal<SimpleMockitoLogger>() { field in class:TestableJUnitRunner
28 return new MismatchReportingTestListener(LOGGER.get());
34 return LOGGER.get().clear();
/external/boringssl/src/util/bot/go/
H A Dbootstrap.py32 LOGGER = logging.getLogger(__name__) variable
106 LOGGER.info('Removing %s', p)
126 LOGGER.info('Downloading %s...', url)
129 LOGGER.info('Extracting...')
139 LOGGER.info('Validating...')
179 LOGGER.error('Failed to run sample program:\n%s', out)
192 LOGGER.debug('Go toolset is up-to-date: %s', TOOLSET_VERSION)
195 LOGGER.info('Installing Go toolset.')
196 LOGGER.info(' Old toolset is %s', installed)
197 LOGGER
[all...]
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
H A DCameraActivity.java50 private static final Logger LOGGER = new Logger(); field in class:CameraActivity
75 LOGGER.d("onCreate " + this);
109 LOGGER.w("Dropping frame!");
123 LOGGER.e(e, "Exception!");
210 LOGGER.e(e, "Exception!");
219 LOGGER.d("onStart " + this);
225 LOGGER.d("onResume " + this);
235 LOGGER.d("onPause " + this);
238 LOGGER.d("Requesting finish");
248 LOGGER
[all...]
H A DCameraConnectionFragment.java65 private static final Logger LOGGER = new Logger(); field in class:CameraConnectionFragment
289 LOGGER.i("Desired size: " + desiredSize + ", min size: " + minSize + "x" + minSize);
290 LOGGER.i("Valid preview sizes: [" + TextUtils.join(", ", bigEnough) + "]");
291 LOGGER.i("Rejected preview sizes: [" + TextUtils.join(", ", tooSmall) + "]");
294 LOGGER.i("Exact size match found.");
301 LOGGER.i("Chosen size: " + chosenSize.getWidth() + "x" + chosenSize.getHeight());
304 LOGGER.e("Couldn't find any suitable preview size");
396 LOGGER.e(e, "Exception!");
424 LOGGER.e(e, "Exception!");
474 LOGGER
[all...]
H A DDetectorActivity.java51 private static final Logger LOGGER = new Logger(); field in class:DetectorActivity
160 LOGGER.e("Exception initializing classifier!", e);
173 LOGGER.i("Camera orientation relative to screen canvas: %d", sensorOrientation);
175 LOGGER.i("Initializing at size %dx%d", previewWidth, previewHeight);
266 LOGGER.i("Preparing image " + currTimestamp + " for detection in bg thread.");
287 LOGGER.i("Running detection on image " + currTimestamp);
H A DClassifierActivity.java40 private static final Logger LOGGER = new Logger(); field in class:ClassifierActivity
128 LOGGER.i("Camera orientation relative to screen canvas: %d", sensorOrientation);
130 LOGGER.i("Initializing at size %dx%d", previewWidth, previewHeight);
168 LOGGER.i("Detect: %s", results);
H A DStylizeActivity.java64 private static final Logger LOGGER = new Logger(); field in class:StylizeActivity
193 LOGGER.e("Error opening bitmap!", e);
312 LOGGER.v("Creating item %d", i);
368 LOGGER.i("Sensor orientation: %d, Screen orientation: %d", rotation, screenOrientation);
463 LOGGER.i(
535 LOGGER.i("Width: %s , Height: %s", bitmap.getWidth(), bitmap.getHeight());
H A DLegacyCameraConnectionFragment.java41 private static final Logger LOGGER = new Logger(); field in class:LegacyCameraConnectionFragment
194 LOGGER.e(e, "Exception!");
H A DTensorFlowMultiBoxDetector.java42 private static final Logger LOGGER = new Logger(); field in class:TensorFlowMultiBoxDetector
189 LOGGER.w("No non-zero encodings; check log for inference errors.");
H A DTensorFlowObjectDetectionAPIModel.java41 private static final Logger LOGGER = new Logger(); field in class:TensorFlowObjectDetectionAPIModel
85 LOGGER.w(line);
H A DTensorFlowYoloDetector.java32 private static final Logger LOGGER = new Logger(); field in class:TensorFlowYoloDetector
227 LOGGER.i(
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/env/
H A DImageUtils.java29 private static final Logger LOGGER = new Logger(); field in class:ImageUtils
35 LOGGER.w("Native library not found, native RGB -> YUV conversion may be unavailable.");
72 LOGGER.i("Saving %dx%d bitmap to %s.", bitmap.getWidth(), bitmap.getHeight(), root);
76 LOGGER.i("Make dir failed");
90 LOGGER.e(e, "Exception!");
111 LOGGER.w(
177 LOGGER.w(
304 LOGGER.w("Rotation of %d % 90 != 0", applyRotation);
/external/guice/extensions/servlet/src/com/google/inject/servlet/
H A DGuiceFilter.java85 private static final Logger LOGGER = Logger.getLogger(GuiceFilter.class.getName()); field in class:GuiceFilter
103 LOGGER.warning(MULTIPLE_INJECTORS_WARNING);
/external/python/futures/concurrent/futures/
H A D_base.py44 LOGGER = logging.getLogger("concurrent.futures") variable
333 LOGGER.exception('exception calling callback for %r', self)
349 LOGGER.exception('exception calling callback for %r', self)
554 LOGGER.critical('Future %s in unexpected state: %s',
H A Dthread.py90 _base.LOGGER.critical('Exception in worker', exc_info=True)
/external/python/cpython3/Lib/concurrent/futures/
H A D_base.py42 LOGGER = logging.getLogger("concurrent.futures") variable
299 LOGGER.exception('exception calling callback for %r', self)
478 LOGGER.critical('Future %s in unexpected state: %s',
H A Dthread.py81 _base.LOGGER.critical('Exception in worker', exc_info=True)
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
H A DObjectTracker.java51 private static final Logger LOGGER = new Logger(); field in class:ObjectTracker
60 LOGGER.e("libtensorflow_demo.so not found, tracking unavailable");
209 LOGGER.e(
540 LOGGER.w("Tried to use older position time!");
/external/testng/src/main/java/org/testng/xml/
H A DLaunchSuite.java28 private static final Logger LOGGER = Logger.getLogger(LaunchSuite.class); field in class:LaunchSuite
220 LOGGER.error("IO Exception", ioe);
/external/testng/src/main/java/org/testng/
H A DTestNG.java106 private static final Logger LOGGER = Logger.getLogger(TestNG.class); field in class:TestNG
302 if(LOGGER.isDebugEnabled()) {
303 LOGGER.debug("suiteXmlPath: \"" + suitePath + "\"");
1215 LOGGER.error(s);
1671 LOGGER.warn("Could not find reporte class : " + reporterConfig.getClassName());
1718 LOGGER.info("setTestNGVersion has been deprecated.");
1808 LOGGER.warn("AnnotationTransformer already set");
1977 LOGGER.warn("Configurable already set");
1985 LOGGER.warn("Hookable already set");
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DTimeZone.java95 private static final Logger LOGGER = Logger.getLogger("android.icu.util.TimeZone"); field in class:TimeZone
692 LOGGER.fine("\"" +id + "\" is a bogus id so timezone is falling back to Etc/Unknown(GMT).");
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeZone.java121 private static final Logger LOGGER = Logger.getLogger("com.ibm.icu.util.TimeZone"); field in class:TimeZone
762 LOGGER.fine("\"" +id + "\" is a bogus id so timezone is falling back to Etc/Unknown(GMT).");
/external/annotation-tools/asmx/test/lib/
H A Dcobertura-1.7.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sourceforge/ net/sourceforge/cobertura/ net/sourceforge/cobertura/ant/ ...
/external/caliper/lib/
H A Djersey-client-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...

Completed in 869 milliseconds

12