Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 337 for Rm (0.02 sec)

  1. buildscripts/minio-upgrade.sh

    	MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \
    		-f "buildscripts/upgrade-tests/compose.yml" \
    		rm || true
    
    	for volume in $(docker volume ls -q | grep upgrade); do
    		docker volume rm ${volume} || true
    	done
    
    	docker volume prune -f
    	docker system prune -f || true
    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    verify_checksum_after_heal() {
    	local sum1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare.go

    func getObjPathMap(rs string) map[string]string {
    	rm := make(map[string]string)
    	if len(rs) == 0 {
    		return rm
    	}
    	for _, r := range strings.Split(rs, ",") {
    		split := strings.Split(r, ":")
    		if len(split) < 4 {
    			rm[r] = ""
    			continue
    		}
    		kind, namespace, name, path := split[0], split[1], split[2], split[3]
    		obj := fmt.Sprintf("%v:%v:%v", kind, namespace, name)
    		rm[obj] = path
    	}
    	return rm
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_cd_gopath_different.txt

    exec $WORK/tmp/a.exe
    stderr 'linkXworked'
    rm $WORK/tmp/a.exe
    
    [!GOOS:windows] stop 'rest of the tests only apply to Windows'
    
    # Replace '\' with '/' in GOPATH
    exec ./run_go$GOEXE $GOPATH/src/my.pkg/main $GOPATH REPLACE_SLASH build -o $WORK/tmp/a.exe -ldflags -X=my.pkg.Text=linkXworked
    exec $WORK/tmp/a.exe
    stderr 'linkXworked'
    rm $WORK/tmp/a.exe
    
    # Apply identity function to GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. pkg/testcerts/generate-certs.sh

    	{
    		echo ""
    		echo "// ${file} is a test cert for dynamic admission controller."
    		echo "var $file = []byte(\`$data\`)"
    	} >> $outfile
    done
    
    # Clean up after we're done.
    rm ./*.pem
    rm ./*.csr
    rm ./*.srl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. docs/bucket/versioning/versioning-tests.sh

    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    ./mc version enable sitea/delissue --insecure
    
    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    count=$(./mc ls --versions sitea/delissue --insecure | wc -l)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    	$(BIN_INSTALL) migrate-if-needed.sh $(TEMP_DIR)
    	$(BIN_INSTALL) migrate-if-needed.bat $(TEMP_DIR)
    	install $(DOCKERFILE) $(TEMP_DIR)
    
    	# Compile migrate
    	migrate_tmp_dir=$(shell mktemp -d); \
    	docker run --rm --interactive -v $(shell pwd)/../../../:/go/src/k8s.io/kubernetes$(DOCKER_VOL_OPTS) -v $${migrate_tmp_dir}:/build$(DOCKER_VOL_OPTS) -e GOOS=$(OS) -e GOARCH=$(ARCH) golang:$(GOLANG_VERSION) \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. bin/update_crds.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -e
    
    fail() {
      echo "$@" 1>&2
      exit 1
    }
    
    API_TMP="$(mktemp -d -u)"
    
    trap 'rm -rf "${API_TMP}"' EXIT
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    REPO="github.com/istio/api"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_init_toolchain.txt

    # work init writes the current Go version to the go line
    go work init
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work init with older modules should leave go 1.50 in the go.work.
    rm go.work
    go work init ./m1_22_0
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work init with newer modules should bump go,
    # including updating to a newer toolchain as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/certs.go

    func fetchCertificateExpirationInfo(rm *renewal.Manager) (*outputapiv1alpha3.CertificateExpirationInfo, error) {
    	info := &outputapiv1alpha3.CertificateExpirationInfo{}
    
    	for _, handler := range rm.Certificates() {
    		if ok, _ := rm.CertificateExists(handler.Name); ok {
    			e, err := rm.GetCertificateExpirationInfo(handler.Name)
    			if err != nil {
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. ci/official/utilities/setup_docker.sh

    # The container is not cleaned up automatically! Remove it with:
    # docker rm tf
    if ! docker container inspect tf >/dev/null 2>&1 ; then
      # Pass all existing TFCI_ variables into the Docker container
      env_file=$(mktemp)
      env | grep ^TFCI_ > "$env_file"
      docker run $TFCI_DOCKER_ARGS --name tf -w "$TFCI_GIT_DIR" -itd --rm \
          -v "$TFCI_GIT_DIR:$TFCI_GIT_DIR" \
          --env-file "$env_file" \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top