Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 315 for Toto (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. 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)
Back to top