Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 829 for stwat (0.05 sec)

  1. src/syscall/syscall_linux_loong64.go

    	// fields...
    	stat.Size = int64(r.Size)
    	stat.Blksize = int32(r.Blksize)
    	stat.Blocks = int64(r.Blocks)
    	stat.Atim = timespecFromStatxTimestamp(r.Atime)
    	stat.Mtim = timespecFromStatxTimestamp(r.Mtime)
    	stat.Ctim = timespecFromStatxTimestamp(r.Ctime)
    
    	return nil
    }
    
    func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
    	return fstatat(fd, path, stat, flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go

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

        private final FileSystemAccess fileSystemAccess;
        private final Stat stat;
    
        public DefaultFileCollectionSnapshotter(FileSystemAccess fileSystemAccess, Stat stat) {
            this.fileSystemAccess = fileSystemAccess;
            this.stat = stat;
        }
    
        @Override
        public Result snapshot(FileCollection fileCollection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/CommonFileSystemTest.groovy

            expect:
            def stat = fs.stat(file)
            stat.type == FileType.Missing
            stat.lastModified == 0
            stat.length == 0
        }
    
        def "stats regular file"() {
            def file = tmpDir.file("file")
            file.text = "123"
    
            expect:
            def stat = fs.stat(file)
            stat.type == FileType.RegularFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. docs/site-replication/run-ssec-object-replication.sh

    if [ "${repcount4}" -ne 1 ]; then
    	echo "BUG: object test-bucket/custpartsize not replicated"
    	exit_1
    fi
    
    # Stat the SSEC objects from source site
    echo "Stat minio1/test-bucket/encrypted"
    ./mc stat minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure --json
    stat_out1=$(./mc stat minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure --json)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/io/fs/stat_test.go

    				infoStr = fmt.Sprintf("FileInfo(Mode: %#o)", info.Mode())
    			}
    			t.Fatalf("Stat(%s) = %v, %v, want Mode:0456, nil", desc, infoStr, err)
    		}
    	}
    
    	// Test that Stat uses the method when present.
    	info, err := Stat(statOnly{testFsys}, "hello.txt")
    	check("statOnly", info, err)
    
    	// Test that Stat uses Open when the method is not present.
    	info, err = Stat(openOnly{testFsys}, "hello.txt")
    	check("openOnly", info, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 17:53:02 UTC 2020
    - 949 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    	// fields...
    	stat.Size = int64(r.Size)
    	stat.Blksize = int32(r.Blksize)
    	stat.Blocks = int64(r.Blocks)
    	stat.Atim = timespecFromStatxTimestamp(r.Atime)
    	stat.Mtim = timespecFromStatxTimestamp(r.Mtime)
    	stat.Ctim = timespecFromStatxTimestamp(r.Ctime)
    
    	return nil
    }
    
    func Fstat(fd int, stat *Stat_t) (err error) {
    	return Fstatat(fd, "", stat, AT_EMPTY_PATH)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/util/stats.go

    func parseStats(input *bytes.Buffer, stats []*stat) (err error) {
    	for input.Len() > 0 {
    		line, _ := input.ReadString('\n')
    		for _, stat := range stats {
    			if e := stat.processLine(line); e != nil {
    				err = multierror.Append(err, e)
    			}
    		}
    	}
    	for _, stat := range stats {
    		if !stat.found {
    			*stat.value = 0
    		}
    	}
    	return
    }
    
    func (s *stat) processLine(line string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileTreeElementTest.groovy

    import org.gradle.internal.file.Stat
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import spock.lang.Specification
    
    class DefaultFileTreeElementTest extends Specification {
        @Rule TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def "permissions on file can be read"() {
            def stat = Mock(Stat)
            def f = tmpDir.createFile("f")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/os/stat_unix.go

    package os
    
    import (
    	"syscall"
    )
    
    // Stat returns the [FileInfo] structure describing file.
    // If there is an error, it will be of type [*PathError].
    func (f *File) Stat() (FileInfo, error) {
    	if f == nil {
    		return nil, ErrInvalid
    	}
    	var fs fileStat
    	err := f.pfd.Fstat(&fs.sys)
    	if err != nil {
    		return nil, f.wrapErr("stat", err)
    	}
    	fillFileStatFromSys(&fs, f.name)
    	return &fs, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top