Lines Matching refs:name
18 # information: Portions Copyright [yyyy] [name of copyright owner]
159 True, throw away any error messages. Returns the name of the file to
197 # return the name of the file that we downloaded the data to.
208 The filename argument is the name of the expected file to download, so
218 name, version = re.match("/(.*)==(.*)$", path).groups()
224 jsurl = "http://pypi.python.org/pypi/%s/json" % name
226 jsurl = "http://%s/pypi/%s/json" % (host, name)
233 print "Unknown component '%s'" % name
304 name = file_arg
311 elif name and name != path:
315 shutil.copy2(path, name)
319 os.symlink(path, name)
323 name = download(url, timeout_arg, file_arg, quiet)
324 if name == None:
339 name = download(nurl, timeout_arg, file_arg, quiet)
340 if name is None:
348 yield name
406 for name in download_from_paths(search_list, file_arg, url_arg,
423 if validate_signature(name, sig_file):
435 realhash = validate_container(name, hash_arg)
443 payloadhash = validate_payload(name, hash_arg)
466 newname = name + ".invalid-hash"
468 os.rename(name, newname)
475 name)
479 os.remove(name)