Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for while_1 (0.12 sec)

  1. pkg/kubelet/kubelet.go

    	// Period for performing global cleanup tasks.
    	housekeepingPeriod = time.Second * 2
    
    	// Duration at which housekeeping failed to satisfy the invariant that
    	// housekeeping should be fast to avoid blocking pod config (while
    	// housekeeping is running no new pods are started or deleted).
    	housekeepingWarningDuration = time.Second * 1
    
    	// Period after which the runtime cache expires - set to slightly longer than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	if err := kl.containerRuntime.KillPod(ctx, pod, p, gracePeriodOverride); err != nil {
    		return err
    	}
    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    		klog.V(2).InfoS("Failed to update QoS cgroups while killing pod", "err", err)
    	}
    	return nil
    }
    
    // makePodDataDirs creates the dirs for the pod datas.
    func (kl *Kubelet) makePodDataDirs(pod *v1.Pod) error {
    	uid := pod.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    		return err == toObjectErr(errVolumeNotFound, bucket)
    	}
    	return false
    }
    
    // CopyObjectHandler - Copy Object
    // ----------
    // This implementation of the PUT operation adds an object to a bucket
    // while reading the object from another source.
    // Notice: The S3 client can send secret keys in headers for encryption related jobs,
    // the handler should ensure to remove these keys before sending them to the object layer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top