Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for STDOUT (0.12 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.access_loggers.file.v3.FileAccessLog",
                                  "path": "/dev/stdout",
                                  "log_format": {
                                    "text_format_source": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    	cmd := exec.Command(goTool, "env", "-json")
    	stdout, err := cmd.StdoutPipe()
    	if err != nil {
    		t.Fatal("StdoutPipe:", err)
    	}
    	if err := cmd.Start(); err != nil {
    		t.Fatal("Start:", err)
    	}
    	var env struct {
    		GOOS         string
    		GOARCH       string
    		GOEXPERIMENT string
    		GODEBUG      string
    		CGO_ENABLED  string
    	}
    	if err := json.NewDecoder(stdout).Decode(&env); err != nil {
    		t.Fatal("Decode:", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    }
    
    // RegisterSet is a bitmap of registers, indexed by Register.num.
    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    func (s *debugState) logf(msg string, args ...interface{}) {
    	if s.f.PrintOrHtmlSSA {
    		fmt.Printf(msg, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    // CommandScript is used to pre-configure a command that will be executed and
    // optionally set it's output (stdout and stderr combined) and return code.
    type CommandScript struct {
    	// Cmd is the command to execute, e.g. "ls"
    	Cmd string
    	// Args is a slice of arguments to pass to the command, e.g. "-a"
    	Args []string
    	// Output is the combined stdout and stderr of the command to return
    	Output string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    				break;
    			case '\v':
    				printf("\\v");
    				break;
    			default:
    #ifdef MB_CUR_MAX
    				s = (char*)u - 1;
    				if ((w = mblen(s, (char*)e - s)) > 1)
    				{
    					u += w - 1;
    					fwrite(s, 1, w, stdout);
    				}
    				else
    #endif
    				if (!iscntrl(c) && isprint(c))
    					putchar(c);
    				else
    					printf("\\x%02x", c);
    				break;
    			}
    		if (test & TEST_DELIMIT)
    			printf("\"");
    	}
    	else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	}
    	command = append(command, "-connect")
    	command = append(command, fmt.Sprintf("127.0.0.1:%d", port))
    	cmd := exec.Command(command[0], command[1:]...)
    	cmd.Stdin = nil
    	var output bytes.Buffer
    	cmd.Stdout = &output
    	cmd.Stderr = &output
    	if err := cmd.Start(); err != nil {
    		return nil, nil, err
    	}
    
    	connChan := make(chan any, 1)
    	go func() {
    		tcpConn, err := l.Accept()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    						fatalf("VERSION: bad time: %s", err)
    					}
    				}
    			}
    		}
    
    		// Commands such as "dist version > VERSION" will cause
    		// the shell to create an empty VERSION file and set dist's
    		// stdout to its fd. dist in turn looks at VERSION and uses
    		// its content if available, which is empty at this point.
    		// Only use the VERSION file if it is non-empty.
    		if b != "" {
    			return b
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string logLevel = 18;
    
      // Path to the file to which the proxy will write outlier detection logs.
      //
      // Example: "/dev/stdout"
      // This would write the logs to standard output.
      string outlierLogPath = 42;
    
      // Enables privileged securityContext for the istio-proxy container.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/EventListenerTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Flaky // STDOUT logging enabled for test
    @Timeout(30)
    @Tag("Slow")
    class EventListenerTest {
      @RegisterExtension
      val platform = PlatformRule()
    
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    	}
    
    	// Disable any ssh connection pooling by Git.
    	// If a Git subprocess forks a child into the background to cache a new connection,
    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    	// until EOF to get all the data that the Git subprocess wrote before exiting.
    	// The EOF doesn't come until the child exits too, because the child
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top