Home
last modified time | relevance | path

Searched full:logs (Results 1 – 25 of 4081) sorted by relevance

12345678910>>...164

/external/cronet/base/android/junit/src/org/chromium/base/
DLogTest.java29 List<ShadowLog.LogItem> logs = ShadowLog.getLogs(); in callOriginTest() local
33 + logs.get(logs.size() - 1).msg in callOriginTest()
35 logs.get(logs.size() - 1).msg.matches("\\[LogTest.java:\\d+\\].*")); in callOriginTest()
62 List<ShadowLog.LogItem> logs; in exceptionLoggingTest() local
66 logs = ShadowLog.getLogs(); in exceptionLoggingTest()
67 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest()
68 assertEquals("Bar", logs.get(logs.size() - 1).msg); in exceptionLoggingTest()
72 logs = ShadowLog.getLogs(); in exceptionLoggingTest()
73 assertEquals(t, logs.get(logs.size() - 1).throwable); in exceptionLoggingTest()
74 assertEquals("search?q=%E6%B5%8B%E8%AF%95", logs.get(logs.size() - 1).msg); in exceptionLoggingTest()
[all …]
/external/libchrome/base/android/junit/src/org/chromium/base/
DLogTest.java29 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/tensorflow/tensorflow/python/keras/
Dcallbacks.py190 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/
Dservo_LogGrab.py18 """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/conscrypt/platform/src/test/java/org/conscrypt/ct/
DCTLogStoreImplTest.java59 private static final CTLogInfo[] LOGS; field in CTLogStoreImplTest
65 LOGS = new CTLogInfo[logCount];
74 LOGS[i] = new CTLogInfo(key, description, url);
83 /* CTLogStoreImpl loads the list of logs lazily when they are first needed
85 * This test simply forces the logs to be loaded to make sure it doesn't
96 assertEquals(LOGS[0], log); in test_loadLog()
100 assertEquals(LOGS[0], log); in test_loadLog()
102 // Empty log file, used to mask fallback logs in test_loadLog()
123 CTLogInfo[] fallback = new CTLogInfo[] { LOGS[2], LOGS[3] }; in test_getKnownLog()
127 /* Add logs 0 and 1 to the user and system directories respectively in test_getKnownLog()
[all …]
/external/conscrypt/repackaged/platform/src/test/java/com/android/org/conscrypt/ct/
DCTLogStoreImplTest.java63 private static final CTLogInfo[] LOGS; field in CTLogStoreImplTest
69 LOGS = new CTLogInfo[logCount];
78 LOGS[i] = new CTLogInfo(key, description, url);
87 /* CTLogStoreImpl loads the list of logs lazily when they are first needed
89 * This test simply forces the logs to be loaded to make sure it doesn't
100 assertEquals(LOGS[0], log); in test_loadLog()
104 assertEquals(LOGS[0], log); in test_loadLog()
106 // Empty log file, used to mask fallback logs in test_loadLog()
127 CTLogInfo[] fallback = new CTLogInfo[] { LOGS[2], LOGS[3] }; in test_getKnownLog()
131 /* Add logs 0 and 1 to the user and system directories respectively in test_getKnownLog()
[all …]
/external/cronet/components/metrics/
Dmetrics_service_observer_unittest.cc95 // 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 …]
Dmetrics_log_store.h27 // 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 …]
Dunsent_log_store.h31 // 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/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DSubnetworkLogConfigOrBuilder.java30 …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 …
132logs within the subnetwork where 1.0 means all collected logs are reported and 0.0 means no logs a…
144logs 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 …]
DRouterNatLogConfigOrBuilder.java30 * 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.
55logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This …
68logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This …
81logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This …
DRouterNatLogConfig.java74logs 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.
291logs on this NAT. If unspecified, logs are exported for all connections handled by this NAT. This …
[all …]
/external/aws-sdk-java-v2/services/cloudwatchlogs/src/main/resources/codegen-resources/
Dendpoint-tests.json7 "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/grpc-grpc/tools/distrib/python/xds_protos/opentelemetry/proto/collector/logs/v1/
Dlogs_service_pb2.py3 # 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…
17logs/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/cronet/components/metrics/debug/
Dapp.ts19 * An empty log. It is appended to a logs table when there are no logs (for
60 * Returns UMA logs data (with their proto) as a JSON string. Used when
61 * exporting UMA logs data. Returns a promise.
92 'List of all UMA logs closed since browser startup.' :
93 'List of UMA logs closed since opening this page. Starting the browser \
94 with the --export-uma-logs-to-file command line flag will instead show \
95 all logs closed since browser startup.';
97 // Set up a listener for UMA logs. Also update UMA log data immediately in
98 // case there are logs that we already have data on.
103 // Set up the UMA "Export logs" button.
[all …]
/external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
DExceptionHandlingFrameWriterTest.java111 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/
DLogRecorder.java25 * 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/
DLogging.java26 * 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/
DLogcatReader.kt13 * 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/pigweed/pw_web/
Dlog_viewer.rst8 and enable stakeholders to access logs with minimal code and hardware setup.
15 logs, and a pop-up with the URL to the web log viewer. The other pane shows
16 logs since 'Open in Browser' is not selected.
22 Filter logs
132 Clear logs
134 To remove logs and display new logs, click the **Clear logs** button.
136 .. figure:: https://storage.googleapis.com/pigweed-media/pw_web/clear-logs.png
137 :alt: Clear logs button in topbar removes all logs from view.
139 Example of **Clear logs** button press.
179 Download logs
[all …]
/external/grpc-grpc/tools/distrib/python/xds_protos/opentelemetry/proto/logs/v1/
Dlogs_pb2.py3 # source: opentelemetry/proto/logs/v1/logs.proto
18logs/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…
/external/grpc-grpc-java/examples/android/routeguide/app/src/main/java/io/grpc/routeguideexample/
DRouteGuideActivity.java155 String logs = in doInBackground() local
158 return "Success!\n" + logs; in doInBackground()
180 /** Perform a grpcRunnable and return all the logs. */
194 StringBuffer logs = new StringBuffer(); in getFeature() local
195 appendLogs(logs, "*** GetFeature: lat={0} lon={1}", lat, lon); in getFeature()
203 logs, in getFeature()
210 logs, in getFeature()
215 return logs.toString(); in getFeature()
233 StringBuffer logs = new StringBuffer("Result: "); in listFeatures() local
235 logs, in listFeatures()
[all …]
/external/python/cpython3/.azure-pipelines/windows-release/
Dstage-test-msi.yml15 Logs: $(Build.ArtifactStagingDirectory)\logs\win32_User
19 Logs: $(Build.ArtifactStagingDirectory)\logs\win32_Machine
23 Logs: $(Build.ArtifactStagingDirectory)\logs\amd64_User
27 Logs: $(Build.ArtifactStagingDirectory)\logs\amd64_Machine
49 /log "$(Logs)\install\log.txt"
99 /log "$(Logs)\uninstall\log.txt"
103 displayName: 'Publish Artifact: logs'
107 PathtoPublish: '$(Build.ArtifactStagingDirectory)\logs'
/external/cronet/components/metrics/structured/
Dhistogram_util.h16 // bucket proportion doesn't make sense. These values are persisted to logs.
38 // occurred. These values are persisted to logs. Entries should not be
53 // persisted to logs. Entries should not be renumbered and numeric values should
72 // Logs the number of events that were recorded before device and user
77 // Logs the number of files processed per external metrics scan.
80 // Logs the file size of an event.
83 // Logs the serialized size of an event when it is recorded in bytes.
86 // Logs the StructuredMetrics uploaded size to UMA in bytes.
89 // Logs the number of external metrics were scanned for an upload.
92 // Logs the number of external metrics that were dropped.
[all …]
/external/parameter-framework/upstream/test/functional-tests/include/
DStoreLogger.hpp63 using Logs = std::vector<Log>; typedef in parameterFramework::StoreLogger
67 logs.push_back({Log::Level::warning, strLog}); in warning()
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); } in info()
71 const Logs &getLogs() const { return logs; } in getLogs()
73 Logs filter(Log::Level level) const in filter()
78 Logs match(const std::string &pattern) const in match()
86 Logs filter(Predicate predicate) const in filter()
88 Logs filtered; in filter()
89 std::copy_if(logs.begin(), logs.end(), std::back_inserter(filtered), predicate); in filter()
93 Logs logs; member in parameterFramework::StoreLogger

12345678910>>...164