Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 567 for goio (0.08 sec)

  1. hack/_update-generated-protobuf-dockerized.sh

    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo
    
    # requires the 'proto' tag to build (will remove when ready)
    # searches for the protoc-gen-gogo extension in the output directory
    # satisfies import of github.com/gogo/protobuf/gogoproto/gogo.proto and the
    # core Google protobuf types
    PATH="${KUBE_ROOT}/_output/bin:${PATH}" \
      go-to-protobuf \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/internal/trace/summary.go

    		Tasks:      s.tasks,
    	}
    }
    
    // RelatedGoroutinesV2 finds a set of goroutines related to goroutine goid for v2 traces.
    // The association is based on whether they have synchronized with each other in the Go
    // scheduler (one has unblocked another).
    func RelatedGoroutinesV2(events []Event, goid GoID) map[GoID]struct{} {
    	// Process all the events, looking for transitions of goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/internal/trace/resources.go

    // P in particular.
    const NoProc = ProcID(-1)
    
    // GoID is the runtime-internal G structure's goid field. This is unique
    // for each goroutine.
    type GoID int64
    
    // NoGoroutine indicates that the relevant events don't correspond to any
    // goroutine in particular.
    const NoGoroutine = GoID(-1)
    
    // GoState represents the state of a goroutine.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b21.Event("GoStart", trace.GoID(1), testgen.Seq(2))
    
    	// The goroutine starts running, then stops, then starts again.
    	b20 := g2.Batch(trace.ThreadID(0), 5)
    	b20.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b20.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunnable)
    	b20.Event("GoStart", trace.GoID(1), testgen.Seq(1))
    	b20.Event("GoStop", "whatever", testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top