Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 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/cmd/go/go_test.go

    			log.Fatal(err)
    		}
    		testGo = filepath.Join(testBin, "go"+exeSuffix)
    		gotool, err := testenv.GoTool()
    		if err != nil {
    			fmt.Fprintln(os.Stderr, "locating go tool: ", err)
    			os.Exit(2)
    		}
    
    		goEnv := func(name string) string {
    			out, err := exec.Command(gotool, "env", name).CombinedOutput()
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "go env %s: %v\n%s", name, err, out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            mavenRepo.module("org", "foo", '1.3.3').publish()
            mavenRepo.module("org", "foo", '1.4.4').publish()
    
            createDirs("api", "impl", "tool")
            settingsFile << "include 'api', 'impl', 'tool'"
    
            buildFile << """
    allprojects {
    	apply plugin: 'java'
    	repositories {
    		maven { url "${mavenRepo.uri}" }
    	}
    }
    
    project(':api') {
    	dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	xatexit(func() { xremoveall(objGoBootstrap) })
    
    	// Create tool directory.
    	// We keep it in pkg/, just like the object directory above.
    	if rebuildall {
    		xremoveall(tooldir)
    	}
    	xmkdirall(tooldir)
    
    	// Remove tool binaries from before the tool/gohostos_gohostarch
    	xremoveall(pathf("%s/bin/tool", goroot))
    
    	// Remove old pre-tool binaries.
    	for _, old := range oldtool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			}
    			route := ws.GET(action.Path).To(handler).
    				Doc(doc).
    				Param(ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    				Produces(append(storageMeta.ProducesMIMETypes(action.Verb), mediaTypes...)...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    			}
    		}
    	}
    	t.runPending(nil)
    	timelog("end", "dist test")
    
    	if !t.json {
    		if t.failed {
    			fmt.Println("\nFAILED")
    		} else if !anyIncluded {
    			fmt.Println()
    			errprintf("go tool dist: warning: %q matched no tests; use the -list flag to list available tests\n", t.runRxStr)
    			fmt.Println("NO TESTS TO RUN")
    		} else if someExcluded {
    			fmt.Println("\nALL TESTS PASSED (some were excluded)")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    The 'go test' command takes both flags that apply to 'go test' itself
    and flags that apply to the resulting test binary.
    
    Several of the flags control profiling and write an execution profile
    suitable for "go tool pprof"; run "go tool pprof -h" for more
    information. The --alloc_space, --alloc_objects, and --show_bytes
    options of pprof control how the information is presented.
    
    The following flags are recognized by the 'go test' command and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Toolchain-based tasks for JVM projects
    
    Starting with Gradle 8.0, all core Java tasks that have toolchain support are now using toolchains unconditionally.
    If `JavaBasePlugin` is applied, the convention value for tool properties on the task is defined by the toolchain configured on the `java` extension.
    In case no toolchains are explicitly configured, the toolchain corresponding to the JVM running Gradle is used.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	CgoEnabled  bool   // whether cgo files are included
    	UseAllFiles bool   // use files regardless of go:build lines, file names
    	Compiler    string // compiler to assume when computing target paths
    
    	// The build, tool, and release tags specify build constraints
    	// that should be considered satisfied when processing go:build lines.
    	// Clients creating a new context may customize BuildTags, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    If it does not, it will indicate that the test succeeded as it will ignore the `<flakyFailure>` information.
    If the test does not succeed (i.e. it fails for every retry), it will be indicated as having failed whether your tool understands this format or not.
    
    When `mergeReruns` is disabled (the default), each execution of a test will be listed as a separate test case.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top