Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 505 for goTo (0.16 sec)

  1. apache-maven/src/assembly/shared/mvnvalidate.cmd

    :chkMHome
    set "MAVEN_HOME=%~dp0"
    set "MAVEN_HOME=%MAVEN_HOME:~0,-5%"
    if "%MAVEN_HOME%"=="" goto error
    
    :checkMCmd
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 166 bytes
    - Viewed (0)
  2. apache-maven/src/assembly/shared/validate.cmd

    if exist "%USERPROFILE%\mavenrc.cmd" call "%USERPROFILE%\mavenrc.cmd" %*
    :skipRc
    
    @setlocal
    
    set ERROR_CODE=0
    
    @REM ==== START VALIDATION ====
    if not "%JAVA_HOME%"=="" goto javaHomeSet
    for %%i in (java.exe) do set "JAVACMD=%%~$PATH:i"
    goto checkJavaCmd
    
    :javaHomeSet
    set "JAVACMD=%JAVA_HOME%\bin\java.exe"
    
    if not exist "%JAVACMD%" (
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/shared/run.cmd

      "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
      %LAUNCHER_CLASS% ^
      %MAVEN_ARGS% ^
      %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
    @REM check for post script, once with legacy .bat ending and once with .cmd ending
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue19678.go

    // license that can be found in the LICENSE file.
    
    // Used to crash when compiling functions containing
    // forward refs in dead code.
    
    package p
    
    var f func(int)
    
    func g() {
    l1:
    	i := 0
    	goto l1
    l2:
    	f(i)
    	goto l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:00:15 UTC 2017
    - 337 bytes
    - Viewed (0)
  5. test/fixedbugs/issue19783.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func Spin() {
    l1:
    	for true {
    		goto l1
    	l2:
    		if true {
    			goto l2
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 17:06:08 UTC 2017
    - 260 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/shortcircuit_test.go

    			Valu("arg2", OpArg, c.config.Types.Int64, 0, nil),
    			Valu("arg3", OpArg, c.config.Types.Int64, 0, nil),
    			Goto("b1")),
    		Bloc("b1",
    			Valu("cmp1", OpLess64, c.config.Types.Bool, 0, nil, "arg1", "arg2"),
    			If("cmp1", "b2", "b3")),
    		Bloc("b2",
    			Valu("cmp2", OpLess64, c.config.Types.Bool, 0, nil, "arg2", "arg3"),
    			Goto("b3")),
    		Bloc("b3",
    			Valu("phi2", OpPhi, c.config.Types.Bool, 0, nil, "cmp1", "cmp2"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc_test.go

    			Eq("v11", "b2", "b4"),
    		),
    		Bloc("b4",
    			Goto("b3"),
    		),
    		Bloc("b3",
    			Valu("v14", OpPhi, types.TypeMem, 0, nil, "v1", "v12"),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("v16", OpARM64MOVDstore, types.TypeMem, 0, nil, "v8", "sb", "v14"),
    			Exit("v16"),
    		),
    		Bloc("b2",
    			Valu("v12", OpARM64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "v1"),
    			Goto("b3"),
    		),
    	)
    	regalloc(f.f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. test/fixedbugs/bug137.go

    package main
    
    func main() {
    L1:
    L2:
    	for i := 0; i < 10; i++ {
    		print(i)
    		break L2
    	}
    
    L3:
    	;
    L4:
    	for i := 0; i < 10; i++ {
    		print(i)
    		break L4
    	}
    	goto L1
    	goto L3
    }
    
    /*
    bug137.go:9: break label is not defined: L2
    bug137.go:15: break label is not defined: L4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 440 bytes
    - Viewed (0)
  9. test/fixedbugs/issue63955.go

    	if v := try(); v == 42 || v == 1337 { // the two || are to trick findIndVar
    		if n < 30 { // this aims to be the matched block
    			if shouldInc() {
    				n++
    				goto loop
    			}
    			n = N(n) // try to prevent some block joining
    			goto loop
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 578 bytes
    - Viewed (0)
  10. test/fixedbugs/bug005.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	Foo: {
    		return;
    	}
    	goto Foo;
    }
    /*
    bug5.go:4: Foo undefined
    bug5.go:4: fatal error: walktype: switch 1 unknown op GOTO l(4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 325 bytes
    - Viewed (0)
Back to top