/external/python/cpython3/PCbuild/ |
D | urlretrieve.py | 11 from urllib.request import urlretrieve 15 from urllib import urlretrieve 24 def urlretrieve(url, filename): function 39 urlretrieve(URL, FILENAME)
|
D | get_external.py | 9 from urllib.request import urlretrieve 19 filename, headers = urlretrieve(
|
D | find_python.bat | 56 @%_Py_HOST_PYTHON% -E "%~dp0\urlretrieve.py" "%_Py_NUGET_URL%" "%_Py_NUGET%"
|
/external/python/cpython3/Lib/test/ |
D | test_urllibnet.py | 159 def urlretrieve(self, *args, **kwargs): member in urlretrieveNetworkTests 162 file_location, info = urllib.request.urlretrieve(*args, **kwargs) 170 with self.urlretrieve(self.logo) as (file_location, info): 179 with self.urlretrieve(self.logo, 188 with self.urlretrieve(self.logo) as (file_location, info): 195 with self.urlretrieve(self.logo) as (file_location, fileheaders): 209 with self.urlretrieve(self.logo, reporthook=recording_reporthook) as (
|
D | test_urllib.py | 750 result = urllib.request.urlretrieve("file:%s" % os_helper.TESTFN) 760 result = urllib.request.urlretrieve(self.constructLocalFileUrl( 784 urllib.request.urlretrieve( 794 urllib.request.urlretrieve(self.constructLocalFileUrl(srcFileName), 807 urllib.request.urlretrieve(self.constructLocalFileUrl(srcFileName), 821 urllib.request.urlretrieve(self.constructLocalFileUrl(srcFileName), 851 urllib.request.urlretrieve(support.TEST_HTTP_URL, 870 urllib.request.urlretrieve(support.TEST_HTTP_URL)
|
/external/python/cpython2/Lib/test/ |
D | test_urllibnet.py | 159 def urlretrieve(self, *args): member in urlretrieveNetworkTests 160 return _open_with_retry(urllib.urlretrieve, *args) 164 file_location,info = self.urlretrieve("http://www.example.com/") 177 file_location,info = self.urlretrieve("http://www.example.com/", 190 file_location, header = self.urlretrieve("http://www.example.com/") 197 file_location, fileheaders = self.urlretrieve(logo)
|
D | test_urllib.py | 423 result = urllib.urlretrieve("file:%s" % test_support.TESTFN) 433 result = urllib.urlretrieve(self.constructLocalFileUrl( 457 urllib.urlretrieve(self.constructLocalFileUrl(test_support.TESTFN), 466 urllib.urlretrieve(self.constructLocalFileUrl(srcFileName), 480 urllib.urlretrieve(self.constructLocalFileUrl(srcFileName), 494 urllib.urlretrieve(self.constructLocalFileUrl(srcFileName), 519 self.assertRaises(urllib.ContentTooShortError, urllib.urlretrieve, 535 … self.assertRaises(urllib.ContentTooShortError, urllib.urlretrieve, 'http://example.com/')
|
/external/autotest/server/cros/ap_configurators/ |
D | fetch_prebuilt_pyauto.py | 140 chrome_zip = urllib.urlretrieve(self._chrome_zip_url)[0] 144 remoting_zip = urllib.urlretrieve(self._remoting_zip_url)[0] 149 pyautolib_py = urllib.urlretrieve(self._pyautolib_py_url)[0] 152 pyautolib_so = urllib.urlretrieve(self._pyautolib_so_url)[0] 156 ffmpegsumo_so = urllib.urlretrieve(self._ffmpegsumo_so_url)[0] 159 chromedriver = urllib.urlretrieve(self._chromedriver_url)[0]
|
/external/python/cpython3/Tools/peg_generator/scripts/ |
D | download_pypi_packages.py | 8 from urllib.request import urlretrieve 34 urlretrieve(url, os.path.join("data", f"{package_name}.json")) 45 urlretrieve(url, os.path.join("data", "pypi", filename))
|
/external/perfetto/tools/ |
D | compat.py | 23 from urllib.request import urlretrieve 25 from urllib import urlretrieve
|
/external/python/cpython2/PCbuild/ |
D | get_external.py | 7 from urllib.request import urlretrieve 17 filename, headers = urlretrieve(
|
D | find_python.bat | 53 @%_Py_HOST_PYTHON% "%~dp0\urlretrieve.py" "%_Py_NUGET_URL%" "%_Py_NUGET%"
|
/external/armnn/python/pyarmnn/examples/speech_recognition/tests/ |
D | conftest.py | 32 urllib.request.urlretrieve(file, file_path)
|
/external/armnn/python/pyarmnn/examples/common/tests/ |
D | conftest.py | 34 urllib.request.urlretrieve(file, file_path)
|
/external/perfetto/python/perfetto/trace_processor/ |
D | shell.py | 59 _ = request.urlretrieve(f'http://{url}/status')
|
/external/python/dateutil/ |
D | updatezinfo.py | 29 request.urlretrieve(os.path.join(releases_url,
|
/external/python/cpython2/Doc/library/ |
D | urllib.rst | 157 .. function:: urlretrieve(url[, filename[, reporthook[, data]]]) 183 :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that 189 :func:`urlretrieve` reads more data, but if less data is available, it raises 195 If no *Content-Length* header was supplied, :func:`urlretrieve` can not check 202 The public functions :func:`urlopen` and :func:`urlretrieve` create an instance 222 :func:`urlretrieve`. 438 This exception is raised when the :func:`urlretrieve` function detects that the 456 * The caching feature of :func:`urlretrieve` has been disabled until I find the 465 * The :func:`urlopen` and :func:`urlretrieve` functions can cause arbitrarily 475 * The data returned by :func:`urlopen` or :func:`urlretrieve` is the raw data
|
/external/skia/tools/svg/ |
D | svg_downloader.py | 39 urllib.urlretrieve(file_url, dest_file)
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | data_utils.py | 50 def urlretrieve(url, filename, reporthook=None, data=None): function 87 from urllib.request import urlretrieve # pylint: disable=g-importing-member 259 urlretrieve(origin, fpath, dl_progress)
|
/external/tensorflow/tensorflow/lite/tutorials/ |
D | dataset.py | 78 urllib.request.urlretrieve(url, zipped_filepath)
|
/external/fmtlib/support/ |
D | travis-build.py | 35 urllib.urlretrieve('http://mirrors.kernel.org/ubuntu/pool/main/d/doxygen/' +
|
/external/python/cpython3/Doc/library/ |
D | urllib.error.rst | 61 This exception is raised when the :func:`~urllib.request.urlretrieve`
|
/external/autotest/client/bin/ |
D | test_config.py | 48 utils.urlretrieve(cfg, self.cfg)
|
/external/autotest/server/ |
D | base_utils.py | 86 utils.urlretrieve(location, tmpfile)
|
/external/pigweed/pw_arduino_build/py/pw_arduino_build/ |
D | file_operations.py | 115 urllib.request.urlretrieve(url, filename=downloaded_file)
|