Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 862 for otool (0.05 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    				t.Fatalf("write empty go_asm.h: %v", err)
    			}
    			cmd := []string{goTool, "tool", "asm", "-p=main", "-gensymabis", "-o", "symabis"}
    			cmd = append(cmd, asms...)
    			_, err = runcmd(cmd...)
    			if err != nil {
    				return err
    			}
    		}
    		var objs []string
    		cmd := []string{goTool, "tool", "compile", "-p=main", "-e", "-D", ".", "-importcfg=" + stdlibImportcfgFile(), "-o", "go.o"}
    		if len(asms) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv_test.go

    	}
    	t.Logf("testenv.GoTool() = %q", goTool)
    
    	gotInfo, err := os.Stat(goTool)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !os.SameFile(wantInfo, gotInfo) {
    		t.Fatalf("%q is not the same file as %q", absWant, goTool)
    	}
    }
    
    func TestHasGoBuild(t *testing.T) {
    	if !testenv.HasGoBuild() {
    		switch runtime.GOOS {
    		case "js", "wasip1":
    			// No exec syscall, so these shouldn't be able to 'go build'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.Tool.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.standard-tool-chains.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 99 bytes
    - Viewed (0)
  5. src/cmd/cover/func.go

    			list = append(list, pkg)
    		}
    	}
    
    	if len(list) == 0 {
    		return pkgs, nil
    	}
    
    	// Note: usually run as "go tool cover" in which case $GOROOT is set,
    	// in which case runtime.GOROOT() does exactly what we want.
    	goTool := filepath.Join(runtime.GOROOT(), "bin/go")
    	cmd := exec.Command(goTool, append([]string{"list", "-e", "-json"}, list...)...)
    	var stderr bytes.Buffer
    	cmd.Stderr = &stderr
    	stdout, err := cmd.Output()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof_test.go

    		// Delta profile collection has a 1s minimum.
    		t.Skip("skipping in -short mode")
    	}
    
    	testenv.MustHaveGoRun(t)
    
    	gotool, err := testenv.GoTool()
    	if err != nil {
    		t.Fatalf("error finding go tool: %v", err)
    	}
    
    	out, err := testenv.Command(t, gotool, "run", filepath.Join("testdata", "delta_mutex.go")).CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/dist_list_missing.txt

    stdout linux/amd64
    cp stdout tool.txt
    
    go tool dist list -v
    stdout linux/amd64
    cp stdout tool-v.txt
    
    go tool dist list -broken
    stdout $GOOS/$GOARCH
    cp stdout tool-broken.txt
    
    go tool dist list -json
    stdout '"GOOS": "linux",\n\s*"GOARCH": "amd64",\n'
    cp stdout tool-json.txt
    
    go tool dist list -json -broken
    stdout '"GOOS": "'$GOOS'",\n\s*"GOARCH": "'$GOARCH'",\n'
    cp stdout tool-json-broken.txt
    
    [short] stop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:52:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/someLib/shared/libsomeLib.dylib
        Static library 'someLib:staticLibrary'
            build using task: :someLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mkerrors="$mkerrors -maix32"
    	mksyscall="go run mksyscall_aix_ppc.go -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    aix_ppc64)
    	mkerrors="$mkerrors -maix64"
    	mksyscall="go run mksyscall_aix_ppc64.go -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/covdata/doc.go

    	covmeta.cce1b350af34b6d0fb59cc1725f0ee27
    	$
    
    Run covdata via "go tool covdata <mode>", where 'mode' is a subcommand
    selecting a specific reporting, merging, or data manipulation operation.
    Descriptions on the various modes (run "go tool cover <mode> -help" for
    specifics on usage of a given mode):
    
    1. Report percent of statements covered in each profiled package
    
    	$ go tool covdata percent -i=profiledir
    	cov-example/p	coverage: 41.1% of statements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top