Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for Resizing (0.12 sec)

  1. pkg/volume/util/resize_util.go

    	// Its value will be used by pv_controller to determine pvc's status capacity when binding pvc and pv.
    	AnnPreResizeCapacity = "volume.alpha.kubernetes.io/pre-resize-capacity"
    )
    
    type resizeProcessStatus struct {
    	condition v1.PersistentVolumeClaimCondition
    	processed bool
    }
    
    // UpdatePVSize updates just pv size after cloudprovider resizing is successful
    func UpdatePVSize(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Striped64.java

       * reaching the nearest power of two greater than or equal to the
       * number of CPUS. Table slots remain empty (null) until they are
       * needed.
       *
       * A single spinlock ("busy") is used for initializing and
       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Striped64.java

       * reaching the nearest power of two greater than or equal to the
       * number of CPUS. Table slots remain empty (null) until they are
       * needed.
       *
       * A single spinlock ("busy") is used for initializing and
       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	}
    
    	// Next we mount required volumes. This function could also trigger
    	// attach if kubelet is responsible for attaching volumes.
    	// If underlying PVC was resized while in-use then this function also handles volume
    	// resizing.
    	rc.mountOrAttachVolumes()
    
    	// Unmount volumes only when DSW and ASW are fully populated to prevent unmounting a volume
    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/Striped64.java

       * reaching the nearest power of two greater than or equal to the
       * number of CPUS. Table slots remain empty (null) until they are
       * needed.
       *
       * A single spinlock ("busy") is used for initializing and
       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/Striped64.java

       * reaching the nearest power of two greater than or equal to the
       * number of CPUS. Table slots remain empty (null) until they are
       * needed.
       *
       * A single spinlock ("busy") is used for initializing and
       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/remotecommand/constants.go

    	StreamProtocolV2Name = "v2.channel.k8s.io"
    
    	// The SPDY subprotocol "v3.channel.k8s.io" is used for remote command
    	// attachment/execution. It is the third version of the subprotocol and
    	// adds support for resizing container terminals.
    	StreamProtocolV3Name = "v3.channel.k8s.io"
    
    	// The SPDY subprotocol "v4.channel.k8s.io" is used for remote command
    	// attachment/execution. It is the 4th version of the subprotocol and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/string_utils.h

    class MiniDynamicBuffer {
     public:
      explicit MiniDynamicBuffer(size_t max_length = kDefaultMaxLength)
          : offset_({0}), max_length_(max_length) {}
    
      // Add string to dynamic buffer by resizing the buffer and copying the data.
      absl::Status AddString(const char* str, size_t len);
    
      // Fill content into a buffer and returns the number of bytes stored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // but it is the first "versioned" subprotocol.
    //
    // "v3.channel.k8s.io"
    //
    // The third version of the Websocket RemoteCommand subprotocol adds another channel
    // for terminal resizing events. This channel is prepended with the byte '3', and it
    // transmits two window sizes (encoding TerminalSize struct) with integers in the range
    // (0,65536].
    //
    // "v4.channel.k8s.io"
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pkg/volume/util/types/types.go

    	if _, ok := err.(*UncertainProgressError); ok {
    		return true
    	}
    	return false
    }
    
    const (
    	// VolumeResizerKey is key that will be used to store resizer used
    	// for resizing PVC. The generated key/value pair will be added
    	// as a annotation to the PVC.
    	VolumeResizerKey = "volume.kubernetes.io/storage-resizer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top