You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 16, 2025. It is now read-only.
in idea, it can found glusterfsFileSystemProvider,like this:
List fileSystemProviders = FileSystemProvider.installedProviders();
for (FileSystemProvider p: fileSystemProviders
) {
logger.info(String.format("file providers class are:[%s]",p.getClass()));
logger.info(String.format("file providers are:[%s]",p.getScheme()));
}
file providers class are:[class sun.nio.fs.WindowsFileSystemProvider]
file providers are:[file]
file providers class are:[class com.sun.nio.zipfs.ZipFileSystemProvider]
file providers are:[jar]
file providers class are:[class com.peircean.glusterfs.GlusterFileSystemProvider]
file providers are:[gluster]
but,when it was jar on windows or linux, just can find WindowsFileSystemProvider\ZipFileSystemProvider,or LinuxFileSystemProvider\ZipFileSystemProvider.