Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for HighDateTime (0.28 sec)

  1. src/os/exec_windows.go

    			continue
    		}
    		var arg []byte
    		arg, cmd = readNextArg(cmd)
    		args = append(args, string(arg))
    	}
    	return args
    }
    
    func ftToDuration(ft *syscall.Filetime) time.Duration {
    	n := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime) // in 100-nanosecond intervals
    	return time.Duration(n*100) * time.Nanosecond
    }
    
    func (p *ProcessState) userTime() time.Duration {
    	return ftToDuration(&p.rusage.UserTime)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	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
    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    func (data *DrvInfoData) IsNewer(driverDate Filetime, driverVersion uint64) bool {
    	if data.DriverDate.HighDateTime > driverDate.HighDateTime {
    		return true
    	}
    	if data.DriverDate.HighDateTime < driverDate.HighDateTime {
    		return false
    	}
    
    	if data.DriverDate.LowDateTime > driverDate.LowDateTime {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	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
    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"FileNotifyInformation.FileName", Field, 0},
    		{"FileNotifyInformation.FileNameLength", Field, 0},
    		{"FileNotifyInformation.NextEntryOffset", Field, 0},
    		{"Filetime", Type, 0},
    		{"Filetime.HighDateTime", Field, 0},
    		{"Filetime.LowDateTime", Field, 0},
    		{"FindClose", Func, 0},
    		{"FindFirstFile", Func, 0},
    		{"FindNextFile", Func, 0},
    		{"Flock", Func, 0},
    		{"Flock_t", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (windows-386), type FileNotifyInformation struct, NextEntryOffset uint32
    pkg syscall (windows-386), type Filetime struct
    pkg syscall (windows-386), type Filetime struct, HighDateTime uint32
    pkg syscall (windows-386), type Filetime struct, LowDateTime uint32
    pkg syscall (windows-386), type Handle uintptr
    pkg syscall (windows-386), type Hostent struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top