Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for Filetime (0.18 sec)

  1. src/syscall/types_windows.go

    	NextEntryOffset uint32
    	Action          uint32
    	FileNameLength  uint32
    	FileName        uint16
    }
    
    type Filetime struct {
    	LowDateTime  uint32
    	HighDateTime uint32
    }
    
    // Nanoseconds returns Filetime ft in nanoseconds
    // since Epoch (00:00:00 UTC, January 1, 1970).
    func (ft *Filetime) Nanoseconds() int64 {
    	// 100-nanosecond intervals since January 1, 1601
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            def triggerFile = targetDir.createFile("zzz.txt")
            FileTime.makeOld(targetDir, triggerFile)
    
            and:
            def newFile = targetDir.file("aaa.txt")
            deleter = FileTime.deleterWithDeletionAction() { file ->
                if (file.canonicalFile == triggerFile.canonicalFile) {
                    FileTime.createNewFile(newFile)
                }
                return DeletionAction.CONTINUE
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    type FILE_ID_BOTH_DIR_INFO struct {
    	NextEntryOffset uint32
    	FileIndex       uint32
    	CreationTime    syscall.Filetime
    	LastAccessTime  syscall.Filetime
    	LastWriteTime   syscall.Filetime
    	ChangeTime      syscall.Filetime
    	EndOfFile       uint64
    	AllocationSize  uint64
    	FileAttributes  uint32
    	FileNameLength  uint32
    	EaSize          uint32
    	ShortNameLength uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/os/types_windows.go

    type fileStat struct {
    	name string
    
    	// from ByHandleFileInformation, Win32FileAttributeData, Win32finddata, and GetFileInformationByHandleEx
    	FileAttributes uint32
    	CreationTime   syscall.Filetime
    	LastAccessTime syscall.Filetime
    	LastWriteTime  syscall.Filetime
    	FileSizeHigh   uint32
    	FileSizeLow    uint32
    
    	// from Win32finddata and GetFileInformationByHandleEx
    	ReparseTag uint32
    
    	// what syscall.GetFileType returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.net.URL;
    import java.nio.charset.Charset;
    import java.nio.file.Files;
    import java.nio.file.attribute.FileTime;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.zip.Checksum;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

    import java.io.FileOutputStream;
    import java.io.FileReader;
    import java.io.IOException;
    import java.net.URL;
    import java.nio.charset.Charset;
    import java.nio.file.Files;
    import java.nio.file.attribute.FileTime;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.zip.Checksum;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/MoreFiles.java

    import java.nio.file.StandardOpenOption;
    import java.nio.file.attribute.BasicFileAttributeView;
    import java.nio.file.attribute.BasicFileAttributes;
    import java.nio.file.attribute.FileAttribute;
    import java.nio.file.attribute.FileTime;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.stream.Stream;
    import javax.annotation.CheckForNull;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/Kerb5Authenticator.java

        }
    
    
        /**
         * Get lifetime of current user.
         *
         * @return the remaining lifetime in seconds. If the default lifetime is
         *         used, this value have no meaning.
         *
         */
        public int getUserLifeTime () {
            return this.userLifetime;
        }
    
    
        /**
         * Set lifetime of current user.
         *
         * @param time
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	default:
    		rst.path(false)
    		return false
    	}
    }
    
    // writeLifetime writes out a lifetime binding.
    func (rst *rustState) writeLifetime(lifetime int64) {
    	rst.writeByte('\'')
    	if lifetime == 0 {
    		rst.writeByte('_')
    		return
    	}
    	depth := rst.lifetimes - lifetime
    	if depth < 0 {
    		rst.fail("invalid lifetime")
    	} else if depth < 26 {
    		rst.writeByte('a' + byte(depth))
    	} else {
    		rst.writeByte('z')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    	}
    	if c.last() == -1 {
    		c.setLast(pos)
    		if debugtrace {
    			fmt.Fprintf(os.Stderr, "=-= begin lifetime at pos=%d\n", pos)
    		}
    		c.s = append(c.s, Interval{st: pos, en: pos + 1})
    		return nil
    	}
    	if pos >= c.last() {
    		return fmt.Errorf("pos not decreasing")
    	}
    	// extend lifetime across this pos
    	c.s[len(c.s)-1].st = pos
    	c.setLast(pos)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top