Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for otool (0.05 sec)

  1. .github/workflows/go-fips.yml

          # This should fail if grep returns non-zero exit
          - name: Test binary
            run: |
              docker run --rm minio/fips-test:latest ./minio --version
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go122.go

    	// or unitchecker.Config.GoVersion.
    	if v := info.FileVersions[file]; IsValid(v) {
    		return v
    	}
    	// Note: we could instead return runtime.Version() [if valid].
    	// This would act as a max version on what a tool can support.
    	return Future
    }
    
    // InitFileVersions initializes info to record Go versions for Go files.
    func InitFileVersions(info *types.Info) {
    	info.FileVersions = make(map[*ast.File]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/covdata/covdata.go

    	if *hflag {
    		panic("fatal error")
    	}
    	Exit(1)
    }
    
    func usage(msg string) {
    	if len(msg) > 0 {
    		fmt.Fprintf(os.Stderr, "error: %s\n", msg)
    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata [command]\n")
    	fmt.Fprintf(os.Stderr, `
    Commands are:
    
    textfmt     convert coverage data to textual format
    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/bug/bug.go

    }
    
    func printGoDetails(w io.Writer) {
    	gocmd := filepath.Join(runtime.GOROOT(), "bin/go")
    	printCmdOut(w, "GOROOT/bin/go version: ", gocmd, "version")
    	printCmdOut(w, "GOROOT/bin/go tool compile -V: ", gocmd, "tool", "compile", "-V")
    }
    
    func printOSDetails(w io.Writer) {
    	switch runtime.GOOS {
    	case "darwin", "ios":
    		printCmdOut(w, "uname -v: ", "uname", "-v")
    		printCmdOut(w, "", "sw_vers")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/hooks.go

    // MarkProfileEmitted to indicate that no more work needs to be
    // done. If however that call is never made, this is a sign that the
    // test binary is being used as a replacement binary for the tool
    // being tested, hence we do want to run exit hooks when the program
    // terminates.
    func InitHook(istest bool) {
    	// Note: hooks are run in reverse registration order, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tests/preload_test.go

    			Manager: &User{
    				Name: "Alexis Manager",
    				Tools: []Tools{
    					{Name: "Alexis Tool 1"},
    					{Name: "Alexis Tool 2"},
    				},
    			},
    		},
    		{
    			Name: "TestMergeNestedPreloadWithNestedJoin-2",
    			Manager: &User{
    				Name: "Jinzhu Manager",
    				Tools: []Tools{
    					{Name: "Jinzhu Tool 1"},
    					{Name: "Jinzhu Tool 2"},
    				},
    			},
    		},
    	}
    
    	DB.Create(&users)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            mavenHttpRepo.module("org.external", "external-lib2")
                .dependsOn(util)
                .withModuleMetadata()
                .publish()
                .allowAll()
            mavenHttpRepo.module("org.external", "external-tool").publish().allowAll()
            file('lib/file-lib.jar') << 'content'
            buildFile << """
                project(':project-lib') {
                    apply plugin: 'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            executedAndNotSkipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
            when:
            withInstallations(jdkMetadata).run(task)
            events = toolchainEvents(task)
            then:
            skipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
            where:
            task           | tool           | configureToolchain
            ":compileJava" | "JavaCompiler" | "with java plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    // # Run specified go tool
    //
    // Usage:
    //
    //	go tool [-n] command [args...]
    //
    // Tool runs the go tool command identified by the arguments.
    // With no arguments it prints the list of known tools.
    //
    // The -n flag causes tool to print the command that would be
    // executed but not execute it.
    //
    // For more about each tool command, see 'go doc cmd/<command>'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/net/conf.go

    //
    // The netgo build tag also prohibits the use of the cgo tool.
    // However, on Darwin, Plan 9, and Windows the cgo resolver is still available.
    // On those systems the cgo resolver does not require the cgo tool.
    // (The term "cgo resolver" was locked in by GODEBUG settings
    // at a time when the cgo resolver did require the cgo tool.)
    //
    // Adding netdns=go to GODEBUG will prefer the go resolver.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top