Home
last modified time | relevance | path

Searched refs:LOGGER (Results 1 – 24 of 24) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DPropertyUtils.java19 private static final Logger LOGGER = Logger.getLogger(PropertyUtils.class); field in PropertyUtils
23LOGGER.warn("Cannot set property " + name + " with value " + value + ". The target instance is nul… in setProperty()
29LOGGER.warn("Cannot set property " + name + " with value " + value + ". Property class could not b… in setProperty()
40LOGGER.warn("Cannot retrieve property class for " + propertyName + ". Target instance class is nul… in getPropertyType()
49 LOGGER.warn("Cannot retrieve property " + propertyName + ". Class is null"); in getPropertyDescriptor()
61 LOGGER.warn("Cannot retrieve property " + propertyName + ". Cause is: " + ie); in getPropertyDescriptor()
69LOGGER.warn("Cannot set property " + name + " with value " + value + ". Targe instance is null"); in setPropertyRealValue()
75LOGGER.warn("Cannot set property " + name + " with value " + value + ". Property does not exist"); in setPropertyRealValue()
83 LOGGER.warn("Cannot set property " + name + " with value " + value + ". Cause " + iae); in setPropertyRealValue()
/external/boringssl/src/util/bot/go/
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.info(' New toolset is %s', available)
[all …]
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
DCameraActivity.java50 private static final Logger LOGGER = new Logger(); field in CameraActivity
75 LOGGER.d("onCreate " + this); in onCreate()
109 LOGGER.w("Dropping frame!"); in onPreviewFrame()
123 LOGGER.e(e, "Exception!"); in onPreviewFrame()
210 LOGGER.e(e, "Exception!"); in onImageAvailable()
219 LOGGER.d("onStart " + this); in onStart()
225 LOGGER.d("onResume " + this); in onResume()
235 LOGGER.d("onPause " + this); in onPause()
238 LOGGER.d("Requesting finish"); in onPause()
248 LOGGER.e(e, "Exception!"); in onPause()
[all …]
DCameraConnectionFragment.java65 private static final Logger LOGGER = new Logger(); field in CameraConnectionFragment
289 LOGGER.i("Desired size: " + desiredSize + ", min size: " + minSize + "x" + minSize); in chooseOptimalSize()
290 LOGGER.i("Valid preview sizes: [" + TextUtils.join(", ", bigEnough) + "]"); in chooseOptimalSize()
291 LOGGER.i("Rejected preview sizes: [" + TextUtils.join(", ", tooSmall) + "]"); in chooseOptimalSize()
294 LOGGER.i("Exact size match found."); in chooseOptimalSize()
301 LOGGER.i("Chosen size: " + chosenSize.getWidth() + "x" + chosenSize.getHeight()); in chooseOptimalSize()
304 LOGGER.e("Couldn't find any suitable preview size"); in chooseOptimalSize()
396 LOGGER.e(e, "Exception!"); in setUpCameraOutputs()
424 LOGGER.e(e, "Exception!"); in openCamera()
474 LOGGER.e(e, "Exception!"); in stopBackgroundThread()
[all …]
DDetectorActivity.java51 private static final Logger LOGGER = new Logger(); field in DetectorActivity
160 LOGGER.e("Exception initializing classifier!", e); in onPreviewSizeChosen()
173 LOGGER.i("Camera orientation relative to screen canvas: %d", sensorOrientation); in onPreviewSizeChosen()
175 LOGGER.i("Initializing at size %dx%d", previewWidth, previewHeight); in onPreviewSizeChosen()
266 LOGGER.i("Preparing image " + currTimestamp + " for detection in bg thread."); in processImage()
287 LOGGER.i("Running detection on image " + currTimestamp); in processImage()
DClassifierActivity.java40 private static final Logger LOGGER = new Logger(); field in ClassifierActivity
128 LOGGER.i("Camera orientation relative to screen canvas: %d", sensorOrientation); in onPreviewSizeChosen()
130 LOGGER.i("Initializing at size %dx%d", previewWidth, previewHeight); in onPreviewSizeChosen()
168 LOGGER.i("Detect: %s", results); in processImage()
DStylizeActivity.java64 private static final Logger LOGGER = new Logger(); field in StylizeActivity
193 LOGGER.e("Error opening bitmap!", e); in getBitmapFromAsset()
312 LOGGER.v("Creating item %d", i);
368 LOGGER.i("Sensor orientation: %d, Screen orientation: %d", rotation, screenOrientation); in onPreviewSizeChosen()
463 LOGGER.i( in processImage()
535 LOGGER.i("Width: %s , Height: %s", bitmap.getWidth(), bitmap.getHeight()); in stylizeImage()
DLegacyCameraConnectionFragment.java41 private static final Logger LOGGER = new Logger(); field in LegacyCameraConnectionFragment
194 LOGGER.e(e, "Exception!"); in stopBackgroundThread()
DTensorFlowObjectDetectionAPIModel.java41 private static final Logger LOGGER = new Logger(); field in TensorFlowObjectDetectionAPIModel
85 LOGGER.w(line); in create()
DTensorFlowYoloDetector.java32 private static final Logger LOGGER = new Logger(); field in TensorFlowYoloDetector
227 LOGGER.i( in recognizeImage()
DTensorFlowMultiBoxDetector.java42 private static final Logger LOGGER = new Logger(); field in TensorFlowMultiBoxDetector
189 LOGGER.w("No non-zero encodings; check log for inference errors."); in decodeLocationsEncoding()
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/env/
DImageUtils.java29 private static final Logger LOGGER = new Logger(); field in 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); in saveBitmap()
76 LOGGER.i("Make dir failed"); in saveBitmap()
90 LOGGER.e(e, "Exception!"); in saveBitmap()
111 LOGGER.w( in convertYUV420SPToARGB8888()
177 LOGGER.w( in convertYUV420ToARGB8888()
304 LOGGER.w("Rotation of %d % 90 != 0", applyRotation); in getTransformationMatrix()
/external/mockito/src/test/java/org/mockito/junit/
DTestableJUnitRunner.java19 …private final static ThreadLocal<SimpleMockitoLogger> LOGGER = new ThreadLocal<SimpleMockitoLogger… field in TestableJUnitRunner
28 return new MismatchReportingTestListener(LOGGER.get()); in TestableJUnitRunner()
34 return LOGGER.get().clear(); in refreshedLogger()
/external/guice/extensions/servlet/src/com/google/inject/servlet/
DGuiceFilter.java85 private static final Logger LOGGER = Logger.getLogger(GuiceFilter.class.getName()); field in GuiceFilter
103 LOGGER.warning(MULTIPLE_INJECTORS_WARNING); in setPipeline()
/external/python/futures/concurrent/futures/
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',
Dthread.py90 _base.LOGGER.critical('Exception in worker', exc_info=True)
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
DObjectTracker.java51 private static final Logger LOGGER = new Logger(); field in ObjectTracker
60 LOGGER.e("libtensorflow_demo.so not found, tracking unavailable");
209 LOGGER.e( in getInstance()
540 LOGGER.w("Tried to use older position time!"); in setPreviousPosition()
/external/python/cpython3/Lib/concurrent/futures/
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',
Dthread.py81 _base.LOGGER.critical('Exception in worker', exc_info=True)
/external/testng/src/main/java/org/testng/
DTestNG.java106 private static final Logger LOGGER = Logger.getLogger(TestNG.class); field in TestNG
302 if(LOGGER.isDebugEnabled()) { in initializeSuitesAndJarFile()
303 LOGGER.debug("suiteXmlPath: \"" + suitePath + "\""); in initializeSuitesAndJarFile()
1215 LOGGER.error(s); in error()
1671 LOGGER.warn("Could not find reporte class : " + reporterConfig.getClassName()); in addReporter()
1718 LOGGER.info("setTestNGVersion has been deprecated."); in setTestNGVersion()
1808 LOGGER.warn("AnnotationTransformer already set"); in setAnnotationTransformer()
1977 LOGGER.warn("Configurable already set"); in setConfigurable()
1985 LOGGER.warn("Hookable already set"); in setHookable()
/external/testng/src/main/java/org/testng/xml/
DLaunchSuite.java28 private static final Logger LOGGER = Logger.getLogger(LaunchSuite.class); field in LaunchSuite
220 LOGGER.error("IO Exception", ioe); in saveSuiteContent()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DTimeZone.java121 private static final Logger LOGGER = Logger.getLogger("com.ibm.icu.util.TimeZone"); field in TimeZone
762LOGGER.fine("\"" +id + "\" is a bogus id so timezone is falling back to Etc/Unknown(GMT)."); in getTimeZone()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DTimeZone.java95 private static final Logger LOGGER = Logger.getLogger("android.icu.util.TimeZone"); field in TimeZone
692LOGGER.fine("\"" +id + "\" is a bogus id so timezone is falling back to Etc/Unknown(GMT)."); in getTimeZone()
/external/libphonenumber/
Drelease_notes.txt106 - Formatting, naming (LOGGER -> logger) and comment tweaks to follow style