Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 259 for Rm (0.26 sec)

  1. cluster/gce/gci/flexvolume_node_setup.sh

      echo
    
      umount_silent ${VOLUME_PLUGIN_DIR}
      rm -rf ${VOLUME_PLUGIN_DIR}
      umount_silent ${MOUNTER_PATH}/var/lib/kubelet
      umount_silent ${MOUNTER_PATH}
      rm -rf ${MOUNTER_PATH}
    
      if [[ -n ${IMAGE_URL:-} ]]; then
        docker rmi -f "${IMAGE_URL}" &> /dev/null || /bin/true
      fi
      if [[ -n ${MOUNTER_DEFAULT_NAME:-} ]]; then
        docker rm -f "${MOUNTER_DEFAULT_NAME}" &> /dev/null || /bin/true
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. hack/update-generated-api-compatibility-data.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # Nuke old files so we don't accidentally carry stuff forward.
    rm -f staging/src/k8s.io/api/testdata/HEAD/*.{yaml,json,pb}
    rm -f staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/*.{yaml,json,pb}
    
    # UPDATE_COMPATIBILITY_FIXTURE_DATA=true regenerates fixture data if needed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tests/testdata/certs/generate.sh

    openssl ca -gencrl -out "${WD}/dummy.crl" -config "${WD}/crl.conf"
    
    rm "${WD}/server.conf" "${WD}/client.conf" "${WD}/dns-client.conf" "${WD}/crl.conf"
    rm "${WD}/server.csr" "${WD}/client.csr" "${WD}/dns-client.csr"
    rm "${WD}/mountedcerts-server.conf" "${WD}/mountedcerts-server.csr"
    rm "${WD}/mountedcerts-client.conf" "${WD}/mountedcerts-client.csr"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_flags.txt

    go test -coverprofile=cover.out ./x
    stdout '\s+coverage:\s+'
    exists ./cover.out
    rm ./cover.out
    
    # -*profile and -trace flags should force output to the current working directory
    # or -outputdir, not the directory containing the test.
    
    go test -memprofile=mem.out ./x
    exists ./mem.out
    rm ./mem.out
    
    go test -trace=trace.out ./x
    exists ./trace.out
    rm ./trace.out
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/webhook/gencerts.sh

    	data=$(cat ${file}.pem)
    	echo "" >> $outfile
    	echo "var $file = []byte(\`$data\`)" >> $outfile
    done
    
    # Clean up after we're done.
    rm ./*.pem
    rm ./*.csr
    rm ./*.srl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 15:57:40 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. .github/workflows/go-fips.yml

              load: true
              tags: minio/fips-test:latest
    
          # This should fail if grep returns non-zero exit
          - name: Test binary
            run: |
              docker run --rm minio/fips-test:latest ./minio --version
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/imagepolicy/gencerts.sh

    	data=$(cat ${file}.pem)
    	echo "" >> $outfile
    	echo "var $file = []byte(\`$data\`)" >> $outfile
    done
    
    # Clean up after we're done.
    rm ./*.pem
    rm ./*.csr
    rm ./*.srl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 14:59:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
Back to top