Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for microsecond (0.51 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. src/os/timeout_test.go

    		50 * time.Nanosecond,
    		100 * time.Nanosecond,
    		200 * time.Nanosecond,
    		500 * time.Nanosecond,
    		750 * time.Nanosecond,
    		1 * time.Microsecond,
    		5 * time.Microsecond,
    		25 * time.Microsecond,
    		250 * time.Microsecond,
    		500 * time.Microsecond,
    		1 * time.Millisecond,
    		5 * time.Millisecond,
    		100 * time.Millisecond,
    		250 * time.Millisecond,
    		500 * time.Millisecond,
    		1 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    		b.Skip("skipping: GOMAXPROCS=1")
    	}
    
    	wakeDelay := 5 * time.Microsecond
    	for _, delay := range []time.Duration{
    		0,
    		1 * time.Microsecond,
    		2 * time.Microsecond,
    		5 * time.Microsecond,
    		10 * time.Microsecond,
    		20 * time.Microsecond,
    		50 * time.Microsecond,
    		100 * time.Microsecond,
    	} {
    		b.Run(delay.String(), func(b *testing.B) {
    			if b.N == 0 {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/core/validation/events_test.go

    		Name  string
    		Old   metav1.MicroTime
    		New   metav1.MicroTime
    		Valid bool
    	}{
    		{
    			Name:  "noop microsecond precision",
    			Old:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			New:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			Valid: true,
    		},
    		{
    			Name:  "noop nanosecond precision",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  6. src/net/timeout_test.go

    		50 * time.Nanosecond,
    		100 * time.Nanosecond,
    		200 * time.Nanosecond,
    		500 * time.Nanosecond,
    		750 * time.Nanosecond,
    		1 * time.Microsecond,
    		5 * time.Microsecond,
    		25 * time.Microsecond,
    		250 * time.Microsecond,
    		500 * time.Microsecond,
    		1 * time.Millisecond,
    		5 * time.Millisecond,
    		100 * time.Millisecond,
    		250 * time.Millisecond,
    		500 * time.Millisecond,
    		1 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/wait/loop_test.go

    			t.Errorf("unexpected error: %v", err)
    		}
    	}()
    
    	for !fakeClock.HasWaiters() {
    		time.Sleep(time.Microsecond)
    	}
    
    	fakeClock.Step(time.Second - time.Millisecond)
    	if attempt != 0 {
    		t.Fatalf("should still be waiting for condition")
    	}
    	fakeClock.Step(2 * time.Millisecond)
    
    	select {
    	case <-doneCh:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:48:08 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_test.go

    func TestMicroTimeUnmarshalJSONAndProtoEqual(t *testing.T) {
    	cases := []struct {
    		name   string
    		input  MicroTime
    		result bool
    	}{
    		{"nanosecond level precision", UnixMicro(123, 123123123), true},
    		{"microsecond level precision", UnixMicro(123, 123123000), true},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			jsonData, err := c.input.MarshalJSON()
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		f := ConditionFunc(func() (bool, error) {
    			ch <- struct{}{}
    			select {
    			case <-done:
    				return true, nil
    			default:
    			}
    			return false, nil
    		})
    
    		if err := PollInfinite(time.Microsecond, f); err != nil {
    			errc <- fmt.Errorf("unexpected error %v", err)
    		}
    
    		close(ch)
    		complete <- struct{}{}
    	}()
    
    	// ensure the condition is opened
    	<-ch
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  10. src/time/sleep_test.go

    	)
    
    	wg.Add(2)
    	go func() {
    		for !stop.Load() {
    			c <- true
    		}
    		close(c)
    		wg.Done()
    	}()
    	go func() {
    		for range c {
    		}
    		wg.Done()
    	}()
    
    	AfterFunc(1*Microsecond, func() { stop.Store(true) })
    	wg.Wait()
    }
    
    func benchmark(b *testing.B, bench func(*testing.PB)) {
    	// Create equal number of garbage timers on each P before starting
    	// the benchmark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top