Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,706 for wall (0.04 sec)

  1. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * All other timestamps are calculated as the wall clock time at last sync + elapsed time since.
     * <p>
     * This clock deals relatively well when the system wall clock shift is adjusted by small amounts.
     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security_test.go

    	if err := checkCompilerFlags("TEST", "test", []string{"-Wall"}); err != nil {
    		t.Fatalf("unexpected error for -Wall: %v", err)
    	}
    	os.Setenv("CGO_TEST_DISALLOW", "-Wall")
    	if err := checkCompilerFlags("TEST", "test", []string{"-Wall"}); err == nil {
    		t.Fatalf("missing error for -Wall with CGO_TEST_DISALLOW=-Wall")
    	}
    	os.Setenv("CGO_TEST_ALLOW", "-Wall") // disallow wins
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/time/time.go

    // clock reading.
    type Time struct {
    	// wall and ext encode the wall time seconds, wall time nanoseconds,
    	// and optional monotonic clock reading in nanoseconds.
    	//
    	// From high to low bit position, wall encodes a 1-bit flag (hasMonotonic),
    	// a 33-bit seconds field, and a 30-bit wall time nanoseconds field.
    	// The nanoseconds field is in the range [0, 999999999].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/time/internal_test.go

    	defer t.Stop()
    
    	// If this test fails, we will either throw (when siftdownTimer detects
    	// bad when on update), or other timers will hang (if the timer in a
    	// heap is in a bad state). There is no reliable way to test this, but
    	// we wait on a short timer here as a smoke test (alternatively, timers
    	// in later tests may hang).
    	<-After(25 * Millisecond)
    }
    
    var (
    	MinMonoTime = Time{wall: 1 << 63, ext: -1 << 63, loc: UTC}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/time/BuildScanClock.java

     *
     * The provider is _required_ to provide monotonic timestamps.
     *
     * @since 4.2
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildScanClock {
    
        /**
         * The current wall clock time.
         */
        long getCurrentTime();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/metrics.cc

    // Distribution of checkpoint write durations.
    auto* checkpoint_write_durations = monitoring::Sampler<1>::New(
        {
            "/tensorflow/core/checkpoint/write/write_durations",  // Metric name.
            "Distribution of the wall time duration in microseconds of the "
            "checkpoint write operation.",  // Metric description.
            "api_label"                     // Cell label.
        },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/Time.java

        }
    
        /**
         * Measures elapsed time.
         *
         * Timers use System.nanoTime() to measure elapsed time,
         * and are therefore not synchronized with {@link #clock()} or the system wall clock.
         *
         * System.nanoTime() does not consider time elapsed while the system is in hibernation.
         * Therefore, timers effectively measure the elapsed time, of which the system was awake.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/MonotonicClockTest.groovy

            when:
            setNanos(delta)
    
            then:
            clock.currentTime == START_MILLIS + Math.max(0, delta)
    
            where:
            delta << [0, 100, -100]
        }
    
        def "resyncs with system wall clock"() {
            when:
            setNanos(10)
    
            then:
            clock.currentTime == time(10)
    
            when:
            setNanos(15)
    
            then:
            clock.currentTime == time(15)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/loong64/include /tmp/loong64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build loong64 && linux
    
    package unix
    
    const (
    	SYS_IO_SETUP                = 0
    	SYS_IO_DESTROY              = 1
    	SYS_IO_SUBMIT               = 2
    	SYS_IO_CANCEL               = 3
    	SYS_IO_GETEVENTS            = 4
    	SYS_SETXATTR                = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/arm64/include -fsigned-char /tmp/arm64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && linux
    
    package unix
    
    const (
    	SYS_IO_SETUP                = 0
    	SYS_IO_DESTROY              = 1
    	SYS_IO_SUBMIT               = 2
    	SYS_IO_CANCEL               = 3
    	SYS_IO_GETEVENTS            = 4
    	SYS_SETXATTR                = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top