Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for Rm (0.03 sec)

  1. src/cmd/go/internal/work/shell.go

    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "mkdir -p %s", dir)
    			if cfg.BuildN {
    				return nil
    			}
    		}
    
    		return os.MkdirAll(dir, 0777)
    	})
    }
    
    // RemoveAll is like 'rm -rf'. It attempts to remove all paths even if there's
    // an error, and returns the first error.
    func (sh *Shell) RemoveAll(paths ...string) error {
    	if cfg.BuildN || cfg.BuildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv13-AES128-SHA256

    00000110  86 ce 8b 64 f6 dc e1 b7  0d 16 96 d1 ec 4b 93 d5  |...d.........K..|
    00000120  6c 10 0d b7 d8 a2 45 b2  f0 e0 aa ab ab 11 8d d0  |l.....E.........|
    00000130  2c fc 20 35 99 1b d6 3b  72 6d 88 03 80 5c 59 d4  |,. 5...;rm...\Y.|
    00000140  04 18 ee 7a ed fe fb 52  c1 3c 93 95 e2 00 23 0d  |...z...R.<....#.|
    00000150  cc c1 4e 0a fb 55 33 93  9f c8 31 33 29 f5 12 3e  |..N..U3...13)..>|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            }.getOrMapFailure { failure ->
                // This can only happen if someone ignored configuration cache problems and still stored the entry.
                // We're invalidating the cache to save the user a manual "rm -rf .gradle/configuration-cache", as there is no way out.
                logger.info("The build logic input of type ${obtainedValue.valueSourceType} cannot be checked because it failed when storing the entry", failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    				}
    				certMaps[kubeConfig] = *newCerts[0].SerialNumber
    			}
    
    			// Renew everything
    			rm, err := renewal.NewManager(&cfg.ClusterConfiguration, tmpDir)
    			if err != nil {
    				t.Fatalf("Failed to create the certificate renewal manager: %v", err)
    			}
    
    			err = renewCertsByComponent(cfg, test.component, rm)
    			if test.shouldErrorOnRenew {
    				if err == nil {
    					t.Fatal("expected renewal error, got nothing")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    1. Clean the cache directory to avoid any hits from previous builds (`rm -rf $GRADLE_USER_HOME/caches/build-cache-*`)
    2. Run the build (e.g. `./gradlew --build-cache clean assemble`), so that all the results from cacheable tasks get stored in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      KUBEPROXY_ARGS="${flags}"
    }
    
    # $1: if 'true', we're rendering config for a master, else a node
    function build-kubelet-config {
      local master="$1"
      local os="$2"
      local file="$3"
    
      rm -f "${file}"
      {
        print-common-kubelet-config
        if [[ "${master}" == "true" ]]; then
          print-master-kubelet-config
        else
          print-common-node-kubelet-config
          if [[ "${os}" == "linux" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. helm-releases/minio-5.2.0.tgz

    $MINIO_ACCESSKEY_SECRETKEY_TMP|wc -l) -ne 2 ]];then echo "credentials file is invalid" rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP return 1 fi USER=$(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP) # Create the user if it does not exist if ! checkUserExists ; then echo "Creating user '$USER'" cat $MINIO_ACCESSKEY_SECRETKEY_TMP | ${MC} admin user add myminio else echo "User '$USER' already exists." fi #clean up credentials files. rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP # set policy for user if [ ! -z $POLICY -a $POLICY...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. cmd/sts-handlers.go

    	// STS Router
    	stsRouter := router.NewRoute().PathPrefix(SlashSeparator).Subrouter()
    
    	// Assume roles with no JWT, handles AssumeRole.
    	stsRouter.Methods(http.MethodPost).MatcherFunc(func(r *http.Request, rm *mux.RouteMatch) bool {
    		ctypeOk := wildcard.MatchSimple("application/x-www-form-urlencoded*", r.Header.Get(xhttp.ContentType))
    		authOk := wildcard.MatchSimple(signV4Algorithm+"*", r.Header.Get(xhttp.Authorization))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

    function start-etcd-servers {
      echo "Start etcd pods"
      if [[ -d /etc/etcd ]]; then
        rm -rf /etc/etcd
      fi
      if [[ -e /etc/default/etcd ]]; then
        rm -f /etc/default/etcd
      fi
      if [[ -e /etc/systemd/system/etcd.service ]]; then
        rm -f /etc/systemd/system/etcd.service
      fi
      if [[ -e /etc/init.d/etcd ]]; then
        rm -f /etc/init.d/etcd
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

        # underscores.  It'll transform darwin/amd64 -> darwin_amd64.
        local platform_src="/${platform//\//_}"
        if [[ "${platform}" == "${host_platform}" ]]; then
          platform_src=""
          rm -f "${THIS_PLATFORM_BIN}"
          mkdir -p "$(dirname "${THIS_PLATFORM_BIN}")"
          ln -s "${KUBE_OUTPUT_BIN}/${platform}" "${THIS_PLATFORM_BIN}"
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top