Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Cstime (0.37 sec)

  1. src/os/exec_unix.go

    	}
    	// Use the handle.
    	return newHandleProcess(pid, h), nil
    }
    
    func (p *ProcessState) userTime() time.Duration {
    	return time.Duration(p.rusage.Utime.Nano()) * time.Nanosecond
    }
    
    func (p *ProcessState) systemTime() time.Duration {
    	return time.Duration(p.rusage.Stime.Nano()) * time.Nanosecond
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K 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. 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