Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 259 for Rm (0.05 sec)

  1. src/cmd/compile/profile.sh

    	h=$(echo $seed $p | md5sum | cut -d ' ' -f 1)
    	echo $p $h
    	go build -o /dev/null -gcflags=-cpuprofile=$PWD/prof.$h $p
    done
    
    go tool pprof -proto prof.* > $(go env GOROOT)/src/cmd/compile/default.pgo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 17:31:10 UTC 2023
    - 588 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_graph.txt

    env GO111MODULE=on
    
    go mod graph
    stdout '^m rsc.io/quote@v1.5.2$'
    stdout '^rsc.io/quote@v1.5.2 rsc.io/sampler@v1.3.0$'
    ! stdout '^m rsc.io/sampler@v1.3.0$'
    ! stderr 'get '$GOPROXY
    
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote
    go mod graph -x
    stderr 'get '$GOPROXY
    
    -- go.mod --
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 317 bytes
    - Viewed (0)
  3. 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)
  4. pkg/test/echo/docker/Dockerfile.app_sidecar

    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istio-sidecar.deb  /tmp/istio-sidecar.deb
    RUN dpkg -i /tmp/istio-sidecar.deb && rm /tmp/istio-sidecar.deb
    
    # 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 860 bytes
    - Viewed (0)
  5. hack/grab-profiles.sh

          binary=${scheduler_binary}
          ;;
        heapster)
          rm heapster
          wget https://github.com/kubernetes/heapster/releases/download/${HEAPSTER_VERSION}/heapster
          kube::util::trap_add 'rm -f heapster' EXIT
          kube::util::trap_add 'rm -f heapster' SIGTERM
          binary=heapster
          path=${HEAPSTER_PPROF_PATH}
          ;;
        kubelet)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K 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. src/cmd/vendor/golang.org/x/arch/x86/x86asm/Makefile

    tables.go: ../x86map/map.go ../x86.csv 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 150 bytes
    - Viewed (0)
  9. cluster/gce/gci/mounter/stage-upload.sh

    # Setup a staging directory
    STAGING_DIR=$(mktemp --tmpdir=${TMPDIR} -d gci-mounter-staging.XXXXXXXXXX)
    ACI_DIR=${STAGING_DIR}/gci-mounter
    CWD=${PWD}
    
    # Cleanup the temporary directories
    cleanup() {
        rm -rf "${DOWNLOAD_DIR}"
        rm -rf "${STAGING_DIR}"
        cd "${CWD}"
    }
    
    # Delete temporary directories on exit
    trap cleanup EXIT
    
    mkdir "${ACI_DIR}"
    
    # Convert docker image to aci and stage it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  10. .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)
Back to top