Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 460 for Rm (0.12 sec)

  1. security/pkg/pki/testdata/multilevelpki/ecc-certs.sh

    cat ecc-root-cert.pem > ecc-int-cert-chain.pem
    cat ecc-int-cert.pem >> ecc-int-cert-chain.pem
    cp ecc-int-cert-chain.pem ecc-int2-cert-chain.pem
    cat ecc-int2-cert.pem >> ecc-int2-cert-chain.pem
    
    rm ./*csr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 16 19:54:33 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. hack/make-rules/clean.sh

      "doc_tmp"
      "test/e2e/generated/bindata.go"
    )
    
    for item in "${CLEAN_PATTERNS[@]}"; do
      # Shellcheck wants the ":?" because of paranoia about 'rm -rf /'. It will
      # cause an error if unset, which is already true because of "nounset", but
      # belts AND suspenders is fine for this.
      rm -rf "${KUBE_ROOT:?}/${item:?}"
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 08 17:20:44 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. hack/verify-vendor.sh

      # make go module dirs writeable
      chmod -R +w "${_tmpdir}"
      if [ "${KEEP_TMP}" == "true" ]; then
        echo "Leaving ${_tmpdir} for you to examine or copy. Please delete it manually when finished. (rm -rf ${_tmpdir})"
      else
        echo "Removing ${_tmpdir}"
        rm -rf "${_tmpdir}"
      fi
    }
    kube::util::trap_add cleanup EXIT
    
    # Copy the contents of the kube directory into the nice clean place (which is NOT shaped like a GOPATH)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/Dockerfile

    RUN \
    	wget https://github.com/ninja-build/ninja/archive/refs/tags/v$NinjaV.tar.gz && \
    	echo "$NinjaH v$NinjaV.tar.gz" >sha && sha256sum -c sha && \
    	tar -xzf v$NinjaV.tar.gz && \
    	rm v$NinjaV.tar.gz && \
    	cd ninja-$NinjaV && \
    	CC=clang-$ClangV CXX=clang++-$ClangV ./configure.py --bootstrap && \
    	mv ninja /usr/local/bin/
    
    # Download, validate, unpack, and install Go.
    ARG GOARCH
    ENV GoV=1.16.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. security/pkg/pki/testdata/multilevelpki/certs.sh

    
    
    cat root-cert.pem > int-cert-chain.pem
    cat int-cert.pem >> int-cert-chain.pem
    cp int-cert-chain.pem int2-cert-chain.pem
    cat int2-cert.pem >> int2-cert-chain.pem
    
    rm ./*csr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. deploy_website.sh

    # https://squidfunk.github.io/mkdocs-material/
    # It requires python3 to run.
    
    set -ex
    
    REPO="******@****.***:square/okhttp.git"
    DIR=temp-clone
    
    # Delete any existing temporary website clone
    rm -rf $DIR
    
    # Clone the current repo into temp folder
    git clone $REPO $DIR
    # Replace `git clone` with these lines to hack on the website locally
    # cp -a . "../okhttp-website"
    # mv "../okhttp-website" "$DIR"
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

                            const gtl::ArraySlice<T> data) {
        Var* var = CreateVariable<T>(name, shape, data);
        ResourceMgr* rm = device_->resource_manager();
        TF_ASSERT_OK(rm->Create(rm->default_container(), name, var));
    
        ResourceHandle handle;
        handle.set_device(device_->name());
        handle.set_container(rm->default_container());
        handle.set_name(name);
        TypeIndex type_index = TypeIndex::Make<Var>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure.sh

        log-wrap "InstallCredentialProvider" install-auth-provider-gcp
      fi
      # Install crictl on each node.
      log-wrap "InstallCrictl" install-crictl
    
      # Clean up.
      rm -rf "${KUBE_HOME}/kubernetes"
      rm -f "${KUBE_HOME}/${server_binary_tar}"
      rm -f "${KUBE_HOME}/${server_binary_tar}.sha512"
    }
    
    
    # This function detects the platform/arch of the machine where the script runs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gccgo_m.txt

    # golang.org/issue/34358
    
    env GO111MODULE=off
    
    [short] skip
    [cross] skip # gccgo can't necessarily cross-compile
    
    cd m
    go build
    exists m$GOEXE
    rm m$GOEXE
    [exec:gccgo] go build -compiler=gccgo
    [exec:gccgo] exists m$GOEXE
    
    -- m/go.mod --
    module m
    -- m/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 368 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sumdb.txt

    stderr 'SECURITY ERROR\n'
    
    rm go.sum
    
    # switching to truthful sumdb detects timeline inconsistency
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    ! go get rsc.io/fortune
    stderr 'SECURITY ERROR\ngo.sum database server misbehavior detected!'
    stderr 'proof of misbehavior:'
    
    # removing the cached wrong tree head and cached tiles clears the bad data
    rm $GOPATH/pkg/sumdb/$dbname/latest
    go clean -modcache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top