Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for runCmdNoWrap (0.21 sec)

  1. cmd/kubeadm/test/cmd/util.go

    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    )
    
    // Forked from test/e2e/framework because the e2e framework is quite bloated
    // for our purposes here, and modified to remove undesired logging.
    
    func runCmdNoWrap(command string, args ...string) (string, string, int, error) {
    	var bout, berr bytes.Buffer
    	cmd := exec.Command(command, args...)
    	cmd.Stdout = &bout
    	cmd.Stderr = &berr
    	err := cmd.Run()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top