Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for grc (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting_test.go

    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    }
    
    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:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    	grc := &waitGroupCounter{}
    
    	if r == nil {
    		r = rand.New(rand.NewSource(time.Now().UnixNano()))
    		r.Uint64()
    		r.Uint64()
    		r.Uint64()
    	}
    	return &Fake{
    		FakePassiveClock: *baseclocktest.NewFakePassiveClock(t),
    		clientWG:         grc,
    		fuzz:             fuzz,
    		rand:             r,
    	}, grc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/pack/pack.go

    )
    
    // setOp parses the operation string (first argument).
    func setOp(arg string) {
    	// Recognize 'go tool pack grc' because that was the
    	// formerly canonical way to build a new archive
    	// from a set of input files. Accepting it keeps old
    	// build systems working with both Go 1.2 and Go 1.3.
    	if arg == "grc" {
    		arg = "c"
    	}
    
    	for _, r := range arg {
    		switch r {
    		case 'c', 'p', 'r', 't', 'x':
    			if op != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/pack/pack_test.go

    	testenv.WriteImportcfg(t, importcfgfile, nil, hello)
    
    	goBin := testenv.GoToolPath(t)
    	run(goBin, "tool", "compile", "-importcfg="+importcfgfile, "-p=main", "hello.go")
    	run(packPath(t), "grc", "hello.a", "hello.o")
    	run(goBin, "tool", "link", "-importcfg="+importcfgfile, "-o", "a.out", "hello.a")
    	out := run("./a.out")
    	if out != "hello world\n" {
    		t.Fatalf("incorrect output: %q, want %q", out, "hello world\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Addresses: []k8sv1.GatewayStatusAddress{
    				{
    					Type:  &addrType,
    					Value: ip,
    				},
    			},
    		}
    	}
    	s.grc.CreateOrUpdate(&gateway)
    }
    
    func (s *ambientTestServer) deleteWaypoint(t *testing.T, name string) {
    	t.Helper()
    	s.grc.Delete(name, testNS)
    }
    
    func (s *ambientTestServer) addPods(t *testing.T, ip string, name, sa string, labels map[string]string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	executions, rejects                                                                    []int32
    }
    
    func (uss *uniformScenarioState) exercise() {
    	uss.t.Logf("%s: Start %s, doSplit=%v, clk=%p, grc=%p", uss.startTime.Format(nsTimeFmt), uss.name, uss.doSplit, uss.clk, uss.counter)
    	if uss.evalInqueueMetrics || uss.evalExecutingMetrics {
    		metrics.Reset()
    	}
    	for i, uc := range uss.clients {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. gradle/verification-keyring.keys

    qmAqw1YDHuAQyhXR7gUCYiljvgIbAgUJC0c1AACBCRADHuAQyhXR7nYgBBkWCgAd
    FiEEymLtEw5AU5REBt9kAYG0XqWGd7wFAmIpY74ACgkQAYG0XqWGd7ybZwD9GwWy
    JHsZQyq03sk1t2ofildktfzowN1r7WWWHTnp4E4BAOxcRkMUwhKS+2p4OrRH99+W
    8lO9M/grc+FW2qMgkFINAIYA/0i3vicrcWiGMPlVe1rxo/VM6BBV6qOsAHbvp2BE
    HMPnAQDYBQo0KYBhEAiBCI2Pza5JWZzM15RymdQG/OSk7lgkBA==
    =3N8W
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    0374CF2E8DD1BDFD
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
Back to top