Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 160 for Rm (0.02 sec)

  1. hack/local-up-cluster.sh

          # we run the script as root or not). Let's remove it, that is something we
          # can always do: either we have write permissions as a user in CERT_DIR or
          # we run the rm with sudo.
          ${CONTROLPLANE_SUDO} rm -f "${CERT_DIR}"/kubelet-rotated.kubeconfig
    
          # Create Certs
          generate_certs
        fi
    
        cloud_config_arg="--cloud-provider=${CLOUD_PROVIDER} --cloud-config=${CLOUD_CONFIG}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/script/cmds.go

    				return nil, err
    			}
    			replaced := r.Replace(string(data))
    
    			return nil, os.WriteFile(file, []byte(replaced), 0666)
    		})
    }
    
    // Rm removes a file or directory.
    //
    // If a directory, Rm also recursively removes that directory's
    // contents.
    func Rm() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "remove a file or directory",
    			Args:    "path...",
    			Detail: []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    import model.CIBuildModel
    import model.StageName
    
    fun checkCleanDirUnixLike(dir: String, exitOnFailure: Boolean = true) = """
        REPO=$dir
        if [ -e ${'$'}REPO ] ; then
            tree ${'$'}REPO
            rm -rf ${'$'}REPO
            echo "${'$'}REPO was polluted during the build"
            ${if (exitOnFailure) "exit 1" else ""}
        else
            echo "${'$'}REPO does not exist"
        fi
    
    """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. release/downloadIstioCtl.sh

    fi
    
    printf "%s download complete!\n" "${filename}"
    
    # setup istioctl
    mkdir -p "$HOME/.istioctl/bin"
    mv "${tmp}/istioctl" "$HOME/.istioctl/bin/istioctl"
    chmod +x "$HOME/.istioctl/bin/istioctl"
    rm -r "${tmp}"
    
    # Print message
    printf "\n"
    printf "Add the istioctl to your path with:"
    printf "\n"
    printf "  export PATH=\$HOME/.istioctl/bin:\$PATH \n"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_diff.txt

    ! stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    stderr 'go.mod file not found'
    
    # Existing go.mod and missing go.sum should display diff.
    go mod init example.com
    go mod tidy
    rm go.sum
    exists go.mod
    ! exists go.sum
    ! go mod tidy -diff
    ! exists go.sum
    ! stdout 'diff current/go.mod tidy/go.mod'
    stdout 'diff current/go.sum tidy/go.sum'
    
    # Everything is tidy, should return zero exit code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    		chmod +x minio.${OLD_VERSION}
    	fi
    
    	if [ -z "$_MINIO_LDAP_TEST_SERVER" ]; then
    		export _MINIO_LDAP_TEST_SERVER=localhost:1389
    		echo "Using default LDAP endpoint: $_MINIO_LDAP_TEST_SERVER"
    	fi
    
    	rm -rf /tmp/data
    }
    
    create_iam_content_in_old_minio() {
    	echo "Creating IAM content in old minio instance."
    
    	MINIO_CI_CD=1 ./minio.${OLD_VERSION} server /tmp/data/{1...4} &
    	sleep 5
    
    	set -x
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    [exec:patch] cp go.mod.orig go.mod
    [exec:patch] rm go.sum
    [exec:patch] go mod tidy -compat=1.17 -diff
    [exec:patch] ! stdout .
    
    go list -deps -test -f $MODFMT all
    cmp stdout out-117.txt
    
    go mod edit -go=1.16
    ! go list -deps -test -f $MODFMT all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. hack/lib/util.sh

        # shellcheck disable=SC2064
        trap "${new_cmd}" "${trap_add_name}"
      done
    }
    
    # Opposite of kube::util::ensure-temp-dir()
    kube::util::cleanup-temp-dir() {
      rm -rf "${KUBE_TEMP}"
    }
    
    # Create a temp dir that'll be deleted at the end of this bash session.
    #
    # Vars set:
    #   KUBE_TEMP
    kube::util::ensure-temp-dir() {
      if [[ -z ${KUBE_TEMP-} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. docs/site-replication/run-sse-kms-object-replication.sh

    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	pkill -9 kes || sudo pkill -9 kes
    	rm -rf ${PWD}/keys
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. hack/verify-shellcheck.sh

      shellcheck "${SHELLCHECK_OPTIONS[@]}" "${scripts_to_check[@]}" >&2 || res=$?
    else
      echo "Using shellcheck ${SHELLCHECK_VERSION} docker image."
      "${DOCKER}" run \
        --rm -v "${KUBE_ROOT}:${KUBE_ROOT}" -w "${KUBE_ROOT}" \
        "${SHELLCHECK_IMAGE}" \
      shellcheck "${SHELLCHECK_OPTIONS[@]}" "${scripts_to_check[@]}" >&2 || res=$?
    fi
    
    # print a message based on the result
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top