Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 150 for fileSystem (0.32 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file('dest').assertHasDescendants(
                'one.txt',
                'three.txt'
            )
        }
    
        def "can filter a file collection using a closure hitting the filesystem"() {
            given:
            file("files/file0.txt") << ""
            file("files/dir1/file1.txt") << ""
            file("files/dir2/file2.txt") << ""
    
            and:
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys.go

    		return nil
    	}
    	return err
    }
    
    // Lstat implements a version of os.Lstat that operates on the overlay filesystem.
    func Lstat(path string) (fs.FileInfo, error) {
    	Trace("Lstat", path)
    	return overlayStat(path, os.Lstat, "lstat")
    }
    
    // Stat implements a version of os.Stat that operates on the overlay filesystem.
    func Stat(path string) (fs.FileInfo, error) {
    	Trace("Stat", path)
    	return overlayStat(path, os.Stat, "stat")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. subprojects/core/build.gradle.kts

        }
        testFixturesApi(project(":execution")) {
            because("test fixtures expose OutputChangeListener")
        }
        testFixturesApi(project(":native")) {
            because("test fixtures expose FileSystem")
        }
        testFixturesApi(project(":file-collections")) {
            because("test fixtures expose file collection types")
        }
        testFixturesApi(project(":file-temp")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/volume/util/util.go

    	return &mount.SafeFormatAndMount{Interface: mounter, Exec: exec}
    }
    
    // GetVolumeMode retrieves VolumeMode from pv.
    // If the volume doesn't have PersistentVolume, it's an inline volume,
    // should return volumeMode as filesystem to keep existing behavior.
    func GetVolumeMode(volumeSpec *volume.Spec) (v1.PersistentVolumeMode, error) {
    	if volumeSpec == nil || volumeSpec.PersistentVolume == nil {
    		return v1.PersistentVolumeFilesystem, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/make.bash

    	echo 'Binaries built with this linker are likely to fail in mysterious ways.'
    	echo
    	echo 'Run sudo apt-get remove binutils-gold.'
    	echo
    	exit 1
    fi
    
    # Test for bad SELinux.
    # On Fedora 16 the selinux filesystem is mounted at /sys/fs/selinux,
    # so loop through the possible selinux mount points.
    for se_mount in /selinux /sys/fs/selinux
    do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "fsType": {
                "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
                "type": "string"
              },
              "options": {
                "additionalProperties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    	extractAttributesMetadata(options.Envs, options.Platform, meta)
    	// Add all instance labels with lower precedence than pod labels
    	extractInstanceLabels(options.Platform, meta)
    
    	// Add all pod labels found from filesystem
    	// These are typically volume mounted by the downward API
    	lbls, err := readPodLabels()
    	if err == nil {
    		meta.Labels = map[string]string{}
    		for k, v := range meta.StaticLabels {
    			meta.Labels[k] = v
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/syscall/exec_linux_test.go

    }
    
    func TestUnshare(t *testing.T) {
    	path := "/proc/net/dev"
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("kernel doesn't support proc filesystem")
    		}
    		if os.IsPermission(err) {
    			t.Skip("unable to test proc filesystem due to permissions")
    		}
    		t.Fatal(err)
    	}
    
    	b, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	orig := strings.TrimSpace(string(b))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/os/types_windows.go

    			// regular files: they continue to support random-access reads and writes
    			// of persistent data, and they shouldn't add unexpected latency or
    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		return
    	}
    	// volumeSpec.ReadOnly is the value that determines if volume could be formatted when being mounted.
    	// This is the same flag that determines filesystem resizing behaviour for offline resizing and hence
    	// we should use it here. This value comes from Pod.spec.volumes.persistentVolumeClaim.readOnly.
    	if volumeSpec.ReadOnly {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top