Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Filetime (0.17 sec)

  1. src/syscall/syscall_windows.go

    //sys	getStartupInfo(startupInfo *StartupInfo) = GetStartupInfoW
    //sys	GetCurrentProcess() (pseudoHandle Handle, err error)
    //sys	GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	getTickCount64() (ms uint64) = kernel32.GetTickCount64
    //sys   GetFileTime(handle Handle, ctime *Filetime, atime *Filetime, wtime *Filetime) (err error)
    //sys	SetFileTime(handle Handle, ctime *Filetime, atime *Filetime, wtime *Filetime) (err error)
    //sys	GetFileAttributes(name *uint16) (attrs uint32, err error) [failretval==INVALID_FILE_ATTRIBUTES] = kernel32.GetFileAttributesW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    type DrvInfoData struct {
    	size          uint32
    	DriverType    uint32
    	_             uintptr
    	description   [LINE_LEN]uint16
    	mfgName       [LINE_LEN]uint16
    	providerName  [LINE_LEN]uint16
    	DriverDate    Filetime
    	DriverVersion uint64
    }
    
    func (data *DrvInfoData) Description() string {
    	return UTF16ToString(data.description[:])
    }
    
    func (data *DrvInfoData) SetDescription(description string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    // be imported into `graph`. `prefix` is copied and has no lifetime
    // requirements.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetPrefix(
        TF_ImportGraphDefOptions* opts, const char* prefix);
    
    // Set the execution device for nodes in `graph_def`.
    // Only applies to nodes where a device was not already explicitly specified.
    // `device` is copied and has no lifetime requirements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    }
    
    type newSessionTicketMsgTLS13 struct {
    	lifetime     uint32
    	ageAdd       uint32
    	nonce        []byte
    	label        []byte
    	maxEarlyData uint32
    }
    
    func (m *newSessionTicketMsgTLS13) marshal() ([]byte, error) {
    	var b cryptobyte.Builder
    	b.AddUint8(typeNewSessionTicket)
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		b.AddUint32(m.lifetime)
    		b.AddUint32(m.ageAdd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/net/http/request.go

    }
    
    // WithContext returns a shallow copy of r with its context changed
    // to ctx. The provided ctx must be non-nil.
    //
    // For outgoing client request, the context controls the entire
    // lifetime of a request and its response: obtaining a connection,
    // sending the request, and reading the response headers and body.
    //
    // To create a new request with a context, use [NewRequestWithContext].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// method signatures to have some type of type safety: for example, operations
    /// that are only valid on random access files have a `TF_RandomAccessFile`
    /// argument.
    ///
    /// Lifetime: The wrapper data structures are owned by core TensorFlow. The data
    /// pointed to by the `void*` members is always owned by the plugin. The plugin
    /// will provide functions to call to allocate and deallocate this data (see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  9. src/time/time_test.go

    	}
    	for i, tt := range realTests {
    		start, end := tt.giveTime.ZoneBounds()
    		if !start.Equal(tt.wantStart) || !end.Equal(tt.wantEnd) {
    			t.Errorf("#%d:: ZoneBounds of %v expects right bounds:\n  got start=%v\n  want start=%v\n  got end=%v\n  want end=%v",
    				i, tt.giveTime, start, tt.wantStart, end, tt.wantEnd)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	proxier.mu.Lock()
    	proxier.servicesSynced = true
    	proxier.setInitialized(proxier.endpointSlicesSynced)
    	proxier.mu.Unlock()
    
    	// Sync unconditionally - this is called once per lifetime.
    	proxier.syncProxyRules()
    }
    
    // OnEndpointSliceAdd is called whenever creation of a new endpoint slice object
    // is observed.
    func (proxier *Proxier) OnEndpointSliceAdd(endpointSlice *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top