Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStdout (0.25 sec)

  1. .github/workflows/CheckBadMerge.groovy

            return getStdout("git branch -r --contains $commit")
                .readLines()
                .collect { it.replace("*", "") } // remove the * from the current branch, e.g. * master -> master
                .collect { it.trim() }
                .grep { !it.isEmpty() }
        }
    
        static List<String> parentCommitsOf(String commit) {
            return getStdout("git show --format=%P --no-patch $commit")
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  2. misc/ios/go_ios_exec.go

    while True:
    	if not listener.WaitForEvent(1, event):
    		continue
    	if not lldb.SBProcess.EventIsProcessEvent(event):
    		continue
    	if running:
    		# Pass through stdout and stderr.
    		while True:
    			out = process.GetSTDOUT(8192)
    			if not out:
    				break
    			sys.stdout.write(out)
    		while True:
    			out = process.GetSTDERR(8192)
    			if not out:
    				break
    			sys.stderr.write(out)
    	state = process.GetStateFromEvent(event)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top