Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 542 for filesystem_ (0.34 sec)

  1. pkg/kubelet/server/stats/handler.go

    	// ImageFsStats returns the stats of the image filesystem.
    	// Kubelet allows three options for container filesystems
    	// Everything is on node fs (so no image filesystem)
    	// Container storage is on a dedicated disk (imageFs is separate from root)
    	// Container Filesystem is on root and Images are stored on ImageFs
    	// First return parameter is the image filesystem and
    	// second parameter is the container filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. pkg/util/removeall/removeall.go

    // the first error it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    // It makes sure it does not cross mount boundary, i.e. it does *not* remove
    // files from another filesystems. Like 'rm -rf --one-file-system'.
    // It is copied from RemoveAll() sources, with IsLikelyNotMountPoint
    func RemoveAllOneFilesystemCommon(mounter mount.Interface, path string, remove func(string) error) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider.go

    	// fsIDtoInfo is a map from filesystem id to its stats. This will be used
    	// as a cache to avoid querying cAdvisor for the filesystem stats with the
    	// same filesystem id many times.
    	fsIDtoInfo := make(map[runtimeapi.FilesystemIdentifier]*cadvisorapiv2.FsInfo)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/TempFileCreator.java

                directoryPermissions =
                    () -> {
                      throw new IOException("unrecognized FileSystem type " + FileSystems.getDefault());
                    };
          }
        }
    
        private static PermissionSupplier userPermissions() {
          try {
            UserPrincipal user =
                FileSystems.getDefault()
                    .getUserPrincipalLookupService()
                    .lookupPrincipalByName(getUsername());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/TempFileCreator.java

                directoryPermissions =
                    () -> {
                      throw new IOException("unrecognized FileSystem type " + FileSystems.getDefault());
                    };
          }
        }
    
        private static PermissionSupplier userPermissions() {
          try {
            UserPrincipal user =
                FileSystems.getDefault()
                    .getUserPrincipalLookupService()
                    .lookupPrincipalByName(getUsername());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        assertThat(filesystem.exists(getCleanFile("g1", 0))).isFalse()
        assertThat(filesystem.exists(getCleanFile("g1", 1))).isFalse()
        assertThat(filesystem.exists(getCleanFile("g2", 0))).isFalse()
        assertThat(filesystem.exists(getCleanFile("g2", 1))).isFalse()
        assertThat(filesystem.exists(cacheDir / "otherFile0")).isFalse()
        assertThat(filesystem.exists(cacheDir / "dir1")).isFalse()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

                // Workaround for https://github.com/gradle/gradle/issues/11577
                return new DefaultFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem);
            } else {
                return new AttributeBasedFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem, attrs);
            }
        }
    
        /**
         * Gets attributes and returns FileVisitDetails for the given relativePath.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.h

    int GetChildren(const TF_Filesystem* filesystem, const char* path,
                    char*** entries, TF_Status* status);
    void DeleteFile(const TF_Filesystem* filesystem, const char* path,
                    TF_Status* status);
    void Stat(const TF_Filesystem* filesystem, const char* path,
              TF_FileStatistics* stats, TF_Status* status);
    void DeleteDir(const TF_Filesystem* filesystem, const char* path,
                   TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:37:41 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/FileResourceConnector.java

    import java.io.File;
    import java.net.URI;
    
    public class FileResourceConnector implements FileResourceRepository {
        private final FileSystem fileSystem;
        private final FileResourceListener listener;
    
        public FileResourceConnector(FileSystem fileSystem, ListenerManager listenerManager) {
            this.fileSystem = fileSystem;
            this.listener = listenerManager.getBroadcaster(FileResourceListener.class);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopyActionExecuter.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.reflect.Instantiator;
    
    public class CopyActionExecuter {
    
        private final Instantiator instantiator;
        private final ObjectFactory objectFactory;
        private final FileSystem fileSystem;
        private final boolean reproducibleFileOrder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top