Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xcTest (0.08 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    				// To parse the expression starting with name, expand
    				// the call sequence we would get by passing in name
    				// to parser.expr, and pass in name to parser.pexpr.
    				p.xnest++
    				x = p.binaryExpr(p.pexpr(x, false), 0)
    				p.xnest--
    			}
    			// Analyze expression x. If we can split x into a type parameter
    			// name, possibly followed by a type parameter type, we consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	}
    }
    
    func TestTestSkipVetAfterFailedBuild(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	tg.tempFile("x_test.go", `package x
    		func f() {
    			return 1
    		}
    	`)
    
    	tg.runFail("test", tg.path("x_test.go"))
    	tg.grepStderrNot(`vet`, "vet should be skipped after the failed build")
    }
    
    func TestTestVetRebuild(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. go.sum

    github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
    github.com/dchest/siphash v1.2.3 h1:QXwFc8cFOR2dSa/gE6o/HokBMWtLUaNDVd+22aKHeEA=
    github.com/dchest/siphash v1.2.3/go.mod h1:0NvQU092bT0ipiFN++/rXm69QG9tVxLAlQHIXMPAkHc=
    github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
Back to top