Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for Microseconds (0.21 sec)

  1. pkg/kubelet/cm/helpers_linux_test.go

    }
    
    func TestResourceConfigForPodWithCustomCPUCFSQuotaPeriod(t *testing.T) {
    	defaultQuotaPeriod := uint64(100 * time.Millisecond / time.Microsecond) // in microseconds
    	tunedQuotaPeriod := uint64(5 * time.Millisecond / time.Microsecond)     // in microseconds
    	tunedQuota := int64(1 * time.Millisecond / time.Microsecond)
    
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, pkgfeatures.CPUCFSQuotaPeriod, true)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics.cc

    }  // namespace
    
    // Counter that records how long it took to execute the checkpoint sharding
    // callback in microseconds.
    auto* sharding_callback_duration = monitoring::Counter<0>::New(
        "/tensorflow/core/checkpoint/sharding/callback_duration",
        "Sharding callback execution duration in microseconds.");
    
    // Counter that records how many checkpoint shard files were written during
    // saving.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/StopwatchTest.java

      }
    
      public void testElapsed_micros() {
        stopwatch.start();
        ticker.advance(999);
        assertEquals(0, stopwatch.elapsed(MICROSECONDS));
        ticker.advance(1);
        assertEquals(1, stopwatch.elapsed(MICROSECONDS));
      }
    
      public void testElapsed_millis() {
        stopwatch.start();
        ticker.advance(999999);
        assertEquals(0, stopwatch.elapsed(MILLISECONDS));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/http-basic-auth.md

    #### The time to answer helps the attackers
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/time/example_test.go

    	// Output: I've got 4.5 hours of work left.
    }
    
    func ExampleDuration_Microseconds() {
    	u, _ := time.ParseDuration("1s")
    	fmt.Printf("One second is %d microseconds.\n", u.Microseconds())
    	// Output:
    	// One second is 1000000 microseconds.
    }
    
    func ExampleDuration_Milliseconds() {
    	u, _ := time.ParseDuration("1s")
    	fmt.Printf("One second is %d milliseconds.\n", u.Milliseconds())
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.cc

        "/tensorflow/cc/saved_model/load_latency",
        "Latency in microseconds for SavedModels that were successfully loaded.",
        "model_path");
    auto* load_latency_by_stage = monitoring::Sampler<2>::New(
        {
            "/tensorflow/cc/saved_model/load_latency_by_stage",  // metric name
            "Distribution of wall time spent (in microseconds) in each stage "
            "(restore graph from disk, run init graph op, etc) when loading the "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.h

                                            int64_t filesize);
    
    // Returns "/tensorflow/core/checkpoint/sharding/callback_duration" cell which
    // describes how long it took to execute the checkpoint sharding callback in
    // microseconds.
    monitoring::CounterCell& ShardingCallbackDuration();
    
    // Returns "/tensorflow/core/checkpoint/sharding/num_checkpoint_shards_written"
    // cell which describes how many checkpoint shard files were written during
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. cmd/metrics-v3-system-drive.go

    	labels = append(labels, "api", "")
    	lastIdx := len(labels) - 1
    	for apiName, latency := range disk.Metrics.LastMinute {
    		labels[lastIdx] = "storage." + apiName
    		m.Set(driveAPILatencyMicros, float64(latency.Avg().Microseconds()),
    			labels...)
    	}
    }
    
    func (m *MetricValues) setDriveIOStatMetrics(ioStats driveIOStatMetrics, labels []string) {
    	m.Set(driveReadsPerSec, ioStats.readsPerSec, labels...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

      private var nextQueueName = 10000
      private var coordinatorWaiting = false
      private var coordinatorWakeUpAt = 0L
    
      /**
       * When we need a new thread to run tasks, we call [Backend.execute]. A few microseconds later we
       * expect a newly-started thread to call [Runnable.run]. We shouldn't request new threads until
       * the already-requested ones are in service, otherwise we might create more threads than we need.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. 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)
Back to top