Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 435 for goTo (0.12 sec)

  1. 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)
  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. 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)
  4. 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)
  5. src/net/error_test.go

    			return err
    		}
    		nestedErr = err.Err
    		goto second
    	}
    	return fmt.Errorf("unexpected type on 1st nested level: %T", nestedErr)
    
    second:
    	if isPlatformError(nestedErr) {
    		return nil
    	}
    	switch err := nestedErr.(type) {
    	case *os.SyscallError:
    		nestedErr = err.Err
    		goto third
    	case *fs.PathError: // for Plan 9
    		nestedErr = err.Err
    		goto third
    	}
    	switch nestedErr {
    	case ErrClosed:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/version_test.go

    			var err error
    			if len(tc.flag) > 0 {
    				if err = cmd.Flags().Set(flagNameOutput, tc.flag); err != nil {
    					goto error
    				}
    			}
    			buf.Reset()
    			if err = RunVersion(&buf, cmd); err != nil {
    				goto error
    			}
    			if buf.String() == "" {
    				err = errors.New("empty output")
    				goto error
    			}
    			if tc.shouldBeValidYAML {
    				err = yaml.Unmarshal(buf.Bytes(), &iface)
    			} else if tc.shouldBeValidJSON {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. src/math/big/arith_s390x.s

    	ADD   $128, R10           // i += 16
    	SUB   $16, R3             // n -= 16
    	BGE   UU1                 // if n >= 0 goto U1
    	VLGVG $1, V0, R4          // put cf into R4
    	NEG   R4, R4              // save cf
    
    A1:
    	ADD $12, R3 // n += 16
    
    	// s/JL/JMP/ below to disable the unrolled loop
    	BLT v1 // if n < 0 goto v1
    
    U1:  // n >= 0
    	// regular loop body unrolled 4x
    	MOVD 0(R8)(R10*1), R5
    	MOVD 8(R8)(R10*1), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. src/runtime/select.go

    			sg = c.sendq.dequeue()
    			if sg != nil {
    				goto recv
    			}
    			if c.qcount > 0 {
    				goto bufrecv
    			}
    			if c.closed != 0 {
    				goto rclose
    			}
    		} else {
    			if raceenabled {
    				racereadpc(c.raceaddr(), casePC(casi), chansendpc)
    			}
    			if c.closed != 0 {
    				goto sclose
    			}
    			sg = c.recvq.dequeue()
    			if sg != nil {
    				goto send
    			}
    			if c.qcount < c.dataqsiz {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. test/fixedbugs/issue10958.go

    		someglobal1++
    	}
    }
    
    func standinacorner2(i int) {
    	// contains an irreducible loop containing changes to memory
    	if i != 0 {
    		goto midloop
    	}
    
    loop:
    	if someglobal2&1 != 0 {
    		goto done
    	}
    	someglobal2++
    midloop:
    	someglobal2++
    	goto loop
    
    done:
    	return
    }
    
    func standinacorner3() {
    	for someglobal3&1 == 0 {
    		if someglobal3&2 != 0 {
    			for someglobal3&3 == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. test/rangegen.go

    		p(b, "	l%sa := 0\n", s)
    		p(b, "goto L%sa; L%sa:	o.log(`L%sa`)\n", s, s, s)
    		p(b, "	if l%sa++; l%sa >= 2 { o.log(`loop L%sa`); return -1 }\n", s, s, s)
    		p(b, "	l%sfor := 0\n", s)
    		p(b, "goto L%sfor; L%sfor: for f := 0; f < 1; f++ { o.log(`L%sfor`)\n", s, s, s)
    		p(b, "	if l%sfor++; l%sfor >= 2 { o.log(`loop L%sfor`); return -1 }\n", s, s, s)
    		p(b, "	l%ssw := 0\n", s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top