Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for Resizing (0.16 sec)

  1. guava/src/com/google/common/primitives/ImmutableIntArray.java

        return (array.length == 0) ? EMPTY : new ImmutableIntArray(array);
      }
    
      /**
       * Returns a new, empty builder for {@link ImmutableIntArray} instances, sized to hold up to
       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/io/ByteStreams.java

        return newDataOutput(new ByteArrayOutputStream());
      }
    
      /**
       * Returns a new {@link ByteArrayDataOutput} instance sized to hold {@code size} bytes before
       * resizing.
       *
       * @throws IllegalArgumentException if {@code size} is negative
       */
      public static ByteArrayDataOutput newDataOutput(int size) {
        // When called at high frequency, boxing size generates too much garbage,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/io/ByteStreams.java

        return newDataOutput(new ByteArrayOutputStream());
      }
    
      /**
       * Returns a new {@link ByteArrayDataOutput} instance sized to hold {@code size} bytes before
       * resizing.
       *
       * @throws IllegalArgumentException if {@code size} is negative
       */
      public static ByteArrayDataOutput newDataOutput(int size) {
        // When called at high frequency, boxing size generates too much garbage,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/strategy.go

    	newPod := obj.(*api.Pod)
    	oldPod := old.(*api.Pod)
    	newPod.Status = oldPod.Status
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// With support for in-place pod resizing, container resources are now mutable.
    		// If container resources are updated with new resource requests values, a pod resize is
    		// desired. The status of this request is reflected by setting Resize field to "Proposed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. 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)
  9. android/guava/src/com/google/common/collect/CompactHashMap.java

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

       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashMap} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
       * @throws IllegalArgumentException if {@code expectedSize} is negative
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          CompactHashMap<K, V> createWithExpectedSize(int expectedSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top