Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 334 for Rm (0.09 sec)

  1. src/cmd/go/testdata/script/mod_fileproxy_vcs_missing_issue51589.txt

    cd $WORK/x
    go mod tidy
    
    # Use download cache as file:/// proxy.
    [GOOS:windows] env GOPROXY=file:///$WORK/gopath/pkg/mod/cache/download
    [!GOOS:windows] env GOPROXY=file://$WORK/gopath/pkg/mod/cache/download
    rm $WORK/gopath/pkg/mod/cache/download/golang.org/x/text/
    go mod tidy -e
    stderr '^go: rsc.io/sampler@v1.3.0 requires\n\tgolang.org/x/text@.*: reading file://.*/pkg/mod/cache/download/golang.org/x/text/.*'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 990 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cluster/images/etcd-version-monitor/Makefile

    CURRENT_DIR:=$(pwd)
    TEMP_DIR:=$(shell mktemp -d)
    
    build:
    	# Copy the necessary files for building the image to TEMP_DIR.
    	cp etcd-version-monitor.go Dockerfile $(TEMP_DIR)
    
    	# Compile etcd-version-monitor.
    	docker run --rm -it \
    	    -v $(shell pwd)/../../../:/go/src/k8s.io/kubernetes \
    	    -v $(TEMP_DIR):/build \
    	    -e GOARCH=$(ARCH) \
    	    golang:$(GOLANG_VERSION) \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 07:06:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. pkg/test/fakes/imageregistry/Makefile

    build: $(MD_PATH)/$(BIN_NAME)-amd64  $(MD_PATH)/$(BIN_NAME)-arm64
    
    build_and_push: build
    	docker buildx build --platform=linux/amd64,linux/arm64 $(MD_PATH) -t $(IMG):$(TAG) -t $(IMG):latest --push
    
    clean:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. cluster/gce/windows/README-GCE-Windows-kube-up.md

    Then, optionally clean/prepare your environment using these commands:
    
    ```bash
    # Remove files that interfere with get-kube / kube-up:
    rm -rf ./kubernetes/; rm -f kubernetes.tar.gz; rm -f ~/.kube/config
    
    # To run e2e test locally, make sure "Application Default Credentials" is set in any of the places:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    				return roff(rm, 2, 2)
    			} else {
    				return roff(rm, 2, 6)
    			}
    		} else {
    			return roff(rm, 2, num)
    		}
    	case REG_UXTX <= r && r < REG_SXTB:
    		return roff(rm, 3, num)
    	case REG_SXTB <= r && r < REG_SXTH:
    		return roff(rm, 4, num)
    	case REG_SXTH <= r && r < REG_SXTW:
    		return roff(rm, 5, num)
    	case REG_SXTW <= r && r < REG_SXTX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.usertools/rename_and_verify_wheels.sh

      # We don't need the original wheel if it was renamed
      new_wheel=$(grep --extended-regexp --only-matching '/tf/pkg/\S+.whl' check.txt)
      if [[ "$new_wheel" != "$wheel" ]]; then
        rm "$wheel"
        wheel="$new_wheel"
      fi
    
      TF_WHEEL="$wheel" bats /usertools/wheel_verification.bats --timing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_bad_domain.txt

    ! go get  ./usenonexistent
    stderr '^go: x/usenonexistent imports\n\tnonexistent.rsc.io: cannot find module providing package nonexistent.rsc.io$'
    
    
    # go mod vendor and go mod tidy should ignore appengine imports.
    rm usenonexistent/x.go
    go mod tidy
    go mod vendor
    
    -- go.mod --
    module x
    
    -- useappengine/x.go --
    package useappengine
    import _ "appengine" // package does not exist
    -- usenonexistent/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. docs/site-replication/run-replication-with-checksum-header.sh

    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    
    # Download AWS CLI
    echo -n "Download and install AWS CLI"
    rm -rf /usr/local/aws-cli || sudo rm -rf /usr/local/aws-cli
    curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
    unzip -qq awscliv2.zip
    ./aws/install || sudo ./aws/install
    echo "done"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top