Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 437 for Pools (0.05 sec)

  1. docs/en/docs/deployment/docker.md

    ## Container Images { #container-images }
    
    Docker has been one of the main tools to create and manage **container images** and **containers**.
    
    And there's a public <a href="https://hub.docker.com/" class="external-link" target="_blank">Docker Hub</a> with pre-made **official container images** for many tools, environments, databases, and applications.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  2. ci/official/containers/ml_build/builder.packages.txt

    # Packages to be installed for the new Docker image.
    
    # Packages needed to build devtoolset
    file
    flex
    g++
    make
    patch
    rpm2cpio
    unar
    wget
    xz-utils
    cpio
    
    # Other build-related tools
    apt-transport-https
    autoconf
    automake
    build-essential
    ca-certificates
    llvm-18
    clang-18
    clang-tidy-18
    lld-18
    clang-format-12
    curl
    git
    parallel
    sudo
    swig
    unzip
    zip
    openjdk-21-jdk
    vim
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Mar 11 00:08:59 UTC 2025
    - 363 bytes
    - Viewed (0)
  3. android-test/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.test">
    
      <uses-permission android:name="android.permission.INTERNET" />
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    
      <application android:usesCleartextTraffic="true" tools:targetApi="m"/>
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 387 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/EnumHashBiMap.java

      // TODO(b/192446998): Remove this override after tools understand nullness better.
      public @Nullable V put(K key, @ParametricNullness V value) {
        return super.put(key, value);
      }
    
      @CanIgnoreReturnValue
      @Override
      @SuppressWarnings("RedundantOverride") // b/192446478: RedundantOverride ignores some annotations.
      // TODO(b/192446998): Remove this override after tools understand nullness better.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

    import okio.Buffer
    import okio.BufferedSink
    import okio.ByteString
    
    /**
     * An [RFC 6455][rfc_6455]-compatible WebSocket frame writer.
     *
     * This class is not thread safe.
     *
     * [rfc_6455]: http://tools.ietf.org/html/rfc6455
     */
    class WebSocketWriter(
      private val isClient: Boolean,
      val sink: BufferedSink,
      val random: Random,
      private val perMessageDeflate: Boolean,
      private val noContextTakeover: Boolean,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 6K bytes
    - Viewed (0)
  6. ci/official/containers/ml_build/cuda12.8_cudnn9.8.packages.txt

    # All required CUDA packages
    cuda-compat-12-8
    cuda-command-line-tools-12-8
    cuda-cudart-dev-12-8
    cuda-nvcc-12-8
    cuda-cupti-12-8
    cuda-nvprune-12-8
    cuda-libraries-12-8
    cuda-libraries-dev-12-8
    cuda-nvml-dev-12-8
    libcufft-12-8
    libcurand-12-8
    libcusolver-dev-12-8
    libcusparse-dev-12-8
    libcublas-12-8
    libcublas-dev-12-8
    libnccl-dev=2.25.1-1+cuda12.8
    libnccl2=2.25.1-1+cuda12.8
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Mar 14 22:45:44 UTC 2025
    - 534 bytes
    - Viewed (0)
  7. ci/official/containers/ml_build/cuda13.0_cudnn9.12.packages.txt

    # All required CUDA packages
    cuda-compat-13-0
    cuda-command-line-tools-13-0
    cuda-cudart-dev-13-0
    cuda-nvcc-13-0
    cuda-cupti-13-0
    cuda-nvprune-13-0
    cuda-libraries-13-0
    cuda-libraries-dev-13-0
    cuda-nvml-dev-13-0
    libcufft-13-0
    libcurand-13-0
    libcusolver-dev-13-0
    libcusparse-dev-13-0
    libcublas-13-0
    libcublas-dev-13-0
    libnccl-dev=2.27.7-1+cuda13.0
    libnccl2=2.27.7-1+cuda13.0
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 15 20:39:50 UTC 2025
    - 536 bytes
    - Viewed (0)
  8. ci/README.md

    ********************************************************************************
    
    The CI folder contains the configuration files and scripts used to build, test,
    and deploy TensorFlow. This folder is typically used by continuous integration
    (CI) tools to build and test TensorFlow whenever there is a change to the
    code. This folder is broken into subfolders that represent the level of support
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  9. ci/official/installer_wheel.sh

    # Update the version numbers for Nightly only
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      python3 tensorflow/tools/ci_build/update_version.py --nightly
    fi
    
    # This generates a pure python wheel of the format "*-py3-none-any.whl"
    bazel run --HERMETIC_PYTHON_VERSION=3.13 //tensorflow/tools/pip_package:setup_py_binary -- bdist_wheel --dist-dir "$TFCI_OUTPUT_DIR"
    
    # Get the name of the pure python wheel that was built. This should
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Mar 04 22:39:12 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. ci/official/utilities/code_check_changed_files.bats

            python -m pylint --rcfile=tensorflow/tools/ci_build/pylintrc --score false \
            | grep -v "**** Module" \
            | tee $BATS_TEST_TMPDIR/needs_help.txt
        [[ ! -s $BATS_TEST_TMPDIR/needs_help.txt ]]
    }
    
    @test "API compatibility test passes, ensuring no unexpected changes to the TF API" {
        bazel test $TFCI_BAZEL_COMMON_ARGS //tensorflow/tools/api/tests:api_compatibility_test
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top