Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for nonInteractive (0.08 seconds)

  1. ci/official/containers/ml_build/setup.sources.cudnn.sh

    # ==============================================================================
    #
    # Sets up custom apt sources for our TF images.
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    # Fetch the NVIDIA key.
    apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/3bf863cc.pub;
    
    # Set up sources for NVIDIA CUDNN.
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Feb 18 20:42:21 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  2. ci/official/containers/ml_build/setup.packages.sh

    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    # Remove commented lines and blank lines
    apt-get install -y --no-install-recommends $(sed -e '/^\s*#.*$/d' -e '/^\s*$/d' "$1" | sort -u)
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Sep 24 20:45:58 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java

        @Override
        public Optional<String> failOnSeverity() {
            return returnFirstPresentOrEmpty(Options::failOnSeverity);
        }
    
        @Override
        public Optional<Boolean> nonInteractive() {
            return returnFirstPresentOrEmpty(Options::nonInteractive);
        }
    
        @Override
        public Optional<Boolean> forceInteractive() {
            return returnFirstPresentOrEmpty(Options::forceInteractive);
        }
    
        @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Feb 26 17:31:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  4. ci/official/containers/ml_build/setup.sources.sh

    # ==============================================================================
    #
    # Sets up custom apt sources for our TF images.
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    # Set up shared custom sources
    apt-get update
    apt-get install -y gnupg ca-certificates
    
    # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Oct 03 21:13:05 GMT 2024
    - 1.6K bytes
    - Click Count (0)
Back to Top