Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for STDOUT (0.15 sec)

  1. pkg/kubelet/server/server_test.go

    		"stdout and stderr":            {stdout: true, stderr: true, responseStatusCode: http.StatusSwitchingProtocols},
    		"stdin stdout and stderr":      {stdin: true, stdout: true, stderr: true, responseStatusCode: http.StatusSwitchingProtocols},
    		"stdin stdout stderr with uid": {stdin: true, stdout: true, stderr: true, responseStatusCode: http.StatusSwitchingProtocols, uid: true},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    		// safe. If we were just passing stdout/stderr through to exec, it would
    		// do this for us, but since we're wrapping stdout, we have to do it
    		// ourselves.
    		if stdout == stderr {
    			stdout = &lockedWriter{w: stdout}
    			stderr = stdout
    		}
    		f := &testJSONFilter{w: stdout, variant: opts.variant}
    		cmd.Stdout = f
    		flush = f.Flush
    	} else {
    		cmd.Stdout = stdout
    		flush = func() {}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		// is OK.
    		if testShowPass() && (len(pkgs) == 1 || cfg.BuildP == 1) || testJSON {
    			// Write both to stdout and buf, for possible saving
    			// to cache, and for looking for the "no tests to run" message.
    			stdout = io.MultiWriter(stdout, &buf)
    		} else {
    			stdout = &buf
    		}
    	}
    
    	if r.c.buf == nil {
    		// We did not find a cached result using the link step action ID,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	}
    
    	tg.t.Logf("running testgo %v", args)
    	cmd := testenv.Command(tg.t, prog, args...)
    	tg.stdout.Reset()
    	tg.stderr.Reset()
    	cmd.Dir = tg.execDir
    	cmd.Stdout = &tg.stdout
    	cmd.Stderr = &tg.stderr
    	cmd.Env = tg.env
    	status := cmd.Run()
    	if tg.stdout.Len() > 0 {
    		tg.t.Log("standard output:")
    		tg.t.Log(tg.stdout.String())
    	}
    	if tg.stderr.Len() > 0 {
    		tg.t.Log("standard error:")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		Stdin:       stdin,
    		Stdout:      stdout,
    		Stderr:      stderr,
    	}
    	resp, err := m.runtimeService.Exec(ctx, req)
    	if err != nil {
    		return nil, err
    	}
    
    	return url.Parse(resp.Url)
    }
    
    // GetAttach gets the endpoint the runtime will serve the attach request from.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    	}
    	return imports
    }
    
    func dynimport(obj string) {
    	stdout := os.Stdout
    	if *dynout != "" {
    		f, err := os.Create(*dynout)
    		if err != nil {
    			fatalf("%s", err)
    		}
    		defer func() {
    			if err = f.Close(); err != nil {
    				fatalf("error closing %s: %v", *dynout, err)
    			}
    		}()
    
    		stdout = f
    	}
    
    	fmt.Fprintf(stdout, "package %s\n", *dynpackage)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging_test.go

    		expected   *accesslog.AccessLog
    	}{
    		{
    			name: "stdout",
    			meshConfig: &meshconfig.MeshConfig{
    				AccessLogEncoding: meshconfig.MeshConfig_TEXT,
    			},
    			fp: stdoutFormat,
    			expected: &accesslog.AccessLog{
    				Name:       wellknown.FileAccessLog,
    				ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(stdout)},
    			},
    		},
    		{
    			name: "stderr",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    	var childProcess *exec.Cmd
    	var stdin opensslInput
    	var stdout *opensslOutputSink
    
    	if write {
    		var err error
    		recordingConn, childProcess, stdin, stdout, err = test.connFromCommand()
    		if err != nil {
    			t.Fatalf("Failed to start subcommand: %s", err)
    		}
    		clientConn = recordingConn
    		defer func() {
    			if t.Failed() {
    				t.Logf("OpenSSL output:\n\n%s", stdout.all)
    			}
    		}()
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

         *
         * @param args CLI args
         * @param workingDirectory working directory
         * @param stdout stdout
         * @param stderr stderr
         * @return return code
         */
        public int doMain(String[] args, String workingDirectory, PrintStream stdout, PrintStream stderr) {
            PrintStream oldout = System.out;
            PrintStream olderr = System.err;
    
            final Set<String> realms;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    # The reformer also changes the tags to 'stderr' or 'stdout' based on the
    # value of 'stream'.
    # local_resource_id is later used by google_cloud plugin to determine the
    # monitored resource to ingest logs against.
    # Json Log Example:
    # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
    # CRI Log Example:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top