Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for grc (0.03 sec)

  1. 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)
  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)
Back to top