Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 160 for fileSystem (0.21 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        def virtualFileSystem = TestFiles.virtualFileSystem()
        def fileSystemAccess = TestFiles.fileSystemAccess(virtualFileSystem)
        def snapshotter = new DefaultFileCollectionSnapshotter(fileSystemAccess, TestFiles.fileSystem())
        def fingerprinter = new AbsolutePathFileCollectionFingerprinter(DirectorySensitivity.DEFAULT, snapshotter, FileSystemLocationSnapshotHasher.DEFAULT)
        def executionHistoryStore = new TestExecutionHistoryStore()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/quota_linux_test.go

    		"Root": {
    			"/",
    			dummyMountData,
    			"/dev/mapper/fedora-root",
    			false,
    		},
    		"tmpfs": {
    			"/tmp",
    			dummyMountData,
    			"tmpfs",
    			false,
    		},
    		"user filesystem": {
    			"/virt",
    			dummyMountData,
    			"/dev/sdb1",
    			false,
    		},
    		"empty mountpoint": {
    			"",
    			dummyMountData,
    			"",
    			true,
    		},
    		"bad mountpoint": {
    			"/kiusf",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    Thread model: win32
    Supported LTO compression algorithms: zlib
    gcc version 10-win32 20210110 (GCC)
    COLLECT_GCC_OPTIONS='-dM' '-E' '-v' '-mtune=generic' '-march=x86-64'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    // Chtimes changes the access and modification times of the named
    // file, similar to the Unix utime() or utimes() functions.
    // A zero time.Time value will leave the corresponding file time unchanged.
    //
    // The underlying filesystem may truncate or round the values to a
    // less precise time unit.
    // If there is an error, it will be of type *PathError.
    func Chtimes(name string, atime time.Time, mtime time.Time) error {
    	var d syscall.Dir
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    // Clean(path) will always produce an unrooted path with no ".." path elements.
    //
    // IsLocal is a purely lexical operation.
    // In particular, it does not account for the effect of any symbolic links
    // that may exist in the filesystem.
    func IsLocal(path string) bool {
    	return filepathlite.IsLocal(path)
    }
    
    // Localize converts a slash-separated path into an operating system path.
    // The input path must be a valid path as reported by [io/fs.ValidPath].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes.go

    // BackendType - represents different backend types.
    type BackendType int
    
    // Enum for different backend types.
    const (
    	Unknown = BackendType(madmin.Unknown)
    	// Filesystem backend.
    	BackendFS = BackendType(madmin.FS)
    	// Multi disk BackendErasure (single, distributed) backend.
    	BackendErasure = BackendType(madmin.Erasure)
    	// Add your own backend.
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func (e *EventPort) FdIsWatched(fd uintptr) bool {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	_, found := e.fds[fd]
    	return found
    }
    
    // AssociatePath wraps port_associate(3c) for a filesystem path including
    // creating the necessary file_obj from the provided stat information.
    func (e *EventPort) AssociatePath(path string, stat os.FileInfo, events int, cookie interface{}) error {
    	e.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    		{
    			// Use some arbitrary small test input (pilot only) since we are testing the local filesystem code here, not
    			// manifest generation.
    			desc:       "install_package_path",
    			diffSelect: "Deployment:*:istiod",
    			flags:      "--set installPackagePath=" + string(liveCharts),
    		},
    		{
    			// Specify both charts and profile from local filesystem.
    			desc:       "install_package_path",
    			diffSelect: "Deployment:*:istiod",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

     * or having an absolute path which is part of the input.
    
    If the changed property is a file property, then the reasons can be the same as for the change of a value property.
    Most probably though a file on the filesystem changed in a way that Gradle detects a difference for this input.
    The most common case will be that the source code was changed by a check in.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    ====
    
    TIP: Certain repositories will not be able to handle all supported characters. For example, the `:` character cannot be used as an identifier when publishing to a filesystem-backed repository on Windows.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top