Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Rm (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cluster/gce/upgrade.sh

      local -r tmpdir=/tmp
      local -r download_dir=$(mktemp --tmpdir=${tmpdir} -d coredns-migration.XXXXXXXXXX) || exit 1
    
      # clean up
      cleanup() {
        if [ -n "${download_dir:-}" ]; then
          rm -rf "${download_dir}"
        fi
      }
      trap cleanup RETURN
    
      # Get the new installed CoreDNS version
      echo "== Waiting for CoreDNS to update =="
      local -r endtime=$(date -ud "3 minute" +%s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    		informerFactory.Start(stopCh)
    		informerFactory.WaitForCacheSync(stopCh)
    	}
    }
    
    // NewPersistentVolumeRecyclerPodTemplate creates a template for a recycler
    // pod.  By default, a recycler pod simply runs "rm -rf" on a volume and tests
    // for emptiness.  Most attributes of the template will be correct for most
    // plugin implementations.  The following attributes can be overridden per
    // plugin via configuration:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    		// Open a log file to write log to. We open in append
    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    		// This means, of course, that users need to rm the old log
    		// to get fresh data.
    		// TODO: all.bash runs compilers in parallel. Need to synchronize logging somehow?
    		w, err := os.OpenFile(filepath.Join(os.Getenv("GOROOT"), "src", "rulelog"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    			}
    			if oi.DeleteMarker && (validReplStatus || replicate) {
    				dsc.Set(newReplicateTargetDecision(tgtArn, replicate, sync))
    				continue
    			}
    			// can be the case that other cluster is down and duplicate `mc rm --vid`
    			// is issued - this still needs to be replicated back to the other target
    			if !oi.VersionPurgeStatus.Empty() {
    				replicate = oi.VersionPurgeStatus == Pending || oi.VersionPurgeStatus == Failed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a bug where pv recycler failed to scrub volume with too many files in the directory due to hitting ARG_MAX limit with rm command (#117189). ([#117283](https://github.com/kubernetes/kubernetes/pull/117283), [@defo89](https://github.com/defo89)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top