Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 102 of 102 for selectgo (0.43 sec)

  1. src/cmd/go/internal/test/test.go

    // runTestActor is the actor for running a test.
    type runTestActor struct {
    	c runCache
    
    	// writeCoverMetaAct points to the pseudo-action for collecting
    	// coverage meta-data files for selected -cover test runs. See the
    	// comment in runTest at the definition of writeCoverMetaAct for
    	// more details.
    	writeCoverMetaAct *work.Action
    
    	// sequencing of json start messages, to preserve test order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			expr = &ast.CallExpr{Fun: expr}
    		}
    	case ctxSelector:
    		if r.Name.Kind == "var" {
    			expr = &ast.StarExpr{Star: (*r.Expr).Pos(), X: expr}
    		} else {
    			error_(r.Pos(), "only C variables allowed in selector expression %s", fixGo(r.Name.Go))
    		}
    	case ctxType:
    		if r.Name.Kind != "type" {
    			error_(r.Pos(), "expression C.%s used as type", fixGo(r.Name.Go))
    		} else if r.Name.Type == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top