Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for grc (0.02 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. 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)
Back to top