Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 545 for otool (0.2 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name
         * @return file representing the tool executable, or null if the tool cannot be found
         */
        String findTool(String toolName);
    
        /**
         * Let the toolchain decide if it matches requirements defined
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    [[gradle_overview]]
    == Gradle Build Tool
    
    image:gradle.png[float=left] Gradle Build Tool is a fast, dependable, and adaptable open-source https://en.wikipedia.org/wiki/Build_automation[build automation] tool with an elegant and extensible declarative build language.
    
    In this User Manual, Gradle Build Tool is abbreviated **Gradle**.
    
    == Why Gradle?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/distpack/test.go

    	{name: "go/bin/gofmt", goos: "windows", exclude: true},
    	{name: "go/bin/gofmt.exe", goos: "windows"},
    	{name: "go/pkg/tool/*/compile", goos: "linux"},
    	{name: "go/pkg/tool/*/compile", goos: "darwin"},
    	{name: "go/pkg/tool/*/compile", goos: "windows", exclude: true},
    	{name: "go/pkg/tool/*/compile.exe", goos: "windows"},
    }
    
    var modRules = []testRule{
    	{name: "golang.org/toolchain@*/VERSION"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. cluster/images/etcd-version-monitor/README.md

    **RUNNING THE TOOL**
    
    To run this tool as a docker container:
    - make build
    - docker run --net=host -i -t staging-k8s.gcr.io/etcd-version-monitor:0.1.3 /etcd-version-monitor
    
    To run this as a pod on the kubernetes cluster:
    - Place the 'etcd-version-monitor.yaml' in the manifests directory of
      kubelet on the master machine.
    
    *Note*: This tool has to run on the same machine as etcd, as communication
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 04:03:37 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/Swiftc.java

    import java.io.File;
    import java.util.List;
    
    /**
     * The <a href="https://swift.org/">Swift Compiler</a> tool chain.
     *
     * @since 4.1
     */
    @Incubating
    public interface Swiftc extends NativeToolChain {
        /**
         * The paths setting required for executing the tool chain.
         * These are used to locate tools for this tool chain, and are prepended to the system PATH when executing these tools.
         */
        List<File> getPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/internal/genflags/vetflag.go

    func VetAnalyzers() ([]string, error) {
    	// get supported vet flag information
    	tool := base.Tool("vet")
    	vetcmd := exec.Command(tool, "-flags")
    	out := new(bytes.Buffer)
    	vetcmd.Stdout = out
    	if err := vetcmd.Run(); err != nil {
    		return nil, fmt.Errorf("go vet: can't execute %s -flags: %v\n", tool, err)
    	}
    	var analysisFlags []struct {
    		Name  string
    		Bool  bool
    		Usage string
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        private final Set<? super Object> libs = new LinkedHashSet<Object>();
        private final Tool linker = new DefaultTool();
        private final Tool staticLibArchiver = new DefaultTool();
    
        // TODO:HH Use managed views for this, only applied when the respective language is applied
        private final Tool assembler = new DefaultTool();
        private final PreprocessingTool cCompiler = new DefaultPreprocessingTool();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/make.bat

    if...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. Jenkinsfile

                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
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    go 1.15
    
    // Requirements intentionally omitted.
    
    -- tools/tools.go --
    // +build tools
    
    package tools
    
    import (
    	_ "example.net/cmd/tool"
    	_ "example.net/missing"
    )
    
    -- cmd/go.mod --
    module example.net/cmd
    
    go 1.16
    -- cmd/tool/tool.go --
    package main
    
    func main() {}
    
    -- testonly/go.mod --
    module example.net/testonly
    
    go 1.15
    -- testonly/testonly_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top