Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for Filesystem (0.48 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // fsType is the filesystem type of the volume that you want to mount.
      // Tip: Ensure that the filesystem type is supported by the host operating system.
      // Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
      // TODO: how do we prevent errors in the filesystem from compromising the machine
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. pkg/volume/local/local.go

    	fs := v1.PersistentVolumeFilesystem
    	// The main purpose of reconstructed volume is to clean unused mount points
    	// and directories.
    	// For filesystem volume with directory source, no global mount path is
    	// needed to clean. Empty path is ok.
    	// For filesystem volume with block source, we should resolve to its device
    	// path if global mount path exists.
    	var path string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    // +enum
    type PersistentVolumeMode string
    
    const (
    	// PersistentVolumeBlock means the volume will not be formatted with a filesystem and will remain a raw block device.
    	PersistentVolumeBlock PersistentVolumeMode = "Block"
    	// PersistentVolumeFilesystem means the volume will be or is formatted with a filesystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/util/filesystem/util_windows_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"math/rand"
    	"net"
    	"os"
    	"sync"
    	"testing"
    	"time"
    
    	winio "github.com/Microsoft/go-winio"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_executor.go

    	DetachVolume(logger klog.Logger, volumeToDetach AttachedVolume, verifySafeToDetach bool, actualStateOfWorld ActualStateOfWorldAttacherUpdater) error
    
    	// If a volume has 'Filesystem' volumeMode, MountVolume mounts the
    	// volume to the pod specified in volumeToMount.
    	// Specifically it will:
    	// * Wait for the device to finish attaching (for attachable volumes only).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/testing/fstest/testfs_test.go

    		"tmp/two":   {Data: []byte("2")},
    		"tmp/three": {Data: []byte("3")},
    	}
    	if err := TestFS(fsys, "tmp/one", "tmp/two", "tmp/three"); err != nil {
    		t.Error(err)
    	}
    }
    
    // failPermFS is a filesystem that always fails with fs.ErrPermission.
    type failPermFS struct{}
    
    func (f failPermFS) Open(name string) (fs.File, error) {
    	if !fs.ValidPath(name) {
    		return nil, &fs.PathError{Op: "open", Path: name, Err: fs.ErrInvalid}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      // This is the part that would break the `CreateTmpDir` function because it
      // fails to provide a valid file system.
      absl::Status GetFileSystemForFile(const std::string& fname,
                                        tsl::FileSystem** result) override {
        return absl::InternalError("Broken file system");
      }
    
     private:
      void GetLocalTempDirectories(std::vector<tsl::string>* list) override {
        list->push_back("/tmp");
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. pkg/kubelet/images/image_gc_manager.go

    )
    
    // StatsProvider is an interface for fetching stats used during image garbage
    // collection.
    type StatsProvider interface {
    	// ImageFsStats returns the stats of the image filesystem.
    	ImageFsStats(ctx context.Context) (*statsapi.FsStats, *statsapi.FsStats, error)
    }
    
    // ImageGCManager is an interface for managing lifecycle of all images.
    // Implementation is thread-safe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/options/generic.go

    func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) {
    	flagSet.StringVar(
    		rootfsPath, "rootfs", *rootfsPath,
    		"The path to the 'real' host root filesystem. This will cause kubeadm to chroot into the provided path.",
    	)
    }
    
    // AddPatchesFlag adds the --patches flag to the given flagset
    func AddPatchesFlag(fs *pflag.FlagSet, patchesDir *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/IoTestCase.java

          }
        }
    
        if (testDir == null) {
          // testdata resources aren't file:// urls, so create a directory to store them in and then
          // copy the resources to the filesystem as needed
          testDir = createTempDir();
        }
    
        return testDir;
      }
    
      /** Returns the file with the given name under the testdata directory. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top