Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,586 for rduration (0.28 sec)

  1. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

     *   <li>{@code maximumWeight=[long]}: sets {@link CacheBuilder#maximumWeight}.
     *   <li>{@code expireAfterAccess=[duration]}: sets {@link CacheBuilder#expireAfterAccess}.
     *   <li>{@code expireAfterWrite=[duration]}: sets {@link CacheBuilder#expireAfterWrite}.
     *   <li>{@code refreshAfterWrite=[duration]}: sets {@link CacheBuilder#refreshAfterWrite}.
     *   <li>{@code weakKeys}: sets {@link CacheBuilder#weakKeys}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilderSpec.java

     *   <li>{@code maximumWeight=[long]}: sets {@link CacheBuilder#maximumWeight}.
     *   <li>{@code expireAfterAccess=[duration]}: sets {@link CacheBuilder#expireAfterAccess}.
     *   <li>{@code expireAfterWrite=[duration]}: sets {@link CacheBuilder#expireAfterWrite}.
     *   <li>{@code refreshAfterWrite=[duration]}: sets {@link CacheBuilder#refreshAfterWrite}.
     *   <li>{@code weakKeys}: sets {@link CacheBuilder#weakKeys}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/metrics.cc

            "SavedModel.");
    
    // 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.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. cmd/bucket-targets.go

    }
    
    type latencyStat struct {
    	lastmin lastMinuteLatency
    	curr    time.Duration
    	avg     time.Duration
    	peak    time.Duration
    	N       int64
    }
    
    func (l *latencyStat) update(d time.Duration) {
    	l.lastmin.add(d)
    	l.N++
    	if d > l.peak {
    		l.peak = d
    	}
    	l.curr = l.lastmin.getTotal().avg()
    	l.avg = time.Duration((int64(l.avg)*(l.N-1) + int64(l.curr)) / l.N)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

      @SuppressWarnings("GoodTime") // duration decomposition
      private static long toNanosSaturated(java.time.Duration duration) {
        // Using a try/catch seems lazy, but the catch block will rarely get invoked (except for
        // durations longer than approximately +/- 292 years).
        try {
          return duration.toNanos();
        } catch (ArithmeticException tooBig) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/time/sleep_test.go

    	const delay = 100 * Millisecond
    	go func() {
    		Sleep(delay / 2)
    		Interrupt()
    	}()
    	start := Now()
    	Sleep(delay)
    	delayadj := adjustDelay(t, delay)
    	duration := Since(start)
    	if duration < delayadj {
    		t.Fatalf("Sleep(%s) slept for only %s", delay, duration)
    	}
    }
    
    // Test the basic function calling behavior. Correct queuing
    // behavior is tested elsewhere, since After and AfterFunc share
    // the same code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. src/cmd/trace/tasks.go

    				Duration:   taskSpan.duration(),
    				ID:         summary.ID,
    				Complete:   summary.Complete(),
    				Events:     events,
    				Start:      taskStart,
    				End:        taskStart + taskSpan.duration(),
    			})
    		}
    		// Sort the tasks by duration.
    		slices.SortFunc(tasks, func(a, b task) int {
    			return cmp.Compare(a.Duration, b.Duration)
    		})
    
    		// Emit table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    	// total final mass will be the duration of the trace itself
    	// minus the window size. Using this, we can compute the mass
    	// corresponding to quantile maxQ.
    	var duration int64
    	for _, s := range c.series {
    		duration1 := s.util[len(s.util)-1].Time - s.util[0].Time
    		if duration1 >= int64(window) {
    			duration += duration1 - int64(window)
    		}
    	}
    	qMass := float64(duration) * maxQ
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/time/time.go

    	}
    	return w
    }
    
    // Nanoseconds returns the duration as an integer nanosecond count.
    func (d Duration) Nanoseconds() int64 { return int64(d) }
    
    // Microseconds returns the duration as an integer microsecond count.
    func (d Duration) Microseconds() int64 { return int64(d) / 1e3 }
    
    // Milliseconds returns the duration as an integer millisecond count.
    func (d Duration) Milliseconds() int64 { return int64(d) / 1e6 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    type fakeMetrics struct {
    	original validation.ValidationMetrics
    	realSum  time.Duration
    }
    
    func (f *fakeMetrics) ObserveRatchetingTime(d time.Duration) {
    	// Hardcode 1 ns duration for testing to exercise all buckets
    	f.original.ObserveRatchetingTime(1 * time.Nanosecond)
    	f.realSum += d
    }
    
    func (f *fakeMetrics) Reset() []metrics.Registerable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top