Home
last modified time | relevance | path

Searched refs:pip (Results 1 – 25 of 747) sorted by relevance

12345678910>>...30

/external/blktrace/btt/
Dproc.c27 struct p_info *pip; member
41 f(rb_entry(n, struct pn_info, rb_node)->pip, arg); in __foreach()
57 free(pnp->pip->name); in __destroy()
58 region_exit(&pnp->pip->regions); in __destroy()
59 free(pnp->pip); in __destroy()
77 return this->pip; in __find_process_pid()
97 return this->pip; in __find_process_name()
123 this->pip = that; in insert_pid()
151 this->pip = that; in insert_name()
157 static void insert(struct p_info *pip) in insert() argument
[all …]
Dinlines.h165 iop->pip = find_process(iop->t.pid, NULL); in io_setup()
203 UPDATE_AVGS(q2c_dm, iop, iop->pip, c_time); in update_q2c()
205 UPDATE_AVGS(q2c, iop, iop->pip, c_time); in update_q2c()
211 UPDATE_AVGS(q2a_dm, iop, iop->pip, a_time); in update_q2a()
213 UPDATE_AVGS(q2a, iop, iop->pip, a_time); in update_q2a()
218 UPDATE_AVGS(q2g, iop, iop->pip, g_time); in update_q2g()
223 UPDATE_AVGS(s2g, iop, iop->pip, g_time); in update_s2g()
228 UNUPDATE_AVGS(q2g, iop, iop->pip, g_time); in unupdate_q2g()
233 UPDATE_AVGS(g2i, iop, iop->pip, i_time); in update_g2i()
238 UNUPDATE_AVGS(g2i, iop, iop->pip, i_time); in unupdate_g2i()
[all …]
/external/tensorflow/tensorflow/compiler/tests/
DBUILD33 # To pass open source testing in the pip Kokoros.
81 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
94 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
111 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
130 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
148 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
168 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
188 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
208 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
236 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
[all …]
/external/tensorflow/tensorflow/tools/ci_build/release/
Dcommon_win.bat29 %PY_EXE% -m pip install --upgrade "setuptools<53" pip wheel
34 %PY_EXE% -m pip install "numpy ~= 1.19.2"
36 %PY_EXE% -m pip install "absl-py ~= 0.10"
37 %PY_EXE% -m pip install "astunparse ~= 1.6.3"
38 %PY_EXE% -m pip install "flatbuffers ~= 1.12.0"
39 %PY_EXE% -m pip install "google_pasta ~= 0.2"
40 %PY_EXE% -m pip install "h5py ~= 3.1.0"
41 %PY_EXE% -m pip install "keras_preprocessing ~= 1.1.2"
42 %PY_EXE% -m pip install "opt_einsum ~= 3.3.0"
43 %PY_EXE% -m pip install "protobuf >= 3.9.2"
[all …]
/external/grpc-grpc/tools/run_tests/helper_scripts/
Dbuild_python.sh132 $PYTHON -m pip install --user virtualenv
139 curl https://bootstrap.pypa.io/get-pip.py | $VENV_PYTHON
147 $VENV_PYTHON -m pip install --no-deps .
154 $VENV_PYTHON -m pip install gevent==1.3.b1
158 $VENV_PYTHON -m pip install --upgrade pip==10.0.1
159 $VENV_PYTHON -m pip install setuptools
160 $VENV_PYTHON -m pip install cython
161 $VENV_PYTHON -m pip install six enum34 protobuf
165 $VENV_PYTHON -m pip install futures
187 $VENV_PYTHON -m pip install coverage==4.4 oauth2client==4.1.0 \
/external/python/cpython2/Doc/library/
Densurepip.rst1 :mod:`ensurepip` --- Bootstrapping the ``pip`` installer
5 :synopsis: Bootstrapping the ``pip`` installer into an existing Python
10 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``
12 bootstrapping approach reflects the fact that ``pip`` is an independent
18 directly (as ``pip`` should be bootstrapped by default), but it may be
19 needed if installing ``pip`` was skipped when installing Python (or
20 when creating a virtual environment) or after explicitly uninstalling ``pip``.
25 needed to bootstrap ``pip`` are included as internal parts of the
33 :pep:`453`: Explicit bootstrapping of pip in Python installations
49 This invocation will install ``pip`` if it is not already installed,
[all …]
/external/python/cpython3/Doc/library/
Densurepip.rst1 :mod:`ensurepip` --- Bootstrapping the ``pip`` installer
5 :synopsis: Bootstrapping the "pip" installer into an existing Python
12 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``
14 bootstrapping approach reflects the fact that ``pip`` is an independent
20 directly (as ``pip`` should be bootstrapped by default), but it may be
21 needed if installing ``pip`` was skipped when installing Python (or
23 ``pip``.
28 needed to bootstrap ``pip`` are included as internal parts of the
36 :pep:`453`: Explicit bootstrapping of pip in Python installations
49 This invocation will install ``pip`` if it is not already installed,
[all …]
/external/protobuf/kokoro/linux/dockerfile/test/python_jessie/
DDockerfile30 python-pip
33 RUN pip install --upgrade pip==10.0.1
34 RUN pip install virtualenv
35 RUN pip install six==1.10.0 twisted==17.5.0
37 # Install pip and virtualenv for Python 3.4
38 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
39 RUN python3.4 -m pip install virtualenv
/external/python/cpython2/Doc/installing/
Dindex.rst35 * ``pip`` is the preferred installer program. Starting with Python 2.7.9, it
41 is defaults to installing ``pip`` into all created virtual environments.
69 python -m pip install SomePackage
75 ``virtualenv`` to provide such environments using either pip
76 (``pip install virtualenv``) or through your system package manager
88 python -m pip install SomePackage==1.0.4 # specific version
89 python -m pip install "SomePackage>=1.0.4" # minimum version
95 python -m pip install --upgrade SomePackage
97 More information and resources regarding ``pip`` and its capabilities can be
111 ... install ``pip`` in versions of Python prior to Python 2.7.9?
[all …]
/external/grpc-grpc/src/python/grpcio/
DREADME.rst18 $ pip install grpcio
24 $ sudo pip install grpcio
26 If you're on Windows make sure that you installed the :code:`pip.exe` component
31 $ pip.exe install grpcio
33 Windows users may need to invoke :code:`pip.exe` from a command line ran as
36 n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
53 # For the next two commands do `sudo pip install` if you get permission-denied errors
54 $ pip install -rrequirements.txt
55 $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
69 This is likely because :code:`pip` doesn't own the offending dependency,
[all …]
/external/python/cpython3/Doc/installing/
Dindex.rst35 * ``pip`` is the preferred installer program. Starting with Python 3.4, it
42 defaults to installing ``pip`` into all created virtual environments.
46 aren't able to automatically install ``pip`` into created environments.
83 python -m pip install SomePackage
99 python -m pip install SomePackage==1.0.4 # specific version
100 python -m pip install "SomePackage>=1.0.4" # minimum version
106 python -m pip install --upgrade SomePackage
108 More information and resources regarding ``pip`` and its capabilities can be
126 ... install ``pip`` in versions of Python prior to Python 3.4?
129 Python only started bundling ``pip`` with Python 3.4. For earlier versions,
[all …]
/external/grpc-grpc/tools/dockerfile/test/python_jessie_x64/
DDockerfile53 RUN apt-get update && apt-get install -y python-pip && apt-get clean
54 RUN pip install --upgrade google-api-python-client
64 python-pip
67 RUN pip install --upgrade pip==10.0.1
68 RUN pip install virtualenv
69 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
71 # Install pip and virtualenv for Python 3.4
72 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
73 RUN python3.4 -m pip install virtualenv
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/macos/
Dgrpc_build_artifacts.sh28 python2.7 -m pip install -U cython setuptools==44.1.1 wheel --user
29 python3.5 -m pip install -U cython setuptools==44.1.1 wheel --user
30 python3.6 -m pip install -U cython setuptools==44.1.1 wheel --user
31 python3.7 -m pip install -U cython setuptools==44.1.1 wheel --user
32 python3.8 -m pip install -U cython setuptools==44.1.1 wheel --user
33 python3.9 -m pip install -U cython setuptools==44.1.1 wheel --user
/external/mesa3d/.appveyor/
Dappveyor_msvc.bat4 rem Check pip
6 python -m pip install --upgrade pip
7 python -m pip --version
10 python -m pip install Mako==1.1.3
12 python -m pip install pypiwin32
13 rem Install python wheels, necessary to install SCons via pip
14 python -m pip install wheel
16 python -m pip install scons==3.1.2
19 python -m pip install Mako meson
/external/python/cpython3/Doc/tutorial/
Dvenv.rst92 Managing Packages with pip
96 :program:`pip`. By default ``pip`` will install packages from the Python
98 Package Index by going to it in your web browser, or you can use ``pip``'s
103 (tutorial-env) $ pip search astronomy
111 ``pip`` has a number of subcommands: "search", "install", "uninstall",
113 complete documentation for ``pip``.)
119 (tutorial-env) $ python -m pip install novas
131 (tutorial-env) $ python -m pip install requests==2.6.0
137 If you re-run this command, ``pip`` will notice that the requested
139 different version number to get that version, or you can run ``pip
[all …]
/external/python/httplib2/script/
Dtest33 pip install -e .
47 ./venv-27/bin/pip install -e . -r requirements-test.txt
49 ./venv-36/bin/pip install -e . -r requirements-test.txt
66 local pip="$1"
67 $pip install dist/httplib2*
69 version_installed=$($pip show httplib2 |fgrep Version |cut -d' ' -f2)
/external/grpc-grpc/templates/tools/dockerfile/
Dpython_deps.include9 python-pip
12 RUN pip install --upgrade pip==10.0.1
13 RUN pip install virtualenv
14 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
/external/tensorflow/tensorflow/lite/tools/pip_package/
DDockerfile17 python-pip \
26 python3-pip \
39 RUN pip install pip --upgrade
40 RUN pip install pybind11
41 RUN pip3 install pip --upgrade
/external/grpc-grpc/tools/dockerfile/interoptest/grpc_interop_python/
DDockerfile60 python-pip
63 RUN pip install --upgrade pip==10.0.1
64 RUN pip install virtualenv
65 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
67 # Install pip and virtualenv for Python 3.4
68 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
69 RUN python3.4 -m pip install virtualenv
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.cmake25 RUN apt-get install -y --no-install-recommends python-pip
26 RUN pip install --upgrade wheel
27 RUN pip install --upgrade astor
28 RUN pip install --upgrade gast
29 RUN pip install --upgrade numpy
30 RUN pip install --upgrade termcolor
31 RUN pip install --upgrade keras_preprocessing
/external/grpc-grpc/tools/internal_ci/macos/
Dgrpc_build_artifacts.sh24 python2.7 -m pip install cython setuptools wheel
25 python3.4 -m pip install cython setuptools wheel
26 python3.5 -m pip install cython setuptools wheel
27 python3.6 -m pip install cython setuptools wheel
28 python3.7 -m pip install cython setuptools wheel
/external/grpc-grpc/tools/dockerfile/test/python_pyenv_x64/
DDockerfile53 RUN apt-get update && apt-get install -y python-pip && apt-get clean
54 RUN pip install --upgrade google-api-python-client
64 python-pip
67 RUN pip install --upgrade pip==10.0.1
68 RUN pip install virtualenv
69 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
95 # Install pip and virtualenv for Python 3.5
96 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.5
97 RUN python3.5 -m pip install virtualenv
/external/grpc-grpc/tools/gce/
Dlinux_performance_worker_init.sh52 python-pip \
56 python3-pip \
75 sudo pip install --upgrade pip==10.0.1
76 sudo pip install tabulate
77 sudo pip install google-api-python-client
78 sudo pip install virtualenv
91 curl -O https://bootstrap.pypa.io/get-pip.py
92 sudo pypy get-pip.py
93 sudo pypy -m pip install tabulate
94 sudo pip install google-api-python-client
/external/python/markupsafe/requirements/
Ddev.txt2 # This file is autogenerated by pip-compile
5 # pip-compile requirements/dev.in
10 click==7.1.2 # via pip-tools
18 pip-tools==5.3.1 # via -r requirements/dev.in
25 six==1.15.0 # via packaging, pip-tools, tox, virtualenv
31 # pip
/external/python/jinja/requirements/
Ddev.txt2 # This file is autogenerated by pip-compile
5 # pip-compile requirements/dev.in
10 click==7.1.2 # via pip-tools
17 pip-tools==5.2.1 # via -r requirements/dev.in
24 six==1.14.0 # via packaging, pip-tools, tox, virtualenv
31 # pip

12345678910>>...30