| /external/libchrome/base/android/junit/src/org/chromium/base/ |
| D | LogTest.java | 29 List<ShadowLog.LogItem> logs = ShadowLog.getLogs(); in callOriginTest() local 30 assertEquals("Only one log should be written", 1, logs.size()); in callOriginTest() 32 assertTrue("The origin of the log message (" + logs.get(0).msg + ") looks wrong.", in callOriginTest() 33 logs.get(0).msg.matches("\\[LogTest.java:\\d+\\].*")); in callOriginTest() 61 List<ShadowLog.LogItem> logs; in exceptionLoggingTest() local 65 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 66 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 67 assertEquals("Bar", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() 71 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 72 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() [all …]
|
| /external/cronet/stable/base/android/junit/src/org/chromium/base/ |
| D | LogTest.java | 47 List<ShadowLog.LogItem> logs; in exceptionLoggingTest() local 51 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 52 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 53 assertEquals("Bar", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() 57 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 58 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 59 assertEquals("search?q=%E6%B5%8B%E8%AF%95", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() 63 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 64 assertNull(logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 65 assertEquals("Bar MyThrowable", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() [all …]
|
| /external/cronet/tot/base/android/junit/src/org/chromium/base/ |
| D | LogTest.java | 47 List<ShadowLog.LogItem> logs; in exceptionLoggingTest() local 51 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 52 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 53 assertEquals("Bar", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() 57 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 58 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 59 assertEquals("search?q=%E6%B5%8B%E8%AF%95", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() 63 logs = ShadowLog.getLogs(); in exceptionLoggingTest() 64 assertNull(logs.get(logs.size() - 1).throwable); in exceptionLoggingTest() 65 assertEquals("Bar MyThrowable", logs.get(logs.size() - 1).msg); in exceptionLoggingTest() [all …]
|
| /external/tensorflow/tensorflow/python/keras/ |
| D | callbacks.py | 190 def make_logs(model, logs, outputs, mode, prefix=''): argument 191 """Computes logs for sending to `on_batch_end` methods.""" 195 logs[prefix + label] = output 197 logs['outputs'] = outputs 198 return logs 283 def _process_logs(self, logs, is_batch_hook=False): argument 285 if logs is None: 288 return logs 290 return logs 291 return tf_utils.sync_to_numpy_or_python_type(logs) [all …]
|
| /external/autotest/server/site_tests/servo_LogGrab/ |
| D | servo_LogGrab.py | 18 """Ensure all logs are grabbed and glued together.""" 35 """Setup a test directory to grab servo logs into and out of.""" 41 @returns: directory name inside |self.logtestdir| containing servod logs 42 None if no directory was created (and logs grabbed) 53 # None to indicate no logs were grabbed. 58 """Helper to check that all logs in |outdir| are concat in order. 60 Log grabbing glues together all logs for one loglevel into one 63 @param outdir: directory with logs to inspect 86 """Helper to check debug logs in |outdir|. 92 that it shows up n times in the logs, add it n times to |ctrls|. [all …]
|
| /external/cronet/tot/components/metrics/ |
| D | metrics_service_observer_unittest.cc | 95 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() 156 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() 229 // Set the max log size to be 1 byte so that pretty much all logs will be in TEST_F() 236 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() 260 // Trim logs and verify that |logs_observer| is aware that the log was in TEST_F() 270 // Verifies that MetricsServiceObserver is notified when logs are trimmed due to 271 // enough logs being stored. 276 // essentially means that the log store, when trimming logs, will only keep in TEST_F() 278 // due to having stored enough logs. in TEST_F() 284 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() [all …]
|
| D | metrics_log_store.h | 27 // A LogStore implementation for storing UMA logs. 28 // This implementation keeps track of two types of logs, initial and ongoing, 29 // each stored in UnsentLogStore. It prioritizes staging initial logs over 30 // ongoing logs. 32 // An alternate log store can be set to persist ongoing logs. For example, this 33 // can be used to separate user logs from device logs on Chrome OS. If set, all 34 // ongoing logs will be written to this alternate log store. Ongoing logs from 35 // the alternate log store will be prioritized over ongoing logs from the native 36 // ongoing log store when logs are staged. If an alternate log store is bound, 37 // then logs will be prioritized in the following order: initial, alternate [all …]
|
| D | unsent_log_store.h | 31 // Maintains a list of unsent logs that are written and restored from disk. 36 // When saving logs to disk, stores either the first |min_log_count| logs, or 37 // at least |min_queue_size_bytes| bytes of logs. If |this| contains more than 38 // |min_log_count| logs AND a total bytes larger than |min_queue_size_bytes|, 39 // older logs will be dropped for newer logs. 43 // Individual logs greater than |max_log_size_bytes| will not be written to 44 // disk. If |max_log_size_bytes| is zero, logs of any size will be written to 47 // Minimum number of unsent logs persisted before older logs are trimmed. 50 // |min_queue_size_bytes| for logs to be dropped. See comments for 54 // Minimum bytes that the queue can hold before older logs are trimmed. [all …]
|
| /external/cronet/stable/components/metrics/ |
| D | metrics_service_observer_unittest.cc | 95 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() 156 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() 229 // Set the max log size to be 1 byte so that pretty much all logs will be in TEST_F() 236 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() 260 // Trim logs and verify that |logs_observer| is aware that the log was in TEST_F() 270 // Verifies that MetricsServiceObserver is notified when logs are trimmed due to 271 // enough logs being stored. 276 // essentially means that the log store, when trimming logs, will only keep in TEST_F() 278 // due to having stored enough logs. in TEST_F() 284 // Create a MetricsServiceObserver that will observe logs from |service|. in TEST_F() [all …]
|
| D | metrics_log_store.h | 27 // A LogStore implementation for storing UMA logs. 28 // This implementation keeps track of two types of logs, initial and ongoing, 29 // each stored in UnsentLogStore. It prioritizes staging initial logs over 30 // ongoing logs. 32 // An alternate log store can be set to persist ongoing logs. For example, this 33 // can be used to separate user logs from device logs on Chrome OS. If set, all 34 // ongoing logs will be written to this alternate log store. Ongoing logs from 35 // the alternate log store will be prioritized over ongoing logs from the native 36 // ongoing log store when logs are staged. If an alternate log store is bound, 37 // then logs will be prioritized in the following order: initial, alternate [all …]
|
| D | unsent_log_store.h | 31 // Maintains a list of unsent logs that are written and restored from disk. 36 // When saving logs to disk, stores either the first |min_log_count| logs, or 37 // at least |min_queue_size_bytes| bytes of logs. If |this| contains more than 38 // |min_log_count| logs AND a total bytes larger than |min_queue_size_bytes|, 39 // older logs will be dropped for newer logs. 43 // Individual logs greater than |max_log_size_bytes| will not be written to 44 // disk. If |max_log_size_bytes| is zero, logs of any size will be written to 47 // Minimum number of unsent logs persisted before older logs are trimmed. 50 // |min_queue_size_bytes| for logs to be dropped. See comments for 54 // Minimum bytes that the queue can hold before older logs are trimmed. [all …]
|
| /external/cronet/tot/components/metrics/structured/ |
| D | histogram_util.h | 15 // occurred. These values are persisted to logs. Entries should not be 39 // Logs the number of events that were recorded before device and user 44 // Logs the number of files processed per external metrics scan. 47 // Logs the file size of an event. 50 // Logs the serialized size of an event when it is recorded in bytes. 53 // Logs the StructuredMetrics uploaded size to UMA in bytes. 56 // Logs the number of external metrics were scanned for an upload. 59 // Logs the number of external metrics that were dropped. 62 // Logs the number of external metrics that were dropped per-project. 66 // Logs the number of external metrics produced per-project. [all …]
|
| /external/cronet/stable/components/metrics/structured/ |
| D | histogram_util.h | 15 // occurred. These values are persisted to logs. Entries should not be 39 // Logs the number of events that were recorded before device and user 44 // Logs the number of files processed per external metrics scan. 47 // Logs the file size of an event. 50 // Logs the serialized size of an event when it is recorded in bytes. 53 // Logs the StructuredMetrics uploaded size to UMA in bytes. 56 // Logs the number of external metrics were scanned for an upload. 59 // Logs the number of external metrics that were dropped. 62 // Logs the number of external metrics that were dropped per-project. 66 // Logs the number of external metrics produced per-project. [all …]
|
| /external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/ |
| D | SubnetworkLogConfigOrBuilder.java | 30 …gation interval for collecting flow logs. Increasing the interval time will reduce the amount of g… 43 …gation interval for collecting flow logs. Increasing the interval time will reduce the amount of g… 56 …gation interval for collecting flow logs. Increasing the interval time will reduce the amount of g… 95 …ly be specified if VPC flow logs for this subnetwork is enabled. The filter expression is used to … 107 …ly be specified if VPC flow logs for this subnetwork is enabled. The filter expression is used to … 119 …ly be specified if VPC flow logs for this subnetwork is enabled. The filter expression is used to … 132 …logs within the subnetwork where 1.0 means all collected logs are reported and 0.0 means no logs a… 144 …logs within the subnetwork where 1.0 means all collected logs are reported and 0.0 means no logs a… 157 …flow logs for this subnetwork is enabled. Configures whether all, none or a subset of metadata fie… 170 …flow logs for this subnetwork is enabled. Configures whether all, none or a subset of metadata fie… [all …]
|
| D | RouterNatLogConfigOrBuilder.java | 30 * Indicates whether or not to export logs. This is false by default. 42 * Indicates whether or not to export logs. This is false by default. 55 …logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This … 68 …logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This … 81 …logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This …
|
| D | RouterNatLogConfig.java | 74 …logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This … 94 * Export logs for all (successful and unsuccessful) connections. 104 * Export logs for connection failures only. 114 * Export logs for successful connections only. 137 * Export logs for all (successful and unsuccessful) connections. 147 * Export logs for connection failures only. 157 * Export logs for successful connections only. 256 * Indicates whether or not to export logs. This is false by default. 271 * Indicates whether or not to export logs. This is false by default. 291 …logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This … [all …]
|
| /external/grpc-grpc/tools/distrib/python/xds_protos/opentelemetry/proto/collector/logs/v1/ |
| D | logs_service_pb2.py | 3 # source: opentelemetry/proto/collector/logs/v1/logs_service.proto 14 from opentelemetry.proto.logs.v1 import logs_pb2 as opentelemetry_dot_proto_dot_logs_dot_v1_dot_log… 17 …logs/v1/logs_service.proto\x12%opentelemetry.proto.collector.logs.v1\x1a&opentelemetry/proto/logs/… 21 _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'opentelemetry.proto.collector.logs.v1.logs_ser… 24 …elemetry.proto.collector.logs.v1B\020LogsServiceProtoP\001ZFgithub.com/open-telemetry/opentelemetr…
|
| /external/aws-sdk-java-v2/services/cloudwatchlogs/src/main/resources/codegen-resources/ |
| D | endpoint-tests.json | 7 "url": "https://logs.af-south-1.amazonaws.com" 20 "url": "https://logs.ap-east-1.amazonaws.com" 33 "url": "https://logs.ap-northeast-1.amazonaws.com" 46 "url": "https://logs.ap-northeast-2.amazonaws.com" 59 "url": "https://logs.ap-northeast-3.amazonaws.com" 72 "url": "https://logs.ap-south-1.amazonaws.com" 85 "url": "https://logs.ap-southeast-1.amazonaws.com" 98 "url": "https://logs.ap-southeast-2.amazonaws.com" 111 "url": "https://logs.ap-southeast-3.amazonaws.com" 124 "url": "https://logs.ca-central-1.amazonaws.com" [all …]
|
| /external/cronet/tot/components/metrics/debug/ |
| D | app.ts | 18 * An empty log. It is appended to a logs table when there are no logs (for 59 * Returns UMA logs data (with their proto) as a JSON string. Used when 60 * exporting UMA logs data. Returns a promise. 82 'List of all UMA logs closed since browser startup.' : 83 'List of UMA logs closed since opening this page. Starting the browser \ 84 with the --export-uma-logs-to-file command line flag will instead show \ 85 all logs closed since browser startup.'; 92 // shows only the logs since the page was opened. We don't want to allow 93 // the current page to be navigated away from lest useful logs be lost. 97 with the exported logs.'; [all …]
|
| /external/cronet/stable/components/metrics/debug/ |
| D | app.ts | 18 * An empty log. It is appended to a logs table when there are no logs (for 59 * Returns UMA logs data (with their proto) as a JSON string. Used when 60 * exporting UMA logs data. Returns a promise. 82 'List of all UMA logs closed since browser startup.' : 83 'List of UMA logs closed since opening this page. Starting the browser \ 84 with the --export-uma-logs-to-file command line flag will instead show \ 85 all logs closed since browser startup.'; 92 // shows only the logs since the page was opened. We don't want to allow 93 // the current page to be navigated away from lest useful logs be lost. 97 with the exported logs.'; [all …]
|
| /external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/ |
| D | ExceptionHandlingFrameWriterTest.java | 111 final List<LogRecord> logs = new ArrayList<>(); in testFrameLogger() local 115 logs.add(record); in testFrameLogger() 130 assertThat(logs).hasSize(1); in testFrameLogger() 131 LogRecord log = logs.remove(0); in testFrameLogger() 138 assertThat(logs).hasSize(1); in testFrameLogger() 139 log = logs.remove(0); in testFrameLogger() 146 assertThat(logs).hasSize(1); in testFrameLogger() 147 log = logs.remove(0); in testFrameLogger() 153 assertThat(logs).hasSize(1); in testFrameLogger() 154 log = logs.remove(0); in testFrameLogger() [all …]
|
| /external/sdk-platform-java/java-core/google-cloud-core/src/main/java/com/google/cloud/testing/ |
| D | LogRecorder.java | 25 * This class records the logs in memory and flush them onto the {@link java.util.logging.Logger} 28 * <p>This component is useful to hold logs for some time and flush them if needed. For example, we 29 * would want to ignore the trivial startup logs of a sub-process if it is started successfully, but 30 * <b>in case any error occurs</b>, these logs should be propagated to the user for the debugging 37 private StringBuilder logs; field in LogRecorder 41 this.logs = new StringBuilder(); in LogRecorder() 52 this.logs.append(stripLevel); in record() 54 this.logs.append(logLine); in record() 56 this.logs.append(System.getProperty("line.separator")); in record() 59 /** Flushes all the logs to the underlying {@link java.util.logging.Logger}. */ [all …]
|
| /external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/ |
| D | Logging.java | 26 * The following example shows how to configure logs to be sent to the 37 * logs: 45 * logs: 50 * logs: 132 * Names of the logs to be sent to this destination. Each name must 133 * be defined in the [Service.logs][google.api.Service.logs] section. If the 138 * <code>repeated string logs = 1;</code> 140 * @return A list containing the logs. 147 * Names of the logs to be sent to this destination. Each name must 148 * be defined in the [Service.logs][google.api.Service.logs] section. If the [all …]
|
| /external/android_onboarding/java/com/android/onboarding/bedsteadonboarding/logcat/ |
| D | LogcatReader.kt | 13 * Reads the logs continuously until stopped explicitly. It filters logs with tag [filterTag] from 14 * logs and stores them in-memory. Logs are streamed on a separate thread. 50 Log.i(TAG, "Started Reading Logs") in <lambda>() 61 * reading logs. It will block until logs have started to be read. 65 // Wait until logs have started to be read. in start() 72 * Closes the file-descriptor pointing to the logs. Clears the filtered log lines stored 73 * in-memory. No more logs would be read until the runnable [LogcatReader] is started again. 85 /** Returns the immutable set of log lines with tag = [filterTag] from logs */ 92 /** Returns if the logs have started to be read. */
|
| /external/grpc-grpc/tools/distrib/python/xds_protos/opentelemetry/proto/logs/v1/ |
| D | logs_pb2.py | 3 # source: opentelemetry/proto/logs/v1/logs.proto 18 …logs/v1/logs.proto\x12\x1bopentelemetry.proto.logs.v1\x1a*opentelemetry/proto/common/v1/common.pro… 22 _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'opentelemetry.proto.logs.v1.logs_pb2', _global… 25 …s = b'\n\036io.opentelemetry.proto.logs.v1B\tLogsProtoP\001Z<github.com/open-telemetry/opentelemet…
|