Home
last modified time | relevance | path

Searched refs:url (Results 1 – 25 of 48) sorted by relevance

12

/test/framework/harnesses/host_controller/vti_interface/
Dvti_endpoint_client.py59 def __init__(self, url): argument
60 if url == "localhost":
61 url = "http://localhost:8080/_ah/api/"
63 if not url.startswith(("https://")) and not url.startswith("http://"):
64 url = "https://" + url
65 if url.endswith("appspot.com"):
66 url += "/_ah/api/"
69 self._url = url
83 url = self._url + "build/v1/set"
87 response = requests.post(url, data=json.dumps(build),
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/util/
DUrlUtil.java27 public final String url; field in UrlUtil.LinkDisplay
35 this.url = uri.toString(); in LinkDisplay()
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()
62 int port = url.getPort(); in processUrl()
63 String path = url.getPath(); in processUrl()
64 String query = url.getQuery(); in processUrl()
65 String fragment = url.getRef(); in processUrl()
[all …]
/test/mlts/models/assets/image_classification/
DLICENSE4 Image url: https://farm8.staticflickr.com/3391/3336561942_ec6765ac71_o.jpg
12 Image url: https://c7.staticflickr.com/4/3935/15413648199_d287a131de_o.jpg
20 Image url: https://farm3.staticflickr.com/5578/14224022854_6982e73e95_o.jpg
28 Image url: https://c2.staticflickr.com/2/1135/1394753532_76fa2ec26f_o.jpg
36 Image url: https://farm1.staticflickr.com/3251/3127466657_93f96a8b74_o.jpg
44 Image url: https://farm5.staticflickr.com/7098/6969729614_60752a22cf_o.jpg
52 Image url: https://farm1.staticflickr.com/8380/8532191916_e4aeb200f5_o.jpg
60 Image url: https://farm8.staticflickr.com/3307/5761822218_0a3ca99b5b_o.jpg
68 Image url: https://c1.staticflickr.com/1/81/214496587_32874f4762_o.jpg
76 Image url: https://c4.staticflickr.com/4/3708/8750775567_5a65a9700d_o.jpg
[all …]
/test/framework/harnesses/host_controller/utils/gcp/
Dgcs_utils.py41 def IsGcsFile(gsutil_path, url): argument
51 check_command = "%s stat %s" % (gsutil_path, url)
72 def List(gsutil_path, url): argument
82 ls_command = "%s ls %s" % (gsutil_path, url)
87 def Remove(gsutil_path, url, recursive=False): argument
98 if "/" not in url.lstrip("gs://").rstrip("/"):
99 logging.error("Cannot remove bucket %s", url)
102 gsutil_path, ("r" if recursive else ""), url)
/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 …]
Dprojects.cfg8 url: "https://android.googlesource.com/platform/test/vts/"
16 url: "https://android.googlesource.com/device/generic/goldfish/"
/test/vti/test_serving/gae/frontend/src/app/menu/schedule/
Dschedule.service.ts33 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()
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/
DVtsDashboardApiTransport.java78 GenericUrl url = new GenericUrl(URI.create(API_URL + "/" + path)); in get() local
80 HttpRequest httpRequest = requestFactory.buildGetRequest(url); in get()
101 GenericUrl url = new GenericUrl(URI.create(API_URL + "/" + path)); in post() local
106 HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent); in post()
128 GenericUrl url = new GenericUrl(URI.create(API_URL + "/" + path)); in postFile() local
129 HttpRequest request = requestFactory.buildPostRequest(url, fileContent); in postFile()
155 GenericUrl url = new GenericUrl(URI.create(API_URL + "/" + path)); in postMultiFiles() local
156 HttpRequest request = requestFactory.buildPostRequest(url, multipartContent); in postMultiFiles()
/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/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/menu/job/
Djob.service.ts32 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/vti/test_serving/gae/frontend/src/app/menu/lab/
Dlab.service.ts32 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/vts/utils/python/reporting/
Dreport_file_utils.py128 url = dest_path
130 url = self._url_prefix + relative_path
131 return dest_path, url
207 dest_path, url = self._ConvertReportPath(
216 return url
254 dest_path, url = self._ConvertReportPath(
268 urls.append(url)
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/vts/utils/python/web/
Dweb_utils.py372 def AddSystraceUrl(self, url): argument
386 systrace_msg.url.append(url)
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/framework/harnesses/host_controller/utils/parser/
Dpb2_utils.py27 url, argument
66 ret = ret and FillDictAndPost(sub_msg, dict_to_fill, url, headers,
71 response = requests.post(url, data=json.dumps(dict_to_fill),
/test/framework/harnesses/host_controller/build/
Dbuild_provider_pab.py318 url = path_urljoin(self.BASE_URL, 'build', 'builds', action,
322 response = requests.get(url, headers=headers,
578 url = self.GetArtifactURL(account_id=account_id,
590 self.DownloadArtifact(url, artifact_path)
646 url = self.GetArtifactURL(
662 ret = self.DownloadArtifact(url, artifact_path)
674 def GetResponseWithURL(self, url): argument
689 response = requests.get(url, headers=headers, stream=True,
/test/vti/test_serving/gae/webapp/src/handlers/
Dbase.py146 return urlparse.urlsplit(self.request.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/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…
/test/vti/dashboard/src/main/webapp/js/
Dtest_results.js160 var url = '/api/test_run?test=' + test + '&timestamp=' + time;
179 $.get(url)
275 var url = ('/show_coverage?testName=' + test + '&startTime=' + startTime);
283 window.location.href = url;

12