Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 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. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    The following tool chains are supported:
    
    [%header%autowidth,compact]
    |===
    | Operating System | Tool Chain | Notes
    
    | Linux
    | http://gcc.gnu.org/[GCC]
    |
    
    | Linux
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "uniqueItems": true
              }
            },
            {
              "description": "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).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            }
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:untracked_external_tool]]
    === Integrate an external tool which does its own up-to-date checking
    
    Sometimes you want to integrate an external tool like Git or Npm, both of which do their own up-to-date checking.
    In that case it doesn't make much sense for Gradle to also do up-to-date checks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. 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)
Back to top