Home
last modified time | relevance | path

Searched refs:full_url (Results 1 – 13 of 13) sorted by relevance

/external/curl/tests/libtest/
Dlibauthretry.c35 char *full_url = malloc(len); in send_request() local
36 if(!full_url) { in send_request()
41 msnprintf(full_url, len, "%s%04d", url, seq); in send_request()
43 "(auth %ld)\n", seq, full_url, userpwd, auth_scheme); in send_request()
44 test_setopt(curl, CURLOPT_URL, full_url); in send_request()
54 free(full_url); in send_request()
Dlibntlmconnect.c96 char *full_url = malloc(urllen); in test() local
100 if(!full_url) { in test()
112 free(full_url); in test()
138 msnprintf(full_url, urllen, "%s0200", url); in test()
142 msnprintf(full_url, urllen, "%s0100", url); in test()
146 easy_setopt(easy[num_handles], CURLOPT_URL, full_url); in test()
231 free(full_url); in test()
/external/autotest/client/cros/video/
Dvideo_player.py23 def __init__(self, tab, full_url, video_id, video_src_path='', argument
37 self.full_url = full_url
42 self.tab.Navigate(self.full_url)
/external/python/cpython3/Lib/urllib/
Drequest.py306 url = request.full_url
320 self.full_url = url
336 def full_url(self): member in Request
341 @full_url.setter
342 def full_url(self, url): member in Request
348 @full_url.deleter
349 def full_url(self): member in Request
375 raise ValueError("unknown url type: %r" % self.full_url)
386 return self.full_url
393 self.selector = self.full_url
[all …]
/external/autotest/client/site_tests/power_Consumption/
Dpower_Consumption.py315 def full_url(filename): function
332 self._tab.Navigate(full_url(url))
338 self._tab.Navigate(full_url(url))
345 self._tab.Navigate(full_url(url))
/external/tensorflow/tensorflow/python/tpu/client/
Dclient_test.py801 paths = [call[0][0].full_url for call in urlopen.call_args_list]
811 paths = [call[0][0].full_url for call in urlopen.call_args_list]
827 paths = [call[0][0].full_url for call in urlopen.call_args_list]
/external/autotest/client/cros/multimedia/
Dvideo_facade_native.py87 full_url=html_path,
/external/python/cpython3/Lib/test/
Dtest_urllib2.py1080 r.full_url = url
1091 del r.full_url
1092 self.assertIsNone(r.full_url)
1964 self.assertEqual(req.get_full_url(), req.full_url)
/external/python/cpython2/Doc/howto/
Durllib2.rst142 >>> full_url = url + '?' + url_values
143 >>> data = urllib2.urlopen(full_url)
/external/python/cpython3/Doc/howto/
Durllib2.rst158 >>> full_url = url + '?' + url_values
159 >>> data = urllib.request.urlopen(full_url)
/external/python/cpython3/Doc/library/
Durllib.request.rst467 .. attribute:: Request.full_url
473 Request.full_url is a property with setter, getter and a deleter. Getting
474 :attr:`~Request.full_url` returns the original request URL with the
572 Returns :attr:`Request.full_url`
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1636 :attr:`~urllib.request.Request.full_url` or :attr:`~urllib.request.Request.data`
/external/python/cpython3/Misc/
DHISTORY5033 - Issue #17272: Making the urllib.request's Request.full_url a descriptor.
5034 Fixes bugs with assignment to full_url. Patch by Demian Brecht.