Home
last modified time | relevance | path

Searched refs:EnvBuilder (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/grpcio/src/
Denv.rs38 pub struct EnvBuilder { struct
45 impl EnvBuilder { argument
47 pub fn new() -> EnvBuilder { in new()
48 EnvBuilder { in new()
62 pub fn cq_count(mut self, count: usize) -> EnvBuilder { in cq_count() argument
69 pub fn name_prefix<S: Into<String>>(mut self, prefix: S) -> EnvBuilder { in name_prefix() argument
75 pub fn after_start<F: Fn() + Send + Sync + 'static>(mut self, f: F) -> EnvBuilder { in after_start() argument
81 pub fn before_stop<F: Fn() + Send + Sync + 'static>(mut self, f: F) -> EnvBuilder { in before_stop() argument
144 EnvBuilder::new() in new()
Dlib.rs70 pub use crate::env::{EnvBuilder, Environment};
/external/python/cpython3/Lib/test/
Dtest_venv.py127 builder = venv.EnvBuilder()
135 builder = venv.EnvBuilder(prompt='My prompt')
143 builder = venv.EnvBuilder(prompt='.')
152 builder = venv.EnvBuilder()
234 builder = venv.EnvBuilder(clear=True)
265 builder = venv.EnvBuilder(upgrade=upgrade)
283 builder = venv.EnvBuilder(clear=True, system_site_packages=ssp)
294 builder = venv.EnvBuilder(clear=True, symlinks=usl)
331 builder = venv.EnvBuilder(clear=True, symlinks=True)
346 builder = venv.EnvBuilder(clear=True)
[all …]
/external/python/cpython3/Doc/library/
Dvenv.rst97 creation according to their needs, the :class:`EnvBuilder` class.
99 .. class:: EnvBuilder(system_site_packages=False, clear=False, \
103 The :class:`EnvBuilder` class accepts the following keyword arguments on
140 provided :class:`EnvBuilder` class as a base class.
152 The ``create`` method of the :class:`EnvBuilder` class illustrates the
219 In addition, :class:`EnvBuilder` provides this utility method that can be
254 Create an :class:`EnvBuilder` with the given keyword arguments, and call its
255 :meth:`~EnvBuilder.create` method with the *env_dir* argument.
265 An example of extending ``EnvBuilder``
268 The following script shows how to extend :class:`EnvBuilder` by implementing a
[all …]
/external/python/cpython3/Lib/venv/
D__init__.py20 class EnvBuilder: class
409 builder = EnvBuilder(system_site_packages=system_site_packages,
482 builder = EnvBuilder(system_site_packages=options.system_site,
/external/rust/crates/grpcio/
DCHANGELOG.md28 - Add blocking callback to `EnvBuilder` (#474)
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1723 :class:`~venv.EnvBuilder` and the :func:`~venv.create` convenience function
1725 controls whether or not :class:`~venv.EnvBuilder` ensures that ``pip`` is
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst7602 Fix EnvBuilder and --symlinks in venv on Windows