Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Filetime (0.48 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.resolution
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.validityAsserted
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.signatures.KaCallableSignature
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/metrics.go

    	// totalAllocated is the total bytes of heap objects allocated
    	// over the lifetime of the program.
    	totalAllocated uint64
    
    	// totalFreed is the total bytes of heap objects freed
    	// over the lifetime of the program.
    	totalFreed uint64
    
    	// totalAllocs is the number of heap objects allocated over
    	// the lifetime of the program.
    	totalAllocs uint64
    
    	// totalFrees is the number of heap objects freed over
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/runtime/mgclimit.go

    	assistTime := l.assistTimePool.Load()
    	if assistTime != 0 {
    		l.assistTimePool.Add(-assistTime)
    	}
    
    	// Drain the pool of idle time.
    	idleTime := l.idleTimePool.Load()
    	if idleTime != 0 {
    		l.idleTimePool.Add(-idleTime)
    	}
    
    	if !l.test {
    		// Consume time from in-flight events. Make sure we're not preemptible so allp can't change.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.components
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.validityAsserted
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. src/log/slog/value.go

    }
    
    type (
    	// Unexported version of *time.Location, just so we can store *time.Locations in
    	// Values. (No user-provided value has this type.)
    	timeLocation *time.Location
    
    	// timeTime is for times where UnixNano is undefined.
    	timeTime time.Time
    )
    
    // TimeValue returns a [Value] for a [time.Time].
    // It discards the monotonic portion.
    func TimeValue(v time.Time) Value {
    	if v.IsZero() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_tls13.go

    		return nil
    	}
    
    	// See RFC 8446, Section 4.6.1.
    	if msg.lifetime == 0 {
    		return nil
    	}
    	lifetime := time.Duration(msg.lifetime) * time.Second
    	if lifetime > maxSessionTicketLifetime {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: received a session ticket with invalid lifetime")
    	}
    
    	// RFC 9001, Section 4.6.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top