Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 795 for stwat (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/os/stat_plan9.go

    			a.decref()
    		case string:
    			name = a
    			n, err = syscall.Stat(a, buf)
    		default:
    			panic("phase error in dirstat")
    		}
    
    		if n < bitSize16 {
    			return nil, &PathError{Op: "stat", Path: name, Err: err}
    		}
    
    		// Pull the real size out of the stat message.
    		size = int(uint16(buf[0]) | uint16(buf[1])<<8)
    
    		// If the stat message is larger than our buffer we will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. docs/site-replication/run-sse-kms-object-replication.sh

    if [ "${repcount4}" -ne 1 ]; then
    	echo "BUG: object test-bucket/custpartsize not replicated"
    	exit_1
    fi
    
    # Stat the objects from source site
    echo "Stat minio1/test-bucket/encrypted"
    ./mc stat minio1/test-bucket/encrypted --insecure --json
    stat_out1=$(./mc stat minio1/test-bucket/encrypted --insecure --json)
    src_obj1_algo=$(echo "${stat_out1}" | jq '.metadata."X-Amz-Server-Side-Encryption"')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top