Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for Microseconds (0.14 sec)

  1. src/runtime/mgclimit_test.go

    		}
    
    		// Test transitioning the bucket to enable the GC.
    
    		l.StartGCTransition(true, advance(109*time.Millisecond))
    		l.FinishGCTransition(advance(2*time.Millisecond + 1*time.Microsecond))
    
    		if expect := uint64((2*time.Millisecond + 1*time.Microsecond) * procs); l.Fill() != expect {
    			t.Fatalf("expected fill of %d, got %d cpu-ns", expect, l.Fill())
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. tests/test_jsonable_encoder.py

        class ModelWithCustomEncoder(BaseModel):
            dt_field: datetime
    
            @field_serializer("dt_field")
            def serialize_dt_field(self, dt):
                return dt.replace(microsecond=0, tzinfo=timezone.utc).isoformat()
    
        class ModelWithCustomEncoderSubclass(ModelWithCustomEncoder):
            pass
    
        model = ModelWithCustomEncoder(dt_field=datetime(2019, 1, 1, 8))
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/lockedfile/transform_test.go

    	}
    	const parallel = 32
    
    	var sem = make(chan bool, parallel)
    
    	for n := attempts; n > 0; n-- {
    		sem <- true
    		go func() {
    			defer func() { <-sem }()
    
    			time.Sleep(time.Duration(rand.Intn(100)) * time.Microsecond)
    			chunkWords := roundDownToPowerOf2(rand.Intn(maxChunkWords) + 1)
    			offset := rand.Intn(chunkWords)
    
    			err := lockedfile.Transform(path, func(data []byte) (chunk []byte, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/timestruct.go

    func TimevalToNsec(tv Timeval) int64 { return tv.Nano() }
    
    // NsecToTimeval converts a number of nanoseconds into a Timeval.
    func NsecToTimeval(nsec int64) Timeval {
    	nsec += 999 // round up to microsecond
    	usec := nsec % 1e9 / 1e3
    	sec := nsec / 1e9
    	if usec < 0 {
    		usec += 1e6
    		sec--
    	}
    	return setTimeval(sec, usec)
    }
    
    // Unix returns the time stored in ts as seconds plus nanoseconds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/sync/mutex_test.go

    	defer close(stop)
    	go func() {
    		for {
    			mu.Lock()
    			time.Sleep(100 * time.Microsecond)
    			mu.Unlock()
    			select {
    			case <-stop:
    				return
    			default:
    			}
    		}
    	}()
    	done := make(chan bool, 1)
    	go func() {
    		for i := 0; i < 10; i++ {
    			time.Sleep(100 * time.Microsecond)
    			mu.Lock()
    			mu.Unlock()
    		}
    		done <- true
    	}()
    	select {
    	case <-done:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 21:25:35 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    	}
    	funcs[reflect.TypeOf(&metav1.MicroTime{})] = func(s string, i int, obj interface{}) {
    		// use the integer as an offset from the year, and as a microsecond
    		obj.(*metav1.MicroTime).Time = time.Date(2000+i, 1, 1, 1, 1, 1, i*int(time.Microsecond), time.UTC)
    	}
    	funcs[reflect.TypeOf(&intstr.IntOrString{})] = func(s string, i int, obj interface{}) {
    		// use the string as a string value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/testprog/main.go

    	var s [][]byte
    	for i := 0; ; i++ {
    		if i%1000 == 0 {
    			if time.Since(start) > dt {
    				return
    			}
    			// Take a break... this will generate a ton of events otherwise.
    			time.Sleep(50 * time.Microsecond)
    		}
    		s = append(s, make([]byte, 1024))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	},
    	DefaultUnit: Unit{"B", []string{"b", "byte"}, 1},
    }, {
    	Units: []Unit{
    		{"ns", []string{"ns", "nanosecond"}, float64(time.Nanosecond)},
    		{"us", []string{"μs", "us", "microsecond"}, float64(time.Microsecond)},
    		{"ms", []string{"ms", "millisecond"}, float64(time.Millisecond)},
    		{"s", []string{"s", "sec", "second"}, float64(time.Second)},
    		{"hrs", []string{"hour", "hr"}, float64(time.Hour)},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pkg/kubelet/nodeshutdown/systemd/inhibit_linux_test.go

    	bus := DBusCon{
    		SystemBus: &fakeSystemDBus{
    			fakeDBusObject: &fakeDBusObject{
    				properties: map[string]interface{}{
    					"org.freedesktop.login1.Manager.InhibitDelayMaxUSec": uint64(thirtySeconds / time.Microsecond),
    				},
    			},
    		},
    	}
    
    	delay, err := bus.CurrentInhibitDelay()
    	assert.NoError(t, err)
    	assert.Equal(t, thirtySeconds, delay)
    }
    
    func TestInhibitShutdown(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 19:50:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/log/uds_test.go

    		// Clean up all the mssages, and log again. Check that buffer is cleaned up properly.
    		srv.messages = make([]string, 0)
    		yesterday := time.Now().Add(-time.Hour * 24).Truncate(time.Microsecond)
    		defaultScope.LogWithTime(InfoLevel, "test3", yesterday)
    		Sync()
    		// There should only be one message in the buffer
    		if got, want := len(srv.messages), 1; got != want {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top