Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 342 for STDIN (0.06 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/CapturingUserInputCrossVersionSpec.groovy

        }
    
        private void runBuildWithStandardInput(ProjectConnection connection) {
            def build = basicBuildConfiguration(connection)
    
            def stdin = new PipedInputStream()
            def stdinWriter = new PipedOutputStream(stdin)
    
            build.standardInput = stdin
    
            def resultHandler = new TestResultHandler()
            build.run(resultHandler)
    
            poll(60) {
                assert getOutput().contains(PROMPT)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/stdin1.input

    	//gofmt -stdin
    
    	if x {
    		y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 32 bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/stdin5.input

    //gofmt -stdin
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 17:18:00 UTC 2014
    - 54 bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/eintr.go

    	go func() {
    		defer wg.Done()
    		cmd := exec.Command(os.Args[0], "Block")
    		stdin, err := cmd.StdinPipe()
    		if err != nil {
    			log.Fatal(err)
    		}
    		cmd.Stderr = new(bytes.Buffer)
    		cmd.Stdout = cmd.Stderr
    		if err := cmd.Start(); err != nil {
    			log.Fatal(err)
    		}
    
    		go func() {
    			sendSomeSignals()
    			stdin.Close()
    		}()
    
    		if err := cmd.Wait(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodAttachOptions.json

    {
      "kind": "PodAttachOptions",
      "apiVersion": "v1",
      "stdin": true,
      "stdout": true,
      "stderr": true,
      "tty": true,
      "container": "containerValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 155 bytes
    - Viewed (0)
  6. src/cmd/go/internal/toolchain/exec.go

    	// to allow testing this code even when not on Windows.
    	if godebug.New("#gotoolchainexec").Value() == "0" || runtime.GOOS == "windows" {
    		cmd := exec.Command(exe, os.Args[1:]...)
    		cmd.Stdin = os.Stdin
    		cmd.Stdout = os.Stdout
    		cmd.Stderr = os.Stderr
    		err := cmd.Run()
    		if err != nil {
    			if e, ok := err.(*exec.ExitError); ok && e.ProcessState != nil {
    				if e.ProcessState.Exited() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodExecOptions.json

    {
      "kind": "PodExecOptions",
      "apiVersion": "v1",
      "stdin": true,
      "stdout": true,
      "stderr": true,
      "tty": true,
      "container": "containerValue",
      "command": [
        "commandValue"
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 192 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodExecOptions.json

    {
      "kind": "PodExecOptions",
      "apiVersion": "v1",
      "stdin": true,
      "stdout": true,
      "stderr": true,
      "tty": true,
      "container": "containerValue",
      "command": [
        "commandValue"
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 192 bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/stdin2.golden

    //gofmt -stdin
    
    var x int
    
    func f() {
    	y := z
    	/* this is a comment */
    	// this is a comment too
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 101 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputReceiver.java

         * Requests that a line of text should be received from the user, for example via this process' stdin, and forwarded to the {link UserInputReader} instance in the daemon.
         * Does not block waiting for the input.
         */
        void readAndForwardText(Normalizer normalizer);
    
        /**
         * Requests that bytes should be read from this process' stdin and forwarded to the daemon.
         * Does not block waiting for the input.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:03:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top