Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for apt (0.02 sec)

  1. maven-core/src/site/apt/default-bindings.apt.vm

    Hervé Boutemy <******@****.***> 1678297523 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 08 17:45:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/plugin-execution-isolation.apt

    Josh Soref <******@****.***> 1485147387 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 03 09:12:28 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

    Tamas Cservenak <******@****.***> 1675092035 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. docker/Dockerfile.base

    ENV DEBIAN_FRONTEND=noninteractive
    
    # Do not add more stuff to this list that isn't small or critically useful.
    # If you occasionally need something on the container do
    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
      apt-get install --no-install-recommends -y \
      ca-certificates \
      curl \
      iptables \
      iproute2 \
      iputils-ping \
      knot-dnsutils \
      netcat-openbsd \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  5. pkg/test/echo/docker/Dockerfile.app_sidecar_base

    ENV DEBIAN_FRONTEND=noninteractive
    
    # Do not add more stuff to this list that isn't small or critically useful.
    # If you occasionally need something on the container do
    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
        apt-get install --no-install-recommends -y \
        ca-certificates \
        curl \
        iptables \
        iproute2 \
        iputils-ping \
        knot-dnsutils \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/setup.sources.sh

    # Usage: setup.python.sh <pyversion> <requirements.txt>
    
    # 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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tests/integration/security/fuzz/fuzzers/dotdotpwn/Dockerfile

    FROM perl:5.32.1
    
    RUN git clone https://github.com/wireghoul/dotdotpwn
    WORKDIR /dotdotpwn
    COPY run.sh /dotdotpwn/
    RUN chmod +x /dotdotpwn/run.sh && apt-get update && apt-get install --no-install-recommends libwww-perl -y && apt-get clean && rm -rf /var/lib/apt/lists/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 293 bytes
    - Viewed (0)
  8. samples/external/aptget.yaml

    # This ServiceEntry exposes the hosts needed for installing packages with apt-get.
    # After applying this file, Istio-enabled pods (configured apt-get) be able to execute
    # `apt-get upgrade` and `apt-get install`.  If this is not installed you may get
    # "404  Not Found"
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: make-aptget-work
    spec:
      hosts:
      - deb.debian.org
      - cdn-fastly.deb.debian.org
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 14 21:21:10 UTC 2019
    - 559 bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AptPluginSmokeTest.groovy

    class AptPluginSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'net.ltgt.apt': TestedVersions.apt,
                'net.ltgt.apt-eclipse': TestedVersions.apt,
                'net.ltgt.apt-idea': TestedVersions.apt,
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 967 bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/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)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top