Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for Resizing (1.87 sec)

  1. pkg/apis/core/types.go

    	// State set when resize controller has finished resizing the volume but further resizing of volume
    	// is needed on the node.
    	PersistentVolumeClaimNodeResizePending ClaimResourceStatus = "NodeResizePending"
    	// State set when kubelet starts resizing the volume.
    	PersistentVolumeClaimNodeResizeInProgress ClaimResourceStatus = "NodeResizeInProgress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    		fsVolume, _ := util.CheckVolumeModeFilesystem(volumeSpec)
    		// No Cloudprovider resize needed, lets mark resizing as done
    		// Rest of the volume expand controller code will assume PVC as *not* resized until pvc.Status.Size
    		// reflects user requested size.
    		if !volumePlugin.RequiresFSResize() || !fsVolume {
    			klog.V(4).Infof("Controller resizing done for PVC %s", util.GetPersistentVolumeClaimQualifiedName(pvc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	// SetPodAllocation checkpoints the resources allocated to a pod's containers.
    	SetPodAllocation(pod *v1.Pod) error
    
    	// SetPodResizeStatus checkpoints the last resizing decision for the pod.
    	SetPodResizeStatus(podUID types.UID, resize v1.PodResizeStatus) error
    }
    
    const syncPeriod = 10 * time.Second
    
    // NewManager returns a functional Manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashSet.java

       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashSet} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
       * @throws IllegalArgumentException if {@code expectedSize} is negative
       */
      public static <E extends @Nullable Object> CompactHashSet<E> createWithExpectedSize(
          int expectedSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
       * <p>This behavior can't be broadly guaranteed, but has been tested with OpenJDK 1.7 and 1.8.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashSet.java

       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashSet} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
       * @throws IllegalArgumentException if {@code expectedSize} is negative
       */
      public static <E extends @Nullable Object> CompactHashSet<E> createWithExpectedSize(
          int expectedSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// State set when resize controller has finished resizing the volume but further resizing of volume
    	// is needed on the node.
    	PersistentVolumeClaimNodeResizePending ClaimResourceStatus = "NodeResizePending"
    	// State set when kubelet starts resizing the volume.
    	PersistentVolumeClaimNodeResizeInProgress ClaimResourceStatus = "NodeResizeInProgress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// If resize results in net pod resource increase, set pod cgroup config before resizing containers.
    	// If resize results in net pod resource decrease, set pod cgroup config after resizing containers.
    	// If an error occurs at any point, abort. Let future syncpod iterations retry the unfinished stuff.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // 	- ControllerResizeInProgress:
      // 		State set when resize controller starts resizing the volume in control-plane.
      // 	- ControllerResizeFailed:
      // 		State set when resize has failed in resize controller with a terminal error.
      // 	- NodeResizePending:
      // 		State set when resize controller has finished resizing the volume but further resizing of
      // 		volume is needed on the node.
      // 	- NodeResizeInProgress:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top