Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for fileSystem (0.27 sec)

  1. pkg/kubelet/stats/provider_test.go

    		imageFsStats     *statsapi.FsStats
    		containerFsStats *statsapi.FsStats
    	}{
    		"dedicated device for image filesystem": {
    			rootfsDevice:  "root/device",
    			imagefsDevice: "image/device",
    			dedicated:     true,
    			imageFsStats:  imageStatsExpected,
    		},
    		"shared device for image filesystem": {
    			rootfsDevice:     "share/device",
    			imagefsDevice:    "share/device",
    			dedicated:        false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/helper.go

    			WorkingSetBytes: uint64Ptr(0),
    		}
    	}
    	return cpuStats, memoryStats
    }
    
    // cadvisorInfoToContainerStats returns the statsapi.ContainerStats converted
    // from the container and filesystem info.
    func cadvisorInfoToContainerStats(name string, info *cadvisorapiv2.ContainerInfo, rootFs, imageFs *cadvisorapiv2.FsInfo) *statsapi.ContainerStats {
    	result := &statsapi.ContainerStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows.go

    		imageFsInfo, found := fsIDtoInfo[*fsID]
    		if !found {
    			imageFsInfo, err = p.getFsInfo(fsID)
    			if err != nil {
    				return nil, fmt.Errorf("get filesystem info: %w", err)
    			}
    			fsIDtoInfo[*fsID] = imageFsInfo
    		}
    		if imageFsInfo != nil {
    			// The image filesystem id is unknown to the local node or there's
    			// an error on retrieving the stats. In these cases, we omit those stats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

    ==============================================================================*/
    #include "tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h"
    
    #include <cstring>
    #include <memory>
    #include <sstream>
    #include <utility>
    
    #include "absl/synchronization/mutex.h"
    #include "tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h"
    
    namespace tf_gcs_filesystem {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K 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. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

                return root;
            }
    
            SnapshotHierarchy invalidatedRoot = unsupportedFileSystems.stream()
                .reduce(
                    root,
                    (updatedRoot, fileSystem) -> invalidator.invalidate(fileSystem.getAbsolutePath(), updatedRoot),
                    nonCombining()
                );
            if (invalidatedRoot != root) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/cmd/internal/moddeps/moddeps_test.go

    					// If the replacement is a filesystem path (rather than a module path),
    					// we don't know whether the filesystem contents have changed since
    					// the module was last vendored.
    					//
    					// Fortunately, we do not currently use filesystem-local replacements
    					// in GOROOT modules.
    					t.Errorf("cannot check consistency for filesystem-local replacement in module %s (%s):\n%s", m.Path, m.Dir, line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K 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. guava/src/com/google/common/io/MoreFiles.java

       * behavior that the {@link Path} API does not already account for. For example, on NTFS it will
       * report {@code "txt"} as the extension for the filename {@code "foo.exe:.txt"} even though NTFS
       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
       * filesystem due to NTFS's <a href="https://goo.gl/vTpJi4">Alternate Data Streams</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

    import static java.util.Collections.emptyList
    import static org.gradle.api.internal.file.TestFiles.deleter
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    import static org.gradle.api.internal.file.TestFiles.fileSystem
    import static org.gradle.api.internal.file.TestFiles.fileSystemAccess
    import static org.gradle.api.internal.file.TestFiles.virtualFileSystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top