Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Cstime (0.17 sec)

  1. src/time/time.go

    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	if filePath == "" {
    		return nil, dmTime, errFileNotFound
    	}
    
    	xlPath := pathJoin(filePath, xlStorageFormatFile)
    	if readData {
    		buf, dmTime, err = s.readAllData(ctx, volume, volumeDir, xlPath, false)
    	} else {
    		buf, dmTime, err = s.readMetadataWithDMTime(ctx, xlPath)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    func Getrusage(who int, rusage *Rusage) (err error) {
    	var ruz rusage_zos
    	err = getrusage(who, &ruz)
    	//Only the first two fields of Rusage are set
    	rusage.Utime.Sec = ruz.Utime.Sec
    	rusage.Utime.Usec = int64(ruz.Utime.Usec)
    	rusage.Stime.Sec = ruz.Stime.Sec
    	rusage.Stime.Usec = int64(ruz.Stime.Usec)
    	return
    }
    
    //sys	Getegid() (egid int) = SYS_GETEGID
    //sys	Geteuid() (euid int) = SYS_GETEUID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    	DefaultPodInitialBackoffDuration time.Duration = 1 * time.Second
    	// DefaultPodMaxBackoffDuration is the default value for the max backoff duration
    	// for unschedulable pods. To change the default podMaxBackoffDurationSeconds used by the
    	// scheduler, update the ComponentConfig value in defaults.go
    	DefaultPodMaxBackoffDuration time.Duration = 10 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (3)
Back to top