Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Rm (0.03 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. pkg/controller/job/job_controller.go

    	var rm, left []*v1.Pod
    
    	if isIndexedJob(job) {
    		rm = make([]*v1.Pod, 0, rmAtLeast)
    		left = make([]*v1.Pod, 0, len(pods)-rmAtLeast)
    		rm, left = appendDuplicatedIndexPodsForRemoval(rm, left, pods, int(*job.Spec.Completions))
    	} else {
    		left = pods
    	}
    
    	if len(rm) < rmAtLeast {
    		sort.Sort(controller.ActivePods(left))
    		rm = append(rm, left[:rmAtLeast-len(rm)]...)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"pm": {"->*", 2, precPtrMem},
    	"pp": {"++", 1, precPostfix},
    	"ps": {"+", 1, precUnary},
    	"pt": {"->", 2, precPostfix},
    	"qu": {"?", 3, precCond},
    	"rM": {"%=", 2, precAssign},
    	"rS": {">>=", 2, precAssign},
    	"rc": {"reinterpret_cast", 2, precPostfix},
    	"rm": {"%", 2, precMul},
    	"rs": {">>", 2, precShift},
    	"sP": {"sizeof...", 1, precUnary},
    	"sZ": {"sizeof...", 1, precUnary},
    	"sc": {"static_cast", 2, precPostfix},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    			}
    			return "clang"
    		}
    	}
    	if kind == "CXX" {
    		return "g++"
    	}
    	return "gcc"
    }
    
    // rmworkdir deletes the work directory.
    func rmworkdir() {
    	if vflag > 1 {
    		errprintf("rm -rf %s\n", workdir)
    	}
    	xremoveall(workdir)
    }
    
    // Remove trailing spaces.
    func chomp(s string) string {
    	return strings.TrimRight(s, " \t\r\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

      GRADLE_USER_HOME = /home/jiraya/.gradle
    ----
    
    You can safely delete the artifact file as Gradle would automatically re-download it:
    
    ----
    rm -rf ~/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.1
    ----
    
    [[sec:verification-metadata-hygiene]]
    == Cleaning up the verification file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The configuration cache state is stored on disk in a directory named `.gradle/configuration-cache` in the root directory of the Gradle build in use.
    If you need to invalidate the cache, simply delete that directory:
    
    ----
    ❯ rm -rf .gradle/configuration-cache
    ----
    
    Configuration cache entries are checked periodically (at most every 24 hours) for whether they are still in use.
    They are deleted if they haven't been used for 7 days.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. 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)
  8. docs/bucket/notifications/README.md

    ```
    
    ## Publish MinIO events to NSQ
    
    Install an NSQ Daemon from [here](https://nsq.io/). Or use the following Docker
    command for starting an nsq daemon:
    
    ```
    podman run --rm -p 4150-4151:4150-4151 nsqio/nsq /nsqd
    ```
    
    ### Step 1: Add NSQ endpoint to MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top