Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 129 for otool (0.04 sec)

  1. src/cmd/test2json/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test2json converts go test output to a machine-readable JSON stream.
    //
    // Usage:
    //
    //	go tool test2json [-p pkg] [-t] [./pkg.test -test.v=test2json]
    //
    // Test2json runs the given test command and converts its output to JSON;
    // with no command specified, test2json expects test output on standard input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/performance/build.gradle.kts

    plugins {
        id("gradlebuild.internal.java")
        id("gradlebuild.performance-test")
        id("gradlebuild.performance-templates")
    }
    
    description = "Performance tests for the Gradle build tool"
    
    dependencies {
        performanceTestImplementation(project(":base-services"))
        performanceTestImplementation(project(":core"))
        performanceTestImplementation(project(":internal-testing"))
        performanceTestImplementation(project(":stdlib-java-extensions"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    //
    // It does this by looking for the path/pkg/tool directory,
    // which is necessary for useful operation of the cmd/go tool,
    // and is not typically present in a GOPATH.
    //
    // There is a copy of this code in x/tools/cmd/godoc/goroot.go.
    func isGOROOT(path string) bool {
    	stat, err := os.Stat(filepath.Join(path, "pkg", "tool"))
    	if err != nil {
    		return false
    	}
    	return stat.IsDir()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over java extension"                | "other"  | null           | "current"         | "other"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    from Go 1.9 and earlier, use the cftype or jni rewrites in the Go fix tool:
    
    	go tool fix -r cftype <pkg>
    	go tool fix -r jni <pkg>
    
    It will replace nil with 0 in the appropriate places.
    
    The EGLDisplay case was introduced in Go 1.12. Use the egl rewrite
    to auto-update code from Go 1.11 and earlier:
    
    	go tool fix -r egl <pkg>
    
    The EGLConfig case was introduced in Go 1.15. Use the eglconf rewrite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/cmd/trace/main.go

    	"os"
    	"sync/atomic"
    	"time"
    )
    
    const usageMessage = "" +
    	`Usage of 'go tool trace':
    Given a trace file produced by 'go test':
    	go test -trace=trace.out pkg
    
    Open a web browser displaying trace:
    	go tool trace [flags] [pkg.test] trace.out
    
    Generate a pprof-like profile from the trace:
        go tool trace -pprof=TYPE [pkg.test] trace.out
    
    [pkg.test] argument is required for traces produced by Go 1.6 and below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emitdata_test.go

    	args := []string{"tool", "covdata", "debugdump",
    		"-live", "-pkg=command-line-arguments", "-i=" + dir}
    	t.Logf("running: go %v\n", args)
    	cmd := exec.Command(testenv.GoToolPath(t), args...)
    	b, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("'go tool covdata failed (%v): %s", err, b)
    	}
    	output := string(b)
    	rval := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue21317.go

    	fmt.Fprintf(f, `
    package main
    
    import "fmt"
    
    func main() {
            n, err := fmt.Println(1)
    }
    `)
    	f.Close()
    	defer os.RemoveAll(f.Name())
    
    	// compile and test output
    	cmd := exec.Command("go", "tool", "compile", "-p=main", "-importcfg="+os.Getenv("STDLIB_IMPORTCFG"), f.Name())
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		log.Fatalf("expected cmd/compile to fail")
    	}
    	wantErrs := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

            exit 1
            ;;
        esac
    
      # Download the CoreDNS migration tool
      echo "== Downloading the CoreDNS migration tool =="
      wget -P "${download_dir}" "https://github.com/coredns/corefile-migration/releases/download/v1.0.17/corefile-tool-${host_arch}" >/dev/null 2>&1
    
      local -r checkSHA=$(sha256sum "${download_dir}/corefile-tool-${host_arch}" | cut -d " " -f 1)
      if [[ "${checkSHA}" != "${corefile_tool_SHA}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. .gitignore

    .teamcity/.mvn/.gradle-enterprise/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top