Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BlockDevice (0.2 sec)

  1. internal/disk/stat_linux.go

    package disk
    
    import (
    	"bufio"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"syscall"
    
    	"github.com/prometheus/procfs/blockdevice"
    	"golang.org/x/sys/unix"
    )
    
    // GetInfo returns total and free bytes available in a directory, e.g. `/`.
    func GetInfo(path string, firstTime bool) (info Info, err error) {
    	s := syscall.Statfs_t{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil.go

    )
    
    // FileType enumerates the known set of possible file types.
    type FileType string
    
    const (
    	// FileTypeBlockDev defines a constant for the block device FileType.
    	FileTypeBlockDev FileType = "BlockDevice"
    	// FileTypeCharDev defines a constant for the character device FileType.
    	FileTypeCharDev FileType = "CharDevice"
    	// FileTypeDirectory defines a constant for the directory FileType.
    	FileTypeDirectory FileType = "Directory"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	HostPathSocket HostPathType = "Socket"
    	// A character device must exist at the given path
    	HostPathCharDev HostPathType = "CharDevice"
    	// A block device must exist at the given path
    	HostPathBlockDev HostPathType = "BlockDevice"
    )
    
    // HostPathVolumeSource represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    type HostPathVolumeSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	HostPathSocket HostPathType = "Socket"
    	// A character device must exist at the given path
    	HostPathCharDev HostPathType = "CharDevice"
    	// A block device must exist at the given path
    	HostPathBlockDev HostPathType = "BlockDevice"
    )
    
    // Represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    type HostPathVolumeSource struct {
    	// path of the directory on the host.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\n\nPossible enum values:\n - `\"\"` For backwards compatible, leave it empty if unset\n - `\"BlockDevice\"` A block device must exist at the given path\n - `\"CharDevice\"` A character device must exist at the given path\n - `\"Directory\"` A directory must exist at the given path\n - `\"DirectoryOrCreate\"` If nothing exists at the given path, an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top