Skip to content
Snippets Groups Projects
Select Git revision
  • debian/8.1.33-1
  • debian/main/8.4 default protected
  • pristine-tar protected
  • debian/main/8.5 protected
  • upstream/8.5 protected
  • upstream/8.4 protected
  • debian/main/8.3 protected
  • upstream/8.3 protected
  • debian/main/8.2 protected
  • debian/main/8.1 protected
  • debian/main/8.0 protected
  • debian/main/7.4 protected
  • debian/main/7.3 protected
  • debian/main/7.2 protected
  • debian/main/7.1 protected
  • debian/main/7.0 protected
  • debian/main/5.6 protected
  • debian/bookworm/8.2
  • upstream/8.1 protected
  • upstream/8.2 protected
  • debian/bullseye/7.4
  • debian/8.5.0-1 protected
  • upstream/8.5.0 protected
  • debian/8.4.15-1 protected
  • upstream/8.4.15 protected
  • debian/8.3.28-1 protected
  • upstream/8.3.28 protected
  • debian/8.5.0_rc5-3 protected
  • debian/8.4.14-3 protected
  • debian/8.3.27-3 protected
  • debian/8.2.29-7 protected
  • debian/8.1.33-4 protected
  • debian/1%8.0.30-17 protected
  • debian/1%7.4.33-23 protected
  • debian/7.3.33-27 protected
  • debian/7.2.34-58 protected
  • debian/7.1.33-71 protected
  • debian/7.0.33-83 protected
  • debian/5.6.40-89 protected
  • debian/8.5.0_rc5-1 protected
  • upstream/8.5.0_rc5 protected
41 results

filters.c

Blame
  • sysutil_test.go 245 B
    package sysutil
    
    import (
    	"testing"
    	"time"
    )
    
    // TestBootTime tests the boot time.
    func TestBootTime(t *testing.T) {
    	t.Logf("boot time: %s", BootTime().Format(time.RFC3339Nano))
    	t.Logf("now:       %s", time.Now().Format(time.RFC3339Nano))
    }