Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 829 for stwat (0.06 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchies.java

        private final Stat stat;
    
        public ExecutionNodeAccessHierarchies(CaseSensitivity caseSensitivity, Stat stat) {
            this.caseSensitivity = caseSensitivity;
            this.stat = stat;
            outputHierarchy = new ExecutionNodeAccessHierarchy(caseSensitivity, stat);
            destroyableHierarchy = new ExecutionNodeAccessHierarchy(caseSensitivity, stat);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/testFixtures/groovy/org/gradle/internal/file/AbstractFileMetadataAccessorTest.groovy

            expect:
            def stat = accessor.stat(file)
            stat.type == FileType.Missing
            stat.lastModified == 0
            stat.length == 0
            assertSameAccessType(stat, DIRECT)
        }
    
        def "stats regular file"() {
            def file = tmpDir.file("file")
            file.text = "123"
    
            expect:
            def stat = accessor.stat(file)
            stat.type == FileType.RegularFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/os/stat_test.go

    	statCheck  func(*testing.T, string, fs.FileInfo)
    	lstatCheck func(*testing.T, string, fs.FileInfo)
    }
    
    // testStatAndLstat verifies that all os.Stat, os.Lstat os.File.Stat and os.Readdir work.
    func testStatAndLstat(t *testing.T, path string, params testStatAndLstatParams) {
    	// test os.Stat
    	sfi, err := os.Stat(path)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	params.statCheck(t, path, sfi)
    
    	// test os.Lstat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go

    	cmsg.Len = uint32(length)
    }
    
    func Fstat(fd int, stat *Stat_t) error {
    	return fstat(fd, stat)
    }
    
    func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
    	return fstatat(dirfd, path, stat, flags)
    }
    
    func Lstat(path string, stat *Stat_t) error {
    	return lstat(path, stat)
    }
    
    func Stat(path string, statptr *Stat_t) error {
    	return stat(path, statptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

    import org.gradle.internal.file.Stat;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.nio.file.Files;
    
    public class SingleFileTreeElementMatcher {
    
        private final Stat stat;
    
        public SingleFileTreeElementMatcher(Stat stat) {
            this.stat = stat;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileTreeElement.java

            super(chmod);
            this.file = file;
            this.relativePath = relativePath;
            this.stat = stat;
        }
    
        public static DefaultFileTreeElement of(File file, FileSystem fileSystem) {
            RelativePath path = RelativePath.parse(!file.isDirectory(), file.getAbsolutePath());
            return new DefaultFileTreeElement(file, path, fileSystem, fileSystem);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go

    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error) = SYS_FSTATFS64
    //sys	getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT64
    //sys	Lstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/PatternSetSnapshottingFilter.java

    import java.nio.file.Path;
    
    public class PatternSetSnapshottingFilter implements SnapshottingFilter {
        private final PatternSet patternSet;
        private final Stat stat;
    
        public PatternSetSnapshottingFilter(PatternSet patternSet, Stat stat) {
            this.stat = stat;
            this.patternSet = patternSet;
        }
    
        @Override
        public boolean isEmpty() {
            return patternSet.isEmpty();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go

    func fixStatTimFields(stat *Stat_t) {
    	stat.Atim.Nsec >>= 32
    	stat.Mtim.Nsec >>= 32
    	stat.Ctim.Nsec >>= 32
    }
    
    func Fstat(fd int, stat *Stat_t) error {
    	err := fstat(fd, stat)
    	if err != nil {
    		return err
    	}
    	fixStatTimFields(stat)
    	return nil
    }
    
    func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
    	err := fstatat(dirfd, path, stat, flags)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathWalker.java

     * Allows the classes and resources of a classpath element such as a jar or directory to be visited.
     */
    @ServiceScope(Scope.UserHome.class)
    public class ClasspathWalker {
        private final Stat stat;
    
        public ClasspathWalker(Stat stat) {
            this.stat = stat;
        }
    
        /**
         * Visits the entries of the given classpath element.
         *
         * @throws FileException On failure to open a Jar file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top