Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 862 for otool (0.04 sec)

  1. src/cmd/go/testdata/script/toolexec.txt

    )
    
    func main() {
    	tool, args := os.Args[1], os.Args[2:]
    	toolName := filepath.Base(tool)
    	if len(args) > 0 && args[0] == "-V=full" {
    		// We can't alter the version output.
    	} else {
    		// Print which tool we're running, and on what package.
    		fmt.Fprintf(os.Stdout, "%s TOOLEXEC_IMPORTPATH=%q\n", toolName, os.Getenv("TOOLEXEC_IMPORTPATH"))
    	}
    
    	// Simply run the tool.
    	cmd := exec.Command(tool, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPath.java

            private final File tool;
    
            private FoundTool(File tool) {
                this.tool = tool;
            }
    
            @Override
            public boolean isAvailable() {
                return true;
            }
    
            @Override
            public File getTool() {
                return tool;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/help.txt

    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    stderr 'Run ''go help vet'' for details.'
    stderr 'Run ''go tool vet help'' for a full list of flags and analyzers.'
    stderr 'Run ''go tool vet -help'' for an overview.'
    
    # Earlier versions of Go printed a large document here, instead of these two
    # lines.
    ! go test -h
    stderr 'usage: go test'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
    import org.gradle.nativeplatform.fixtures.app.CppCompilerDetectingTestApp
    
    /**
     * Test that each available tool chain can be discovered and used without configuration, assuming it is in the path.
     */
    class NativeToolChainDiscoveryIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaInstallationMetadata.java

    import org.gradle.api.tasks.Internal;
    
    /**
     * Metadata about a Java tool obtained from a toolchain.
     *
     * @see JavaLauncher
     * @see JavaCompiler
     * @see JavadocTool
     *
     * @since 6.7
     */
    public interface JavaInstallationMetadata {
        /**
         * Returns the language version of the JVM to which this tool belongs
         *
         * @return the {@code JavaLanguageVersion}
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_build_trimpath_issue48557.txt

    ! stderr ${/}compile$GOEXE.*' -D[ =]'
    
    go tool buildid a.exe
    cp stdout ../foo-buildid.txt
    go version a.exe
    cp stdout ../foo-version.txt
    cd ..
    
    
    # On the second build — in a different directory but with -trimpath — the
    # compiler should not be invoked, since the cache key should be identical.
    # Only the linker and buildid tool should be needed.
    
    mkdir bar
    cp foo/main.go bar/main.go
    cd bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 16:46:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. src/os/signal/sig.s

    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push a few functions into this
    // package but we still need a .s file so the Go tool does not pass -complete
    // to the go tool compile so the latter does not complain about Go functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 410 bytes
    - Viewed (0)
  8. Jenkinsfile.s390x

                String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                             "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                             "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                   
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/DefaultSwiftcPlatformToolChain.java

        public DefaultSwiftcPlatformToolChain(NativePlatform platform) {
            this.platform = platform;
        }
    
        public void add(DefaultCommandLineToolConfiguration tool) {
            tools.put(tool.getToolType(), tool);
        }
    
        @Override
        public CommandLineToolConfiguration getSwiftCompiler() {
            return tools.get(ToolType.SWIFT_COMPILER);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

                    }
                ''')
                src {
                    main {
                        java {
                            'Tool.java'('public interface Tool { void execute(); }')
                            'ToolHelper.java'('public class ToolHelper { void execute() { new Internal().use(); } ; }')
                        }
                    }
                }
            }
            subproject('c') {
                'build.gradle'('')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top