Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for Rm (0.13 sec)

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

    go get rsc.io/fortune@v1.0.0
    go install -mod=readonly $GOPATH/pkg/mod/rsc.io/fortune@v1.0.0
    exists $GOPATH/bin/fortune$GOEXE
    cd ..
    rm tmp
    rm $GOPATH/bin
    env GO111MODULE=auto
    
    # 'go install pkg@version' reports errors for meta packages, std packages,
    # and directories.
    ! go install std@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. docs/bucket/replication/delete-replication.sh

    		echo "dc1 server logs ========="
    		cat /tmp/dc1.log
    		echo "dc2 server logs ========="
    		cat /tmp/dc2.log
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	set +e
    	pkill minio
    	pkill mc
    	rm -rf /tmp/xl/
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/npx

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npx \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/cover.bash

    cat >main_test.go <<-EOF
    	//go:build ignore
    
    	package main
    
    	import "testing"
    
    	func TestCoverage(t *testing.T) { main() }
    EOF
    
    go test -run='^TestCoverage$' -coverprofile=cover.out "$@" *.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
  5. docs/distributed/distributed-from-config-file.sh

    #!/usr/bin/env bash
    
    set -e
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio || true
    	pkill -9 minio || true
    	rm -rf /tmp/xl/ || true
    	rm -rf /tmp/minio.configfile.{1,2,3,4} || true
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    export MINIO_CI_CD=1
    
    if [ ! -f ./mc ]; then
    	os="$(uname -s)"
    	arch="$(uname -m)"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/make.bash

    # Throw ours, built with the bootstrap toolchain, away after bootstrap.
    ./cmd/dist/dist bootstrap -a $vflag $GO_DISTFLAGS "$@"
    rm -f ./cmd/dist/dist
    
    # DO NOT ADD ANY NEW CODE HERE.
    # The bootstrap+rm above are the final step of make.bash.
    # If something must be added, add it to cmd/dist's cmdbootstrap,
    # to avoid needing three copies in three different shell languages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/doc.go

    	CCMNW AL, R1, $11, $8      <=>    ccmn w1, #0xb, #0x8, al
    
    (7) CCMN, CCMNW, CCMP, CCMPW <cond>, <Rn>, <Rm>, $<nzcv>
    
    Examples:
    
    	CCMN VS, R13, R22, $10     <=>    ccmn x13, x22, #0xa, vs
    	CCMPW HS, R19, R14, $11    <=>    ccmp w19, w14, #0xb, cs
    
    (9) CSEL, CSELW, CSNEG, CSNEGW, CSINC, CSINCW <cond>, <Rn>, <Rm>, <Rd> ;
    FCSELD, FCSELS <cond>, <Fn>, <Fm>, <Fd>
    
    Examples:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

          with:
            config-file: ./.github/codeql/codeql-config.yml
    
        - name: Cleanup Gradle Cache
          # Cleans up the Gradle caches before being cached
          run: |
            rm -f ~/.gradle/caches/modules-2/modules-2.lock
            rm -f ~/.gradle/caches/modules-2/gc.properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/fixlinks_aarch64.sh

    #
    # Re-direct all links in $1 that are relative to be canonical
    
    BASE="$1"
    find "${BASE}" -type l | \
      while read l ; do
        if [[ "$(readlink "$l")" == \.\./* ]]; then
          CANONICAL="$(readlink "$l")";
          rm "$l";
          ln -s "${CANONICAL}" "$l"
        fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 969 bytes
    - Viewed (0)
  10. build/pause/Makefile

    bin/${BIN.linux}-$(OS)-$(ARCH): $(SRCS)
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    			$(TRIPLE)-gcc $(CFLAGS) -o $@ $^ && \
    			$(TRIPLE)-strip $(foreach binary, $@, ${binary}${EXTENSION})"
    
    bin/wincat-windows-${ARCH}: windows/wincat/wincat.go
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		--tmpfs /.cache \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top