Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for clkw (0.04 sec)

  1. src/cmd/internal/obj/arm64/anames.go

    	"CASPD",
    	"CASPW",
    	"CASW",
    	"CBNZ",
    	"CBNZW",
    	"CBZ",
    	"CBZW",
    	"CCMN",
    	"CCMNW",
    	"CCMP",
    	"CCMPW",
    	"CINC",
    	"CINCW",
    	"CINV",
    	"CINVW",
    	"CLREX",
    	"CLS",
    	"CLSW",
    	"CLZ",
    	"CLZW",
    	"CMN",
    	"CMNW",
    	"CMP",
    	"CMPW",
    	"CNEG",
    	"CNEGW",
    	"CRC32B",
    	"CRC32CB",
    	"CRC32CH",
    	"CRC32CW",
    	"CRC32CX",
    	"CRC32H",
    	"CRC32W",
    	"CRC32X",
    	"CSEL",
    	"CSELW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	metrics.Reset()
    	now := time.Now()
    	clk, counter := testeventclock.NewFake(now, 0, nil)
    	qsf := newTestableQueueSetFactory(clk, countingPromiseFactoryFactory(counter))
    	qCfg := fq.QueuingConfig{
    		Name:             "TestTotalRequestsExecutingWithPanic",
    		DesiredNumQueues: 0,
    	}
    	qsc, err := qsf.BeginConstruction(qCfg, newGaugePair(clk), newExecSeatsGauge(clk), fq.NewNamedIntegrator(clk, qCfg.Name))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    		t.Error(err)
    	}
    	exerciseTimingRatioHistogram(t, testHistogramName, t0, clk, registry, tro)
    }
    
    func TestTimingRatioHistogramVecElementSafeEarly(t *testing.T) {
    	testHistogramName := "vec_element_safe_early"
    	t0 := time.Now()
    	clk := testclock.NewFakePassiveClock(t0)
    	buckets := []float64{0, 1}
    	vec := NewTestableTimingRatioHistogramVec(clk.Now,
    		&compbasemetrics.TimingHistogramOpts{Name: testHistogramName, Buckets: buckets},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator_test.go

    import (
    	"math"
    	"testing"
    	"time"
    
    	testclock "k8s.io/utils/clock/testing"
    )
    
    func TestIntegrator(t *testing.T) {
    	now := time.Now()
    	clk := testclock.NewFakeClock(now)
    	igr := NewNamedIntegrator(clk, "testee")
    	igr.Add(3)
    	clk.Step(time.Second)
    	results := igr.GetResults()
    	rToo := igr.Reset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 27 21:11:44 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration_test.go

    			t.Error("expected values to be initialized to 0")
    		}
    
    		for _, d := range tc.Durations {
    			wd.MutatingWebhookTracker.Track(func() { clk.Step(d) })
    			wd.ValidatingWebhookTracker.Track(func() { clk.Step(d) })
    			wd.APFQueueWaitTracker.Track(func() { clk.Step(d) })
    		}
    
    		wd, ok = LatencyTrackersFrom(ctx)
    		if !ok {
    			t.Errorf("expected webhook duration to be initialized")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:15:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    			informerFactory := informers.NewSharedInformerFactory(clientset, time.Second)
    			flowcontrolClient := clientset.FlowcontrolV1()
    			clk := eventclock.Real{}
    			controller := newTestableController(TestableConfig{
    				Name:                   "Controller",
    				Clock:                  clk,
    				AsFieldManager:         ConfigConsumerAsFieldManager,
    				FoundToDangling:        func(found bool) bool { return !found },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting_test.go

    }
    
    func goGetExpectNotYet(t *testing.T, clk *testeventclock.Fake, grc counter.GoRoutineCounter, wr promise.WriteOnce, gots chan interface{}, trigger string) {
    	grc.Add(1) // count the following goroutine
    	go func() {
    		defer grc.Add(-1) // count completion of this goroutine
    		gots <- wr.Get()
    	}()
    	clk.Run(nil)
    	select {
    	case <-gots:
    		t.Errorf("Get returned before %s", trigger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/max_seats_test.go

    			flowcontrolClient := clientset.FlowcontrolV1()
    			startTime := time.Now()
    			clk, _ := eventclock.NewFake(startTime, 0, nil)
    			c := newTestableController(TestableConfig{
    				Name:              "Controller",
    				Clock:             clk,
    				InformerFactory:   informerFactory,
    				FlowcontrolClient: flowcontrolClient,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    	flowcontrolClient := clientset.FlowcontrolV1()
    	startTime := time.Now()
    	clk, _ := eventclock.NewFake(startTime, 0, nil)
    	controller := newTestableController(TestableConfig{
    		Name:                   "Controller",
    		Clock:                  clk,
    		AsFieldManager:         ConfigConsumerAsFieldManager,
    		FoundToDangling:        func(found bool) bool { return !found },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. test/codegen/mathbits.go

    	// 386:"BSFL"
    	// arm:"CLZ"
    	// arm64:"RBITW","CLZW"
    	// s390x:"FLOGR","MOVWZ"
    	// ppc64x/power8:"ANDN","POPCNTW"
    	// ppc64x/power9: "CNTTZW"
    	// wasm:"I64Ctz"
    	return bits.TrailingZeros32(n)
    }
    
    func TrailingZeros16(n uint16) int {
    	// amd64:"BSFL","ORL\\t\\$65536"
    	// 386:"BSFL\t"
    	// arm:"ORR\t\\$65536","CLZ",-"MOVHU\tR"
    	// arm64:"ORR\t\\$65536","RBITW","CLZW",-"MOVHU\tR",-"RBIT\t",-"CLZ\t"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top