Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 868 for Unmount (0.09 sec)

  1. pkg/kubelet/cm/pod_container_manager_linux.go

    	// Scan through all the subsystem mounts
    	// and through each QoS cgroup directory for each subsystem mount
    	// If a pod cgroup exists in even a single subsystem mount
    	// we will attempt to delete it
    	for _, val := range m.subsystems.MountPoints {
    		for _, qosContainerName := range qosContainersList {
    			// get the subsystems QoS cgroup absolute name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemoryHolder.java

    /**
     * Memory holder.
     */
    public interface MemoryHolder {
    
        /**
         * Attempt to release system memory.
         *
         * @param memoryAmountBytes The amount of system memory to release.
         * @return The amount of released system memory
         * @throws IllegalArgumentException if memoryAmountBytes is negative
         */
        long attemptToRelease(long memoryAmountBytes) throws IllegalArgumentException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. common/scripts/run.sh

        -e TZ="${TIMEZONE:-$TZ}" \
        --mount "type=bind,source=${MOUNT_SOURCE},destination=/work" \
        --mount "type=volume,source=go,destination=/go" \
        --mount "type=volume,source=gocache,destination=/gocache" \
        --mount "type=volume,source=cache,destination=/home/.cache" \
        --mount "type=volume,source=crates,destination=/home/.cargo/registry" \
        --mount "type=volume,source=git-crates,destination=/home/.cargo/git" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 02:34:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pkg/kubelet/util/ioutils/ioutils.go

    // The underlying implementation is a *LimitedWriter.
    func LimitWriter(w io.Writer, n int64) io.Writer { return &LimitedWriter{w, n} }
    
    // A LimitedWriter writes to W but limits the amount of
    // data returned to just N bytes. Each call to Write
    // updates N to reflect the new amount remaining.
    // Write returns EOF when N <= 0 or when the underlying W returns EOF.
    type LimitedWriter struct {
    	W io.Writer // underlying writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. pkg/kubelet/winstats/perfcounter_nodestats.go

    // solution in hcsshim: https://github.com/microsoft/hcsshim/blob/master/internal/processorinfo/processor_count.go
    func ProcessorCount() int {
    	if amount := getActiveProcessorCount(allProcessorGroups); amount != 0 {
    		return int(amount)
    	}
    	return runtime.NumCPU()
    }
    
    func getActiveProcessorCount(groupNumber uint16) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota.go

    	// this directory
    	GetQuotaOnDir(m mount.Interface, path string) (common.QuotaID, error)
    
    	// Does the path provided support quotas, and if so, what types
    	SupportsQuotas(m mount.Interface, path string) (bool, error)
    	// Assign a quota (picked by the quota mechanism) to a path,
    	// and return it.
    	AssignQuota(m mount.Interface, path string, poduid types.UID, bytes *resource.Quantity) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    //
    // Args:
    //   double_multiplier: The double-precision floating-point multiplier.
    //
    // Returns:
    //   A quantized multiplier, represented as a pair of integers: the quantized
    //   multiplier and the shift amount. The shift amount is the number of bits
    //   that the quantized multiplier should be shifted to the right before being
    //   used.
    QuantizedMultiplier QuantizeMultiplier(double double_multiplier) {
      if (double_multiplier < 1e-6) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.21.md

    - Use force unmount for NFS volumes if regular mount fails after 1 minute timeout ([#96844](https://github.com/kubernetes/kubernetes/pull/96844), [@gnufied](https://github.com/gnufied)) [SIG Storage]
    - Use network.Interface.VirtualMachine.ID to get the binded VM
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemoryManager.java

         */
        void removeMemoryHolder(MemoryHolder holder);
    
        /**
         * Request an amount of free system memory.
         *
         * Attempt to free as much memory as possible to get {@literal memoryAmountBytes}
         * of free memory available on the system.
         *
         * @param memoryAmountBytes The requested amount of memory in bytes. If negative, {@literal 0} is assumed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. common/scripts/setup_env.sh

    container_kubeconfig=''
    
    # docker conditional host mount (needed for make docker push)
    if [[ -d "${HOME}/.docker" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly "
    fi
    
    # gcloud conditional host mount (needed for docker push with the gcloud auth configure-docker)
    if [[ -d "${HOME}/.config/gcloud" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top