Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 537 for fileSystems (0.16 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

    * kubeadm: Fixed support of node certificates when joining a cluster ([#69328](https://github.com/kubernetes/kubernetes/pull/69328), [@bart0sh](https://github.com/bart0sh))
    * Fix an issue where filesystems are not unmounted when a backend is not reachable and returns EIO. ([#67097](https://github.com/kubernetes/kubernetes/pull/67097), [@chakri-nelluri](https://github.com/chakri-nelluri))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  2. 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)
  3. CHANGELOG/CHANGELOG-1.23.md

    - XFS-filesystems are now force-formatted (option `-f`) in order to avoid problems being formatted due to detection of magic super-blocks. This aligns with the behaviour of formatting of ext3/4 filesystems. ([#104923](https://github.com/kubernetes/kubernetes/pull/104923), [@davidkarlsen](https://github.com/davidkarlsen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

            * Make the kubectl from k8s release the default on GCI
    * kubelet summary rootfs now refers to the filesystem that contains the Kubelet RootDirectory (var/lib/kubelet) instead of cadvisor's rootfs ( / ), since they may be different filesystems. ([#35136](https://github.com/kubernetes/kubernetes/pull/35136), [@dashpole](https://github.com/dashpole))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/api/internal/resources/DefaultResourceResolver.java

    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.resource.local.LocalFileStandInExternalResource;
    
    public class DefaultResourceResolver implements ResourceResolver {
        private final FileResolver fileResolver;
        private final FileSystem fileSystem;
    
        public DefaultResourceResolver(FileResolver fileResolver, FileSystem fileSystem) {
            this.fileResolver = fileResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 27 15:36:08 UTC 2018
    - 1.6K bytes
    - Viewed (0)
Back to top