Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Ask (0.02 sec)

  1. src/cmd/cgo/internal/swig/swig_test.go

    	}
    	out, err := cmd.CombinedOutput()
    	if string(out) != "OK\n" {
    		t.Errorf("%s", string(out))
    	}
    	if err != nil {
    		t.Errorf("%s", err)
    	}
    }
    
    func mustHaveCxx(t *testing.T) {
    	// Ask the go tool for the CXX it's configured to use.
    	cxx, err := exec.Command("go", "env", "CXX").CombinedOutput()
    	if err != nil {
    		t.Fatalf("go env CXX failed: %s", err)
    	}
    	args, err := quoted.Split(string(cxx))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/toolchain.go

    		return nil, fmt.Errorf("go language version %s is not a toolchain version", rev)
    	}
    
    	// Check that the underlying toolchain exists.
    	// We always ask about linux-amd64 because that one
    	// has always existed and is likely to always exist in the future.
    	// This avoids different behavior validating go versions on different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top