Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for chardevice (0.21 sec)

  1. pkg/volume/util/hostutil/hostutil.go

    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"
    	// FileTypeFile defines a constant for the file FileType.
    	FileTypeFile FileType = "File"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_colocate_splits.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    constexpr char kDeviceAttr[] = "device";
    // Attribute of colocation classes.
    constexpr char kClassAttr[] = "_class";
    
    bool HasDevice(Operation* op) {
      auto attr = op->getAttrOfType<StringAttr>(kDeviceAttr);
      if (!attr) return false;
      return !attr.getValue().empty();
    }
    
    // Returns the predecessors of `op` when `op`'s predecessors are wrapped by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/colocate_tpu_copy_with_dynamic_shape.cc

        }
      }
    
      ChangeResult SetDevice(mlir::StringAttr device) {
        bool changed = (device != device_);
        device_ = device;
        return changed ? ChangeResult::Change : ChangeResult::NoChange;
      }
    
      bool hasDevice() const { return !!device_; }
    
      mlir::StringAttr getDevice() const { return device_; }
    
     private:
      mutable mlir::StringAttr device_;
    };
    
    class DeviceDataflowAnalysis
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	HostPathFile HostPathType = "File"
    	// A UNIX socket must exist at the given path
    	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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	HostPathFile HostPathType = "File"
    	// A UNIX socket must exist at the given path
    	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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    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 empty directory will be created there as needed with file mode 0755,...
    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