Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 505 for goTo (0.04 sec)

  1. gradlew.bat

    set DEFAULT_JVM_OPTS=-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"
    
    @rem Find java.exe
    if defined JAVA_HOME goto findJavaFromJavaHome
    
    set JAVA_EXE=java.exe
    %JAVA_EXE% -version >NUL 2>&1
    if %ERRORLEVEL% equ 0 goto execute
    
    echo. 1>&2
    echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
    echo. 1>&2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:31:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. gradlew.bat

    @rem Find java.exe
    if defined JAVA_HOME goto findJavaFromJavaHome
    
    set JAVA_EXE=java.exe
    %JAVA_EXE% -version >NUL 2>&1
    if %ERRORLEVEL% equ 0 goto execute
    
    echo.
    echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
    echo.
    echo Please set the JAVA_HOME variable in your environment to match the
    echo location of your Java installation.
    
    goto fail
    
    :findJavaFromJavaHome
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Nov 25 16:14:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    set DEFAULT_JVM_OPTS=${defaultJvmOpts}
    
    @rem Find java.exe
    if defined JAVA_HOME goto findJavaFromJavaHome
    
    set JAVA_EXE=java.exe
    %JAVA_EXE% -version >NUL 2>&1
    if %ERRORLEVEL% equ 0 goto execute
    
    echo. 1>&2
    echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
    echo. 1>&2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/regexp/backtrack.go

    				pc = inst.Arg
    				pos = b.end
    				goto CheckAndLoop
    			}
    			// inst.Out is the match - non-greedy
    			b.push(re, inst.Out, b.end, false)
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstRune:
    			r, width := i.step(pos)
    			if !inst.MatchRune(r) {
    				continue
    			}
    			pos += width
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstRune1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    // 	_ = b
    // 	b = x & 1
    // 	x = x >> 1
    // 	if b != 0 {
    // 		goto C
    // 	}
    // 	goto B
    // B:
    // 	glob_ = !glob_
    // 	y += 1
    // 	b = x & 1
    // 	x = x >> 1
    // 	if b != 0 {
    // 		goto D
    // 	}
    // 	goto C
    // C:
    // 	glob_ = !glob_
    // 	// no y increment
    // 	b = x & 1
    // 	x = x >> 1
    // 	if b != 0 {
    // 		goto E
    // 	}
    // 	goto B
    // D:
    // 	glob_ = !glob_
    // 	y += 10
    // 	b = x & 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15585.go

    		E:
    			if c != -1 {
    				p = ^(l | c | r)
    			} else {
    				rc++
    				goto R
    			}
    		L:
    			if p != 0 {
    				lsb := p & -p
    				p &^= lsb
    				ll[d], cc[d], rr[d], pp[d] = l, c, r, p
    				l, c, r = (l|lsb)<<1, c|lsb, (r|lsb)>>1
    				d++
    				goto E
    			}
    		R:
    			d--
    			if d >= 0 {
    				l, c, r, p = ll[d], cc[d], rr[d], pp[d]
    				goto L
    			}
    		}
    	}
    	rc <<= 1
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 18:35:44 UTC 2016
    - 829 bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    	add element ip testing service-ips { 172.30.0.42 . tcp . 80 : goto service-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-ips { 192.168.99.22 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-ips { 1.2.3.4 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-nodeports { tcp . 3001 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadcode_test.go

    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("cond", OpConstBool, c.config.Types.Bool, 0, nil),
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			If("cond", "then", "else")),
    		Bloc("then",
    			Goto("exit")),
    		Bloc("else",
    			Goto("exit")),
    		Bloc("exit",
    			Exit("mem")))
    
    	CheckFunc(fun.f)
    	Opt(fun.f)
    	Deadcode(fun.f)
    	CheckFunc(fun.f)
    
    	if fun.blocks["entry"].Kind != BlockPlain {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  9. test/label.go

    	f()
    	if x == 20 {
    		goto L6
    	}
    
    L7:
    	for {
    		break L7
    	}
    
    L8:
    	for {
    		if x == 21 {
    			continue L8
    		}
    	}
    
    L9:
    	switch {
    	case true:
    		break L9
    	defalt: // ERROR "label .*defalt.* defined and not used"
    	}
    
    L10:
    	select {
    	default:
    		break L10
    	}
    
    	goto L10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. src/math/big/arith_amd64.s

    	ADDQ $4, SI		// i += 4
    	SUBQ $4, DI		// n -= 4
    	JGE U1			// if n >= 0 goto U1
    
    V1:	ADDQ $4, DI		// n += 4
    	JLE E1			// if n <= 0 goto E1
    
    L1:	// n > 0
    	ADDQ CX, CX		// restore CF
    	MOVQ 0(R8)(SI*8), R11
    	ADCQ 0(R9)(SI*8), R11
    	MOVQ R11, 0(R10)(SI*8)
    	SBBQ CX, CX		// save CF
    
    	ADDQ $1, SI		// i++
    	SUBQ $1, DI		// n--
    	JG L1			// if n > 0 goto L1
    
    E1:	NEGQ CX
    	MOVQ CX, c+72(FP)	// return c
    	RET
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top