Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wall (0.08 sec)

  1. pkg/kubelet/kubelet.go

    		}
    	}
    
    	return false, nil
    }
    
    // SyncTerminatingPod is expected to terminate all running containers in a pod. Once this method
    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    // pod state that is tied to the lifetime of running containers. The next method invoked will be
    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    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

    	for _, pod := range allPods {
    		allPodsByUID[pod.UID] = pod
    	}
    
    	// Identify the set of pods that have workers, which should be all pods
    	// from config that are not terminated, as well as any terminating pods
    	// that have already been removed from config. Pods that are terminating
    	// will be added to possiblyRunningPods, to prevent overly aggressive
    	// cleanup of pod cgroups.
    	stringIfTrue := func(t bool) string {
    		if t {
    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

    			// whether you also have the s3:ListBucket
    			// permission.
    			// * If you have the s3:ListBucket permission
    			//   on the bucket, Amazon S3 will return an
    			//   HTTP status code 404 ("no such key")
    			//   error.
    			// * if you don’t have the s3:ListBucket
    			//   permission, Amazon S3 will return an HTTP
    			//   status code 403 ("access denied") error.`
    			if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    	// Reasonable size range of all container images. 90%ile of images on dockerhub drops into this range.
    	minImgSize int64 = 23 * 1024 * 1024
    	maxImgSize int64 = 1000 * 1024 * 1024
    )
    
    // fakeImageGCManager is a fake image gc manager for testing. It will return image
    // list from fake runtime directly instead of caching it.
    type fakeImageGCManager struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top