Searched refs:egg (Results 1 – 25 of 113) sorted by relevance
12345
/external/python/apitools/ |
D | ez_setup.py | 85 egg = download_setuptools(version, download_base, to_dir, download_delay) 86 sys.path.insert(0, egg) 87 import setuptools; setuptools.bootstrap_install_from = egg 196 egg = None 198 egg = download_setuptools(version, delay=0) 199 sys.path.insert(0,egg) 201 return main(list(argv)+[egg]) # we're done here 203 if egg and os.path.exists(egg): 204 os.unlink(egg)
|
/external/antlr/runtime/Python/ |
D | ez_setup.py | 83 egg = download_setuptools(version, download_base, to_dir, download_delay) 84 sys.path.insert(0, egg) 85 import setuptools; setuptools.bootstrap_install_from = egg 153 egg = None 155 egg = download_setuptools(version, delay=0) 156 sys.path.insert(0,egg) 158 return main(list(argv)+[egg]) # we're done here 160 if egg and os.path.exists(egg): 161 os.unlink(egg)
|
/external/python/setuptools/docs/ |
D | formats.txt | 16 A "Python egg" is a logical structure embodying the release of a 19 encode a Python egg, and others can be developed. However, a key 27 1. ``.egg`` format: a directory or zipfile *containing* the project's 31 2. ``.egg-info`` format: a file or directory placed *adjacent* to the 40 The ``.egg`` format is well-suited to distribution and the easy 47 The ``.egg-info`` format, on the other hand, was created to support 53 ``sys.path`` to include each installed egg. 59 command refers to this type of egg installation as "single-version, 62 application by copying ``.egg`` files or directories to a target 63 location, but it cannot do this for ``.egg-info`` installs, because [all …]
|
/external/python/futures/futures.egg-info/ |
D | SOURCES.txt | 19 futures.egg-info/PKG-INFO 20 futures.egg-info/SOURCES.txt 21 futures.egg-info/dependency_links.txt 22 futures.egg-info/not-zip-safe 23 futures.egg-info/top_level.txt
|
/external/python/six/six.egg-info/ |
D | SOURCES.txt | 12 six.egg-info/PKG-INFO 13 six.egg-info/SOURCES.txt 14 six.egg-info/dependency_links.txt 15 six.egg-info/top_level.txt
|
/external/python/cpython2/Lib/bsddb/test/ |
D | test_pickle.py | 43 except db.DBError, egg: 44 pickledEgg = pickle.dumps(egg) 47 if rottenEgg.args != egg.args or type(rottenEgg) != type(egg): 48 raise Exception, (rottenEgg, '!=', egg)
|
/external/grpc-grpc/src/python/grpcio/ |
D | .gitignore | 2 *.egg-info/ 5 *.egg 6 *.egg/
|
/external/rust/crates/memoffset/src/ |
D | span_of.rs | 196 egg: [[u8; 4]; 5], in span_forms() field 202 assert_eq!(68..mem::size_of::<Blarg>(), span_of!(Blarg, egg)); in span_forms() 220 egg: [[u8; 4]; 4], in ig_test() field 229 assert_eq!(span_of!(Test, ..egg), 0..68); in ig_test() 230 assert_eq!(span_of!(Test, ..=egg), 0..84); in ig_test() 246 span_of!(Test, egg..), in ig_test() 247 offset_of!(Test, egg)..mem::size_of::<Test>() in ig_test()
|
/external/python/setuptools/pkg_resources/tests/ |
D | test_pkg_resources.py | 55 egg = tempfile.NamedTemporaryFile(suffix='.egg', delete=False) 56 zip_egg = zipfile.ZipFile(egg, 'w') 74 egg.close() 76 sys.path.append(egg.name) 77 subdir = os.path.join(egg.name, 'subdir') 80 cls.finalizers.append(EggRemover(egg.name))
|
/external/python/cryptography/ |
D | .gitignore | 10 *.egg-info/ 11 *.egg
|
/external/python/jinja/ |
D | .gitignore | 5 *.egg-info/ 6 *.egg
|
/external/python/rsa/ |
D | .gitignore | 2 *.egg-info 9 /distribute*.egg
|
/external/antlr/runtime/Python3/ |
D | ez_setup.py | 91 def _build_egg(egg, tarball, to_dir): argument 114 log.warn(egg) 115 if not os.path.exists(egg): 120 egg = os.path.join(to_dir, 'distribute-%s-py%d.%d.egg' 122 if not os.path.exists(egg): 125 _build_egg(egg, tarball, to_dir) 126 sys.path.insert(0, egg) 128 setuptools.bootstrap_install_from = egg
|
/external/python/parse_type/ |
D | .gitignore | 5 *.egg 6 *.egg-info
|
/external/python/httplib2/ |
D | .gitignore | 1 *.egg 2 *.egg-info
|
/external/python/ipaddress/ |
D | .gitignore | 7 *.egg 8 *.egg-info
|
/external/python/setuptools/setuptools.egg-info/ |
D | SOURCES.txt | 93 setuptools.egg-info/PKG-INFO 94 setuptools.egg-info/SOURCES.txt 95 setuptools.egg-info/dependency_links.txt 96 setuptools.egg-info/entry_points.txt 97 setuptools.egg-info/requires.txt 98 setuptools.egg-info/top_level.txt 99 setuptools.egg-info/zip-safe
|
/external/fonttools/ |
D | .gitignore | 14 *.egg-info/ 15 *.egg
|
/external/llvm-project/libcxx/ |
D | .gitignore | 21 *.egg-info/ 23 *.egg
|
/external/pigweed/ |
D | .dockerignore | 20 *.egg/ 22 *.egg-info/
|
D | .gitignore | 20 *.egg/ 22 *.egg-info/
|
/external/libcxxabi/ |
D | .gitignore | 25 *.egg-info/ 27 *.egg
|
/external/llvm-project/libcxxabi/ |
D | .gitignore | 25 *.egg-info/ 27 *.egg
|
/external/libcxx/ |
D | .gitignore | 21 *.egg-info/ 23 *.egg
|
/external/walt/pywalt/ |
D | .gitignore | 23 *.egg-info/ 25 *.egg
|
12345