Home
last modified time | relevance | path

Searched full:url (Results 1 – 25 of 64) sorted by relevance

123

/test/mlts/models/assets/image_classification/
DLICENSE3 Url: https://www.flickr.com/photos/35776267@N08/3336561942
4 Image url: https://farm8.staticflickr.com/3391/3336561942_ec6765ac71_o.jpg
11 Url: https://www.flickr.com/photos/uriel1998/15413648199
12 Image url: https://c7.staticflickr.com/4/3935/15413648199_d287a131de_o.jpg
19 Url: https://www.flickr.com/photos/desperado31/14224022854
20 Image url: https://farm3.staticflickr.com/5578/14224022854_6982e73e95_o.jpg
27 Url: https://www.flickr.com/photos/nicknbecka/1394753532
28 Image url: https://c2.staticflickr.com/2/1135/1394753532_76fa2ec26f_o.jpg
35 Url: https://www.flickr.com/photos/funky1opti/3127466657
36 Image url: https://farm1.staticflickr.com/3251/3127466657_93f96a8b74_o.jpg
[all …]
/test/vti/dashboard/src/main/webapp/WEB-INF/
Dweb.xml30 <url-pattern>/*</url-pattern>
190 <url-pattern>/</url-pattern>
195 <url-pattern>/show_release/*</url-pattern>
200 <url-pattern>/show_green_release/*</url-pattern>
205 <url-pattern>/show_coverage_overview/*</url-pattern>
210 <url-pattern>/show_tree/*</url-pattern>
215 <url-pattern>/show_table/*</url-pattern>
220 <url-pattern>/show_graph/*</url-pattern>
225 <url-pattern>/show_profiling_list/*</url-pattern>
230 <url-pattern>/show_profiling_overview/*</url-pattern>
[all …]
Dcron.xml19 <url>/cron/vts_performance_job</url>
25 <url>/cron/vts_inactivity_job</url>
31 <url>/cron/test_suite_report_gcs_monitor</url>
37 <url>/cron/vts_spreadsheet_sync_job</url>
/test/vti/dashboard/src/main/java/com/android/vts/util/
DUrlUtil.java19 import java.net.URL;
27 public final String url; field in UrlUtil.LinkDisplay
35 this.url = uri.toString(); in LinkDisplay()
48 * Validates and formats a URL.
50 * <p>Ensures that the protocol is HTTPs and the URL is properly formatted. This avoids link
53 * @param urlString The url string to validate.
58 URL url = new URL(urlString); in processUrl() local
59 String scheme = url.getProtocol(); in processUrl()
60 String userInfo = url.getUserInfo(); in processUrl()
61 String host = url.getHost(); in processUrl()
[all …]
/test/vti/test_serving/configs/infra/test/vtslab-config-test/
Dschemas.cfg14url: "https://chromium.googlesource.com/chromium/tools/depot_tools/+/master/third_party/cq_client/…
20url: "https://chromium.googlesource.com/infra/infra/+/master/appengine/cr-buildbucket/proto/projec…
24url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
28url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
34url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
38url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
42url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
46url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
50url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
56url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/auth_service/proto/c…
[all …]
Dprojects.cfg8 url: "https://android.googlesource.com/platform/test/vts/"
16 url: "https://android.googlesource.com/device/generic/goldfish/"
/test/vti/test_serving/configs/infra/prod/vtslab-config-prod/
Dschemas.cfg14url: "https://chromium.googlesource.com/chromium/tools/depot_tools/+/master/third_party/cq_client/…
20url: "https://chromium.googlesource.com/infra/infra/+/master/appengine/cr-buildbucket/proto/projec…
24url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
28url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
34url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
38url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
42url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
46url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
50url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/components/component…
56url: "https://chromium.googlesource.com/infra/luci/luci-py/+/master/appengine/auth_service/proto/c…
[all …]
/test/vti/test_serving/gae/frontend/src/app/menu/schedule/
Dschedule.service.ts30 // url: string;
33 this.url = environment['baseURL'] + '/schedule/v1/';
41 const url = this.url + 'get'; constant
42 …return this.httpClient.post<ScheduleWrapper>(url, {size: size, offset: offset, filter: filterInfo…
47 const url = this.url + 'suspend'; constant
48 return this.httpClient.post<ScheduleSuspendResponseWrapper>(url, {schedules: schedules})
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DBaseServlet.java85 private final String url; field in BaseServlet.Page
90 this.url = type.defaultUrl; in Page()
93 public Page(PageType type, String name, String url) { in Page() argument
96 this.url = type.defaultUrl + url; in Page()
99 public Page(PageType type, String name, String url, Boolean withoutDefault) { in Page() argument
102 this.url = type.defaultUrl + url; in Page()
105 public Page(PageType type, String url) { in Page() argument
108 this.url = type.defaultUrl + url; in Page()
116 return url; in getUrl()
134 * Get a list of URL/Display name pairs for the breadcrumb hierarchy.
[all …]
/test/vti/test_serving/gae/testing/
Dtest_e2e.py21 URL = os.environ.get("URL") variable
25 assert URL
26 print ("Running test against {}".format(URL))
27 r = requests.get(URL)
/test/vts/utils/python/reporting/
Dreport_file_utils.py67 url_prefix: string, prefix of the url used to upload the link to dashboard.
92 '''Convert report source file path to destination path and url.
102 tuple(string, string), containing destination path and url
128 url = dest_path
130 url = self._url_prefix + relative_path
131 return dest_path, url
197 string, destination URL of saved report file.
207 dest_path, url = self._ConvertReportPath(
216 return url
254 dest_path, url = self._ConvertReportPath(
[all …]
Dreport_file_utils_test.py88 dest_path, url = _report_file_util._ConvertReportPath(
99 url,
118 dest_path, url = _report_file_util._ConvertReportPath(
125 url,
141 dest_path, url = _report_file_util._ConvertReportPath(
151 url,
/test/vti/test_serving/gae/
Dcron.yaml3 url: /tasks/schedule
6 url: /tasks/device_heartbeat
9 url: /tasks/job_heartbeat
12 url: /tasks/remove_outdated_devices
Dapp.yaml19 - url: /_ah/api/.*
22 - url: /(.*\.(html|js|css|txt|ico))
26 - url: /((build|device|job|lab|schedule)([?&/].*)?)?
30 - url: /.*
/test/vti/test_serving/gae/frontend/src/app/menu/lab/
Dlab.service.ts29 // url: string;
32 this.url = environment['baseURL'] + '/lab/v1/';
40 const url = this.url + 'get'; constant
41 …return this.httpClient.post<HostWrapper>(url, {size: size, offset: offset, filter: filterInfo, so…
/test/vti/test_serving/gae/frontend/src/app/menu/job/
Djob.service.ts29 // url: string;
32 this.url = environment['baseURL'] + '/job/v1/';
40 const url = this.url + 'get'; constant
41 …return this.httpClient.post<JobWrapper>(url, {size: size, offset: offset, filter: filterInfo, sor…
/test/vts/utils/python/web/
Dweb_utils.py372 def AddSystraceUrl(self, url): argument
373 """Creates a systrace report message with a systrace URL.
376 url to the systrace report.
381 url: String, the url of the systrace report.
386 systrace_msg.url.append(url)
392 url to the log files.
402 for url in urls:
404 if log_msg.url == url:
408 log_msg.url = url
409 log_msg.name = os.path.basename(url)
/test/vti/test_serving/gae/webapp/src/handlers/
Dbase.py103 # Redirect user to current view URL.
145 """Return a tuple of the URL."""
146 return urlparse.urlsplit(self.request.url)
149 """Returns the path of the current URL."""
169 url = users.create_logout_url(self.request.uri)
172 url = users.create_login_url(self.request.uri)
181 'url': url,
/test/vti/test_serving/gae/frontend/src/app/menu/build/
Dbuild.service.ts31 this.url = environment['baseURL'] + '/build/v1/';
39 const url = this.url + 'get'; constant
40 …return this.httpClient.post<BuildWrapper>(url, {size: size, offset: offset, filter: filterInfo, so…
/test/vti/test_serving/gae/frontend/src/app/menu/device/
Ddevice.service.ts31 this.url = environment['baseURL'] + '/host/v1/';
39 const url = this.url + 'get'; constant
40 …return this.httpClient.post<DeviceWrapper>(url, {size: size, offset: offset, filter: filterInfo, …
/test/vti/test_serving/gae/frontend/src/app/shared/
Dservicebase.ts20 url: string; property in ServiceBase
38 const url = this.url + 'count'; constant
39 return this.httpClient.post<number>(url, {filter: filterInfo});
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestCaseRunEntity.java119 * Set the systrace url.
120 * @param url The systrace url, or null.
122 private void setSystraceUrl(String url) { in setSystraceUrl() argument
123 this.systraceUrl = url; in setSystraceUrl()
127 * Get the systrace url.
128 * returns The systrace url, or null.
/test/vts/proto/
DVtsReportMessage.proto183 repeated bytes url = 21; field
249 // URL of a produced log file (e.g., stdout, stderr).
250 optional bytes url = 1; field
260 // To specify a resource object (reachable via a URL or contained in the
265 // URL of a resource file.
266 optional bytes url = 1; field
322 // URL links for the test run.
/test/vti/test_serving/proto/
DTestScheduleConfigMessage.proto117 // Base GCS url for the repack command.
120 // the GCS url where test results are uploaded
126 // the GCS url where the latest test result is uploaded
129 // the GCS url where the reference result is.
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_coverage.jsp106 var url = self.parent().data('url');
121 url: url,
173 …<li data-url="<c:url value="${coverageEntity.gerritUrl}"/>" data-index="${loop.index}" data-covera…

123