Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for buildrun (0.34 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    	}
    	if len(f) > 0 {
    		action = f[0]
    		args = f[1:]
    	}
    
    	// TODO: Clean up/simplify this switch statement.
    	switch action {
    	case "compile", "compiledir", "build", "builddir", "buildrundir", "run", "buildrun", "runoutput", "rundir", "runindir", "asmcheck":
    		// nothing to do
    	case "errorcheckandrundir":
    		wantError = false // should be no error if also will run
    	case "errorcheckwithauto":
    		action = "errorcheck"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    			aux:            "SymOff",
    			typ:            "Mem",
    			asm:            "STMY",
    			faultOnNilArg0: true,
    			symEffect:      "Write",
    			clobberFlags:   true, // TODO(mundaym): currently uses AGFI to handle large offsets
    		},
    		{
    			name:      "STM4",
    			argLength: 6,
    			reg: regInfo{inputs: []regMask{
    				ptrsp,
    				buildReg("R1"),
    				buildReg("R2"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		gpg        = gp | buildReg("g")
    		gpsp       = gp | buildReg("SP")
    		gpspg      = gpg | buildReg("SP")
    		gpspsbg    = gpspg | buildReg("SB")
    		fp         = buildReg("F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31")
    		callerSave = gp | fp | buildReg("g") // runtime.setg (and anything calling it) may clobber g
    		r0         = buildReg("R0")
    		r1         = buildReg("R1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    			if strings.HasPrefix(arg, "-test.coverprofile=") {
    				args[i] = "-test.coverprofile=" + coverProfTempFile(a)
    			}
    		}
    	}
    
    	if cfg.BuildN || cfg.BuildX {
    		sh.ShowCmd("", "%s", strings.Join(args, " "))
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    	// Normally, the test will terminate itself when the timeout expires,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    new File(pom.getValue("properties/buildScriptSrc").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target"),
                    new File(pom.getValue("properties/buildOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/classes"),
                    new File(pom.getValue("properties/buildMainOut").toString()));
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    			// Disallow installs to the GOROOT from which testgo was built.
    			// Installs to other GOROOTs — such as one set explicitly within a test — are ok.
    			work.AllowInstall = func(a *work.Action) error {
    				if cfg.BuildN {
    					return nil
    				}
    
    				rel := search.InDir(a.Target, testGOROOT)
    				if rel == "" {
    					return nil
    				}
    
    				callerPos := ""
    				if _, file, line, ok := runtime.Caller(1); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top