Home
last modified time | relevance | path

Searched full:upgrade (Results 1 – 25 of 1307) sorted by relevance

12345678910>>...53

/external/tensorflow/tensorflow/tools/ci_build/install/
Dinstall_pip_packages.sh36 pip2 install --upgrade setuptools==39.1.0
37 pip3 install --upgrade setuptools==39.1.0
43 pip2 install --upgrade six==1.12.0
44 pip3 install --upgrade six==1.12.0
47 pip2 install --upgrade absl-py
48 pip3 install --upgrade absl-py
51 pip2 install --upgrade werkzeug==0.11.10
52 pip3 install --upgrade werkzeug==0.11.10
55 pip2 install --upgrade bleach==2.0.0
56 pip3 install --upgrade bleach==2.0.0
[all …]
Dinstall_python3.6_pip_packages.sh18 # TODO(amitpatankar): Remove this file once we upgrade to ubuntu:16.04
27 apt-get upgrade
52 pip3 install --upgrade pip
56 pip3 install --upgrade setuptools==39.1.0
58 pip3 install --upgrade virtualenv
63 pip3 install --upgrade absl-py
64 pip3 install --upgrade six==1.10.0
67 pip3 install --upgrade protobuf==3.6.1
77 pip3 install --no-binary=:all: --upgrade numpy==1.14.5
100 pip3 install --upgrade astor
[all …]
Dinstall_python3.5_pip_packages.sh18 # TODO(cais): Remove this file once we upgrade to ubuntu:16.04 docker images for
42 pip3.5 install --upgrade pip
46 pip3.5 install --upgrade setuptools==39.1.0
48 pip3.5 install --upgrade virtualenv
51 pip3.5 install --upgrade absl-py
52 pip3.5 install --upgrade six==1.10.0
55 pip3.5 install --upgrade protobuf==3.6.1
65 pip3.5 install --no-binary=:all: --upgrade numpy==1.14.5
84 pip3.5 install --upgrade astor
85 pip3.5 install --upgrade gast
[all …]
/external/elfutils/m4/
DChangeLog21 * gettext.m4: Upgrade to gettext-0.18.2.
22 * iconv.m4: Upgrade to gettext-0.18.2.
23 * po.m4: Upgrade to gettext-0.18.2.
27 * gettext.m4: Upgrade to gettext-0.17.
28 * iconv.m4: Upgrade to gettext-0.17.
29 * po.m4: Upgrade to gettext-0.17.
72 * codeset.m4: Upgrade to gettext-0.11.
73 * gettext.m4: Upgrade to gettext-0.11.
74 * glibc21.m4: Upgrade to gettext-0.11.
75 * iconv.m4: Upgrade to gettext-0.11.
[all …]
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D6bbd46151c1451f276886aa52d508e7b.000002d7.honggfuzz.cov3 connection: Upgrade, HTTP2-S******************************ettings
4 upgrade: h2c
11 connection: Upgrade, HTTP2-Settings
12 upgrade: h2c
16 connection: Upgrade, HTTP2-S******************************ettings
17 upgrade: h2c
24 connection: Upgrade, HTTP2-Settings
25 upgrade: h2c
Dbf946bfb0714abd7a0f35e6ee6a63f5b.0000026d.honggfuzz.cov3 connection: Upgrade, HTTP2-S******************************ettings
4 upgrade: h2c
12 connection: Upgrade, HTTP2-S******************************ettings
13 upgrade: h2c
20 connection: Upgrade, HTTP2-Settings
21 upgrade: h2c
D3e5b54da02425d352ca3764f6a52438d.00000124.honggfuzz.cov2 host: 127.0.0.1:8������������ion: Upgrade, HTTP2-Settingsst: 127.0.0.1:8�80
3 connection: Upgrade, HTTP2-Settingsst: 127.0.0.1:8�80
4 connection: Upgrade, HTTP2-Settings
5 upgrade: h2c
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D6bbd46151c1451f276886aa52d508e7b.000002d7.honggfuzz.cov3 connection: Upgrade, HTTP2-S******************************ettings
4 upgrade: h2c
11 connection: Upgrade, HTTP2-Settings
12 upgrade: h2c
16 connection: Upgrade, HTTP2-S******************************ettings
17 upgrade: h2c
24 connection: Upgrade, HTTP2-Settings
25 upgrade: h2c
/external/python/cpython3/Tools/msi/launcher/
Dlauncher.wxs32 …<RemoveExistingProducts After="InstallValidate">UPGRADE or REMOVE_350_LAUNCHER or REMOVE_360A1_LAU…
35 <!-- Upgrade all versions of the launcher -->
36 <Upgrade Id="$(var.UpgradeCode)">
38 …<UpgradeVersion Property="UPGRADE" Minimum="0.0.0.0" IncludeMinimum="yes" Maximum="$(var.Version)"…
39 </Upgrade>
41 <Upgrade Id="A71530B9-E89D-53DB-9C2D-C6D7551876D8">
43 </Upgrade>
45 <Upgrade Id="394750C0-7880-5A8F-999F-933965FBCFB4">
47 </Upgrade>
/external/tensorflow/tensorflow/tools/compatibility/
DREADME.md1 # TensorFlow Python API Upgrade Utility
3 This tool allows you to upgrade your existing TensorFlow Python scripts,
5 * `tf_upgrade_v2.py`: Upgrade code from TensorFlow 1.x to TensorFlow 2.0 preview.
6 * `tf_upgrade.py`: Upgrade code to TensorFlow 1.0 from TensorFlow 0.11.
13 Upgrade script can be run on a single Python file:
23 # upgrade the .py files and copy all the other files to the outtree
26 # just upgrade the .py files
63 - Note for upgrading to 2.0: Check out [tf2up.ml](http://tf2up.ml) for a convenient tool to upgrade
75 available for TensorFlow 2.0 upgrade.
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
DWebSocketCallTest.java107 .setHeader("Upgrade", "websocket") in missingConnectionHeader()
111 "Expected 'Connection' header value 'Upgrade' but was 'null'"); in missingConnectionHeader()
117 .setHeader("Upgrade", "websocket") in wrongConnectionHeader()
122 "Expected 'Connection' header value 'Upgrade' but was 'Downgrade'"); in wrongConnectionHeader()
128 .setHeader("Connection", "Upgrade") in missingUpgradeHeader()
132 "Expected 'Upgrade' header value 'websocket' but was 'null'"); in missingUpgradeHeader()
138 .setHeader("Connection", "Upgrade") in wrongUpgradeHeader()
139 .setHeader("Upgrade", "Pepsi") in wrongUpgradeHeader()
143 "Expected 'Upgrade' header value 'websocket' but was 'Pepsi'"); in wrongUpgradeHeader()
149 .setHeader("Connection", "Upgrade") in missingMagicHeader()
[all …]
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.cmake26 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_applications
32 RUN pip install --upgrade keras_preprocessing
/external/python/cpython2/Lib/ensurepip/
D__init__.py54 def bootstrap(root=None, upgrade=False, user=False, argument
64 _bootstrap(root=root, upgrade=upgrade, user=user,
69 def _bootstrap(root=None, upgrade=False, user=False, argument
116 if upgrade:
117 args += ["--upgrade"]
173 "-U", "--upgrade",
176 help="Upgrade pip and dependencies, even if already installed.",
215 upgrade=args.upgrade,
/external/python/cpython3/Lib/ensurepip/
D__init__.py49 def bootstrap(*, root=None, upgrade=False, user=False, argument
59 _bootstrap(root=root, upgrade=upgrade, user=user,
64 def _bootstrap(*, root=None, upgrade=False, user=False, argument
110 if upgrade:
111 args += ["--upgrade"]
165 "-U", "--upgrade",
168 help="Upgrade pip and dependencies, even if already installed.",
200 upgrade=args.upgrade,
/external/swiftshader/third_party/LLVM/test/Bitcode/
Dsse42_crc32.ll8 ; crc32.8 should upgrade to crc32.32.8
12 ; crc32.16 should upgrade to crc32.32.16
16 ; crc32.32 should upgrade to crc32.32.32
20 ; crc64.8 should upgrade to crc32.64.8
24 ; crc64.64 should upgrade to crc32.64.64
/external/honggfuzz/examples/apache-httpd/
Dhttpd.wordlist88 "Upgrade:"
133 "Upgrade"
176 "Upgrade: h2crn"
177 "Upgrade: h2rn"
179 "Upgrade:"
185 "upgrade"
/external/curl/tests/data/
Dtest180128 # listen to the upgrade request!
30 upgrade
43 HTTP/2 upgrade with lying server
59 Connection: Upgrade, HTTP2-Settings
60 Upgrade: %H2CVER
/external/autotest/site_utils/stable_images/
Dassign_stable_images_unittest.py197 Assert that if in Omaha, two boards in a set of three upgrade
472 Test an empty upgrade that does nothing.
474 Test the boundary case of an upgrade where there are no boards,
481 Test an empty upgrade that merely changes the default.
483 Test the boundary case of an upgrade where there are no boards,
499 Test a board left at the old default after a default upgrade.
526 Test upgrading a board to track a default upgrade.
534 Test an upgrade with no changes to a board or the default.
536 Test the case of an upgrade with a board in it, where neither
545 Test a board upgrade with an unchanged default.
[all …]
/external/autotest/client/site_tests/hardware_DiskFirmwareUpgrade/
Dhardware_DiskFirmwareUpgrade.py12 Run the disk firmware upgrade script.
23 Runs the shell script that upgrade disk firmware.
26 @param expected_result: expected results of the upgrade.
36 # Check the result of the upgrade.
51 raise error.TestError('Expected upgrade did not happened')
/external/python/cpython3/Lib/venv/
D__init__.py37 :param upgrade: If True, upgrade an existing virtual environment.
44 symlinks=False, upgrade=False, with_pip=False, prompt=None): argument
48 self.upgrade = upgrade
69 if not self.upgrade:
259 cmd = [context.env_exe, '-Im', 'ensurepip', '--upgrade',
412 parser.add_argument('--upgrade', default=False, action='store_true',
413 dest='upgrade', help='Upgrade the environment '
426 if options.upgrade and options.clear:
427 raise ValueError('you cannot supply --upgrade and --clear together.')
431 upgrade=options.upgrade,
/external/python/cpython3/Tools/msi/
Dcommon.wxs24 <Upgrade Id="$(var.UpgradeCode)">
26 …<UpgradeVersion Property="UPGRADE" Minimum="$(var.UpgradeMinimumVersion)" IncludeMinimum="yes" Max…
27 </Upgrade>
32 <Upgrade Id="$(var.CoreUpgradeCode)">
34 </Upgrade>
43 …<RemoveExistingProducts After="InstallInitialize" Overridable="yes">UPGRADE</RemoveExistingProduct…
/external/autotest/client/site_tests/enterprise_CFM_AtrusUpdaterStress/
Denterprise_CFM_AtrusUpdaterStress.py18 1. Trigger forced upgrade of the atrus via atrusctl with dbus.
19 2. Wait for the updater to finish, and check status of upgrade.
20 The upgrade will be successfull if the transfer of the binary was
47 raise error.TestFail('Upgrade failed in {}/{} of tries.'
/external/tensorflow/tensorflow/lite/schema/
Dupgrade_schema.py15 """Upgrade script to move from pre-release schema to new schema.
69 an incremental upgrade strategy to go from version to version.
91 # Supported schemas for upgrade.
98 # Ensure schemas are sorted, and extract latest version and upgrade
181 """Upgrade data from Version 0 to Version 1.
197 """Upgrade data from Version 1 to Version 2.
256 # Upgrade the operator codes
268 """Upgrade data from Version 2 to Version 3.
296 This incrementally will upgrade from version to version within data.
/external/python/google-api-python-client/docs/dyn/
Dcontainer_v1.projects.zones.clusters.nodePools.html91 <p class="firstline">Roll back the previously Aborted or Failed NodePool upgrade.</p>
125 …ines the set of options for the user to control how # Specifies the Auto Upgrade knobs for the nod…
128 # with the description of the upgrade.
133 …"autoUpgrade": True or False, # A flag that specifies whether node auto-upgrade is enabled for the…
134 # pool. If enabled, node auto-upgrade helps keep the nodes in your node pool
326 …ines the set of options for the user to control how # Specifies the Auto Upgrade knobs for the nod…
329 # with the description of the upgrade.
334 …"autoUpgrade": True or False, # A flag that specifies whether node auto-upgrade is enabled for the…
335 # pool. If enabled, node auto-upgrade helps keep the nodes in your node pool
470 …ines the set of options for the user to control how # Specifies the Auto Upgrade knobs for the nod…
[all …]
/external/llvm/include/llvm/IR/
DAutoUpgrade.h40 /// This is an auto-upgrade hook for any old intrinsic function syntaxes
55 /// we upgrade it to the struct-path aware TBAA format.
58 /// This is an auto-upgrade for bitcast between pointers with different
63 /// This is an auto-upgrade for bitcast constant expression between pointers
77 /// Upgrade the loop attachment metadata node.

12345678910>>...53