Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for filetag (0.27 sec)

  1. src/os/stat_unix.go

    	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
    }
    
    // statNolog stats a file with no test logging.
    func statNolog(name string) (FileInfo, error) {
    	var fs fileStat
    	err := ignoringEINTR(func() error {
    		return syscall.Stat(name, &fs.sys)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

            if (OS_IS_WINDOWS && file.exists()) {
                // ensure that file modification time changes on windows
                long fileAge = System.currentTimeMillis() - file.lastModified()
                if (fileAge > 0L && fileAge < 900L) {
                    waitMillis = 1000L - fileAge
                }
            }
            sleep(waitMillis)
        }
    
        void update(File file, String text) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    							if i > 1 {
    								file = fmt.Sprintf("%s/part.%d", file, i)
    								filemap[file] = make(map[string]string)
    								filemap[file][verID] = fmt.Sprintf("%s/part.%d/shard-%02d-of-%02d", verID, i, idx, ei.V2Obj.EcN+ei.V2Obj.EcM)
    								filemap[file][verID+".json"] = buf.String()
    							}
    							partDataToVerID[dataFile] = [2]string{file, verID}
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/runtime/align_test.go

    	pkg := m["runtime"] // Note: ignore runtime_test and main packages
    
    	// Filter files by those for the current architecture/os being tested.
    	fileMap := map[string]bool{}
    	for _, f := range buildableFiles(t, ".") {
    		fileMap[f] = true
    	}
    	var files []*ast.File
    	for fname, f := range pkg.Files {
    		if fileMap[fname] {
    			files = append(files, f)
    		}
    	}
    
    	// Call go/types to analyze the runtime package.
    	var info types.Info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/internal/pkgpath/pkgpath.go

    	// between packages whose paths are different but mangle to
    	// the same string. More recent versions use a new mangler
    	// that avoids these collisions.
    	const filepat = "*_gccgo_manglechck.go"
    	f, err := os.CreateTemp(tmpdir, filepat)
    	if err != nil {
    		return nil, err
    	}
    	gofilename := f.Name()
    	f.Close()
    	defer os.Remove(gofilename)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/os/stat_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    	fs.size = int64(fs.sys.Size)
    	fs.modTime = stTimespecToTime(fs.sys.Mtim)
    	fs.mode = FileMode(fs.sys.Mode & 0777)
    	switch fs.sys.Mode & syscall.S_IFMT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

            if (OS_IS_WINDOWS && file.exists()) {
                // ensure that file modification time changes on windows
                long fileAge = System.currentTimeMillis() - file.lastModified()
                if (fileAge > 0L && fileAge < 900L) {
                    waitMillis = 1000L - fileAge
                }
            }
            sleep(waitMillis)
        }
    
        class ExecutionOutput {
            String stdout
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. src/os/stat_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    	fs.size = fs.sys.Size
    	fs.modTime = time.Unix(fs.sys.Mtimespec.Unix())
    	fs.mode = FileMode(fs.sys.Mode & 0777)
    	switch fs.sys.Mode & syscall.S_IFMT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/os/stat_dragonfly.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    	fs.size = fs.sys.Size
    	fs.modTime = time.Unix(fs.sys.Mtim.Unix())
    	fs.mode = FileMode(fs.sys.Mode & 0777)
    	switch fs.sys.Mode & syscall.S_IFMT {
    	case syscall.S_IFBLK:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top