/external/googletest/ci/ |
install-platformio.sh | 2 sudo pip install -U platformio
|
/external/fonttools/.travis/ |
install.sh | 6 ci_requirements="pip setuptools tox" 10 # install pip on the system python 11 curl -O https://bootstrap.pypa.io/get-pip.py 12 python get-pip.py --user 13 python -m pip install --user virtualenv 21 python3 -m pip install virtualenv 30 python -m pip install $ci_requirements
|
/external/blktrace/btt/ |
proc.c | 27 struct p_info *pip; member in struct:pn_info 41 f(rb_entry(n, struct pn_info, rb_node)->pip, arg); 57 free(pnp->pip->name); 58 region_exit(&pnp->pip->regions); 59 free(pnp->pip); 77 return this->pip; 97 return this->pip; 123 this->pip = that; 151 this->pip = that; 157 static void insert(struct p_info *pip) 170 struct p_info *pip; local 209 struct p_info *pip = find_process(pid, name); local 240 struct p_info *pip; local [all...] |
inlines.h | 165 iop->pip = find_process(iop->t.pid, NULL); 203 UPDATE_AVGS(q2c_dm, iop, iop->pip, c_time); 205 UPDATE_AVGS(q2c, iop, iop->pip, c_time); 211 UPDATE_AVGS(q2a_dm, iop, iop->pip, a_time); 213 UPDATE_AVGS(q2a, iop, iop->pip, a_time); 218 UPDATE_AVGS(q2g, iop, iop->pip, g_time); 223 UPDATE_AVGS(s2g, iop, iop->pip, g_time); 228 UNUPDATE_AVGS(q2g, iop, iop->pip, g_time); 233 UPDATE_AVGS(g2i, iop, iop->pip, i_time); 238 UNUPDATE_AVGS(g2i, iop, iop->pip, i_time) [all...] |
/external/tensorflow/tensorflow/tools/ci_build/install/ |
install_pip_packages_remote.sh | 23 easy_install -U pip==9.0.3 24 easy_install3 -U pip==9.0.3 26 # The rest of the pip packages will be installed in
|
install_python3.5_pip_packages.sh | 36 wget -q https://bootstrap.pypa.io/get-pip.py 37 python3.5 get-pip.py 38 rm -f get-pip.py 42 pip3.5 install --upgrade pip
|
/external/grpc-grpc/tools/run_tests/helper_scripts/ |
build_python.sh | 132 $PYTHON -m pip install --user virtualenv 137 # on pip to upgrade itself because if pip is too old, it may not have the required 138 # TLS version to run `pip install`. 139 curl https://bootstrap.pypa.io/get-pip.py | $VENV_PYTHON 141 # pip-installs the directory specified. Used because on MSYS the vanilla Windows 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. [all...] |
/external/python/google-api-python-client/.kokoro/ |
build.sh | 10 python3 -m pip install --upgrade tox
|
/external/grpc-grpc/tools/internal_ci/macos/ |
grpc_build_artifacts.sh | 24 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/distrib/ |
yapf_code.sh | 35 "$PYTHON" -m pip install --upgrade pip==10.0.1 36 "$PYTHON" -m pip install --upgrade futures 37 "$PYTHON" -m pip install yapf==0.20.0
|
pylint_code.sh | 37 $PYTHON -m pip install --upgrade pip==10.0.1 38 $PYTHON -m pip install pylint==1.9.2
|
/external/harfbuzz_ng/.ci/ |
run-coveralls.sh | 8 pip install --user nose 9 pip install --user cpp-coveralls
|
/external/tensorflow/tensorflow/tools/ci_build/windows/bazel/ |
bazel_test_lib.sh | 50 echo "y" | pip uninstall tensorflow -q || true 51 pip install ${1} --no-deps
|
/external/tensorflow/tensorflow/tools/dockerfiles/tests/ |
build-cpu.sh | 33 bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/pip && \ 34 pip --no-cache-dir install --upgrade /tmp/pip/tensorflow-*.whl && \ 35 rm -rf /tmp/pip && \
|
build-gpu.sh | 33 bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/pip && \ 34 pip --no-cache-dir install --upgrade /tmp/pip/tensorflow-*.whl && \ 35 rm -rf /tmp/pip && \
|
/external/fonttools/ |
Makefile | 8 pip install --ignore-installed . 11 pip install --ignore-installed --user . 14 pip uninstall --yes fonttools
|
/external/python/httplib2/script/ |
test | 30 install_check_version "pip" 33 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 59 install_check_version "./venv-27/bin/pip" 60 install_check_version "./venv-36/bin/pip" 66 local pip="$1" 67 $pip install dist/httplib2* 69 version_installed=$($pip show httplib2 |fgrep Version |cut -d' ' -f2)
|
/cts/hostsidetests/incident/src/com/android/server/cts/ |
PrintProtoTest.java | 78 for (PrinterIdProto pip : aps.getTrackedPrintersList()) { 79 verifyPrinterIdProto(pip, filterLevel); 84 for (PrinterIdProto pip : pds.getTrackedPrinterRequestsList()) { 85 verifyPrinterIdProto(pip, filterLevel); 87 for (PrinterInfoProto pip : pds.getPrinterList()) { 88 verifyPrinterInfoProto(pip, filterLevel); 100 private static void verifyPrinterIdProto(PrinterIdProto pip, final int filterLevel) throws Exception { 102 assertTrue(pip.getLocalId().isEmpty()); 106 private static void verifyPrinterInfoProto(PrinterInfoProto pip, final int filterLevel) throws Exception { 107 verifyPrinterIdProto(pip.getId(), filterLevel) [all...] |
/external/python/google-api-python-client/tools/ |
gae-zip-creator.sh | 32 # We must not use the system pip, since that exposes a bug uninstalling httplib2 33 # instead, install the dev version of pip. 34 echo "Creating virtualenv and installing pip==dev" 36 ${ENV_PATH}/bin/pip install --upgrade pip==dev >> ${LOG_PATH} 40 ${ENV_PATH}/bin/pip install -b ${BUILD_PATH} -t ${LIB_PATH} . >> ${LOG_PATH}
|
/external/flatbuffers/conan/travis/ |
install.sh | 22 pip install -U conan_package_tools conan
|
/external/python/oauth2client/scripts/ |
install.sh | 19 pip install tox
|
/external/grpc-grpc/test/distrib/python/ |
test_packages.sh | 40 "$PYTHON" -m pip install --upgrade six pip 44 if "$PYTHON" -m pip install "$file"; then
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
SoundGenerator.java | 31 double[] pip = getPip(Common.WINDOW_FOR_PLAYER, Common.FREQUENCIES[i]); local 32 System.arraycopy(pip, 0, sample, 35 pip.length); 56 * Gets a pip sample.
|
/external/grpc-grpc/tools/gce/ |
linux_kokoro_performance_worker_init.sh | 52 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 tabulat [all...] |
linux_performance_worker_init.sh | 52 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 tabulat [all...] |