Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for STDOUT (0.13 sec)

  1. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		return err
    	}
    
    	// Do a zero-byte write to stdout before handing off to the container runtime.
    	// This ensures at least one Write call is made to the writer when copying starts,
    	// even if we then block waiting for log output from the container.
    	if _, err := stdout.Write([]byte{}); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    environments. # * Lower resource utilization. # * Some additional features are enabled by default; especially ones used in some tasks in istio.io. # * More ports enabled on the ingress, which is used in some tasks. meshConfig: accessLogFile: /dev/stdout extensionProviders: - name: otel envoyOtelAls: service: opentelemetry-collector.istio-system.svc.cluster.local port: 4317 - name: skywalking skywalking: service: tracing.istio-system.svc.cluster.local port: 11800 - name: otel-tracing opentelemetry:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    		defer testKubelet.Cleanup()
    		kubelet := testKubelet.kubelet
    		fakeRuntime := testKubelet.fakeRuntime
    		fakeCommandRunner := containertest.FakeContainerCommandRunner{
    			Err:    testError,
    			Stdout: "foo",
    		}
    		kubelet.runner = &fakeCommandRunner
    
    		containerID := kubecontainer.ContainerID{Type: "test", ID: "abc1234"}
    		fakeRuntime.PodList = []*containertest.FakePod{
    			{Pod: &kubecontainer.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	cmd := testenv.CommandContext(b, ctx, os.Args[0], "-test.run=^$", "-test.bench=^BenchmarkClient$")
    	cmd.Env = append(cmd.Environ(), "TEST_BENCH_SERVER=yes")
    	cmd.Stderr = os.Stderr
    	stdout, err := cmd.StdoutPipe()
    	if err != nil {
    		b.Fatal(err)
    	}
    	if err := cmd.Start(); err != nil {
    		b.Fatalf("subprocess failed to start: %v", err)
    	}
    
    	done := make(chan error, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    # duplicated there as well.
    function log-end {
      local bootstep="$1"
    
      log-proto "${bootstep}" "${LOG_STATUS_COMPLETED}"
      log-trap-pop
    }
    
    # Writes a log proto to stdout.
    # Args:
    #   $1: bootstrap step name.
    #   $2: status. Either 'STARTED', 'COMPLETED', or 'ERROR'.
    #   $3: optional status reason.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    //	func FuzzXxx(f *testing.F) { ... }
    //
    // An example function is similar to a test function but, instead of using
    // *testing.T to report success or failure, prints output to os.Stdout.
    // If the last comment in the function starts with "Output:" then the output
    // is compared exactly against the comment (see examples below). If the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    		for i := 1; i <= 512-a; i++ {
    			InternalIsZero(b[a : a+i])
    		}
    	}
    }
    
    func TestInterfaceExtraction(t *testing.T) {
    	var s struct {
    		W io.Writer
    	}
    
    	s.W = os.Stdout
    	v := Indirect(ValueOf(&s)).Field(0).Interface()
    	if v != s.W.(any) {
    		t.Error("Interface() on interface: ", v, s.W)
    	}
    }
    
    func TestNilPtrValueSub(t *testing.T) {
    	var pi *int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top