- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 874 for Pythons (0.13 sec)
-
docs/select/README.md
## Example using Python API ### 1. Prerequisites - Install MinIO Server from [here](https://min.io/docs/minio/linux/index.html#procedure). - Familiarity with AWS S3 API. - Familiarity with Python and installing dependencies. ### 2. Install boto3 Install `aws-sdk-python` from AWS SDK for Python official docs [here](https://aws.amazon.com/sdk-for-python/) ### 3. Example
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 6.5K bytes - Viewed (0) -
ci/official/utilities/setup_macos.sh
set +x if [[ -n "${GOOGLE_APPLICATION_CREDENTIALS:-}" ]]; then # Python 3.12 removed the module `imp` which is needed by gcloud CLI so we set # `CLOUDSDK_PYTHON` to Python 3.11 which is the system Python on TFCI Mac # VMs. export CLOUDSDK_PYTHON=$(which python3.11) gcloud auth activate-service-account --key-file="${GOOGLE_APPLICATION_CREDENTIALS}" fi set -x
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0) -
ci/official/utilities/cleanup_summary.sh
# Each failed target there will have its own representation, making failures # easier to find and read. function resultstore_extract { local PYTHON_BIN XML_PATH PYTHON_BIN=$(which python3 2>/dev/null || which python) XML_PATH="$TFCI_OUTPUT_DIR/Bazel_Test_and_Build_Results/sponge_log.xml" "$PYTHON_BIN" \ "$TFCI_GIT_DIR/ci/official/utilities/extract_resultstore_links.py" \ "$TFCI_OUTPUT_DIR/script.log" \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
//// tab | Python 3.9+ ```Python hl_lines="17 19-21" {!> ../../docs_src/settings/app02_an_py39/main.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="17 19-21" {!> ../../docs_src/settings/app02_an/main.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12.9K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
//// tab | Python 3.9+ ```Python hl_lines="15-16" {!> ../../docs_src/dependencies/tutorial008c_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="14-15" {!> ../../docs_src/dependencies/tutorial008c_an.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14K bytes - Viewed (0) -
ci/official/utilities/convert_msys_paths_to_win_paths.py
#!/usr/bin/python3 # Copyright 2024 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
For example, we can define an `Image` model: //// tab | Python 3.10+ ```Python hl_lines="7-9" {!> ../../docs_src/body_nested_models/tutorial004_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="9-11" {!> ../../docs_src/body_nested_models/tutorial004_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9-11"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.4K bytes - Viewed (0) -
CONTRIBUTING.md
```bash clang-format <my_cc_file> --style=google > /tmp/my_cc_file.cc diff <my_cc_file> /tmp/my_cc_file.cc ``` #### Python coding style Changes to TensorFlow Python code should conform to [Google Python Style Guide](https://github.com/google/styleguide/blob/gh-pages/pyguide.md) Use `pylint` to check your Python changes. To install `pylint` and check a file with `pylint` against TensorFlow's custom style definition: ```bash
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 06:20:12 UTC 2024 - 15.9K bytes - Viewed (0) -
docs/en/docs/advanced/custom-response.md
/// info This requires installing `ujson` for example with `pip install ujson`. /// /// warning `ujson` is less careful than Python's built-in implementation in how it handles some edge-cases. /// ```Python hl_lines="2 7" {!../../docs_src/custom_response/tutorial001.py!} ``` /// tip It's possible that `ORJSONResponse` might be a faster alternative. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12K bytes - Viewed (0) -
ci/official/upload.sh
# for choosing the final directory name. This adds "-devYYYYMMDD" to the end of # the version string (.devYYYYMMDD for Python; see pypi.org/project/tf-nightly) if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then tfrun python3 tensorflow/tools/ci_build/update_version.py --nightly fi source ci/official/utilities/get_versions.sh # Note on gsutil commands:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jan 24 20:52:12 UTC 2024 - 2.8K bytes - Viewed (0)