Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for Rm (0.03 sec)

  1. .github/workflows/deploy-docs.yml

          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Clean site
            run: |
              rm -rf ./site
              mkdir ./site
          - uses: actions/download-artifact@v4
            with:
              path: ./site/
              pattern: docs-site-*
              merge-multiple: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. hack/update-vendor-licenses.sh

      grep -E 'third_party|forked' | \
      xargs tar -czf - | tar -C "${TMP_LICENSES_DIR}" -xzf -)
    
    # Leave things like OWNERS alone.
    rm -f "${LICENSES_DIR}/LICENSE"
    rm -rf "${LICENSES_DIR}/vendor"
    rm -rf "${LICENSES_DIR}/third_party"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. docs/distributed/decom-compressed-sse-s3.sh

    #!/bin/bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    pkill minio
    rm -rf /tmp/xl
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    export CI=true
    export MINIO_COMPRESSION_ENABLE="on"
    export MINIO_COMPRESSION_EXTENSIONS=".go"
    export MINIO_COMPRESSION_MIME_TYPES="application/*"
    export MINIO_COMPRESSION_ALLOW_ENCRYPTION="on"
    export MINIO_KMS_AUTO_ENCRYPTION=on
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8

    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    COPY istio-sidecar.rpm  /tmp/istio-sidecar.rpm
    RUN rpm -vi /tmp/istio-sidecar.rpm && rm /tmp/istio-sidecar.rpm
    
    # Sudoers used to allow tcpdump and other debug utilities.
    COPY sudoers /etc/sudoers
    
    # Install the Echo application
    COPY echo-start.sh /usr/local/bin/echo-start.sh
    ARG TARGETARCH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 839 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_git_missing_tree.txt

    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    # Assume the tree object from initial commit is not available (e.g. partial clone)
    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    
    # Build the module, which should succeed
    go build -v -buildvcs=true -o test
    go version -m test
    stdout '^\tbuild\tvcs.revision=fe3c8204d2332a731166269932dd23760c1b576a$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. samples/bookinfo/src/ratings/Dockerfile

    #   limitations under the License.
    
    FROM node:21.6-slim
    
    #hadolint ignore=DL3008
    RUN apt-get update \
        && apt-get install curl --no-install-recommends -y \
        && rm -rf /var/lib/apt/lists/*
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    COPY package.json /opt/microservices/
    COPY ratings.js /opt/microservices/
    WORKDIR /opt/microservices
    RUN npm install
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1009 bytes
    - Viewed (0)
  7. docker/Dockerfile.base

      knot-dnsutils \
      netcat-openbsd \
      tcpdump \
      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
      && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old \
      && update-alternatives --set iptables /usr/sbin/iptables-legacy \
      && update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/hack/build-image.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../../../../..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # Register function to be called on EXIT to remove generated binary.
    function cleanup {
      rm "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver/artifacts/simple-image/apiextensions-apiserver"
    }
    trap cleanup EXIT
    
    pushd "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        iputils-ping \
        knot-dnsutils \
        netcat-openbsd \
        tcpdump \
        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
        && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old
    
    RUN if [ -f /usr/sbin/iptables-legacy ]; then \
        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. docs/distributed/decom.sh

    #!/bin/bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    pkill minio
    rm -rf /tmp/xl
    rm -rf /tmp/xltier
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    export CI=true
    export MINIO_SCANNER_SPEED=fastest
    
    (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} 2>&1 >/tmp/decom.log) &
    pid=$!
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top