Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for nonInteractive (0.05 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)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

            }
            return Optional.empty();
        }
    
        @Override
        public Optional<Boolean> nonInteractive() {
            if (commandLine.hasOption(CLIManager.NON_INTERACTIVE) || commandLine.hasOption(CLIManager.BATCH_MODE)) {
                return Optional.of(Boolean.TRUE);
            }
            return Optional.empty();
        }
    
        @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Oct 08 07:36:42 GMT 2025
    - 21.3K bytes
    - Click Count (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            } else {
                boolean isBatchMode = !context.options().forceInteractive().orElse(false)
                        && context.options().nonInteractive().orElse(false);
                if (isBatchMode || context.options().logFile().isPresent()) {
                    context.coloredOutput = false;
                }
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

    /**
     */
    @Deprecated
    public class CLIManager {
        public static final char ALTERNATE_POM_FILE = 'f';
    
        public static final char BATCH_MODE = 'B';
    
        public static final String NON_INTERACTIVE = "non-interactive";
    
        public static final String FORCE_INTERACTIVE = "force-interactive";
    
        public static final char SET_USER_PROPERTY = 'D';
    
        /**
         * @deprecated Use {@link #SET_USER_PROPERTY}
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Aug 06 04:56:48 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  8. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                boolean isBatchMode = !commandLine.hasOption(CLIManager.FORCE_INTERACTIVE)
                        && (commandLine.hasOption(CLIManager.BATCH_MODE)
                                || commandLine.hasOption(CLIManager.NON_INTERACTIVE));
                if (isBatchMode || commandLine.hasOption(CLIManager.LOG_FILE)) {
                    MessageUtils.setColorEnabled(false);
                }
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
Back to Top