Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,392 for toolID (0.14 sec)

  1. src/cmd/go/internal/base/tool.go

    	"cmd/go/internal/par"
    )
    
    // Tool returns the path to the named tool (for example, "vet").
    // If the tool cannot be found, Tool exits the process.
    func Tool(toolName string) string {
    	toolPath, err := ToolPath(toolName)
    	if err != nil && len(cfg.BuildToolexec) == 0 {
    		// Give a nice message if there is no tool with that name.
    		fmt.Fprintf(os.Stderr, "go: no such tool %q\n", toolName)
    		SetExitStatus(2)
    		Exit()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:04:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Tool.java

    import java.util.List;
    
    /**
     * Configuration of the arguments of a ToolChain executable.
     */
    @Incubating
    public interface Tool {
        /**
         * The arguments passed when executing this tool.
         */
        List<String> getArgs();
    
        /**
         * Adds a number of arguments to be passed to the tool.
         */
        void args(String... args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. maven-compat/src/test/projects/project-dependencies-resolver/it0063/jdk/lib/tools.jar

    Guillaume Nodet <******@****.***> 1686839096 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 345 bytes
    - Viewed (0)
  4. maven-core/src/test/projects/project-builder/it0063/jdk/lib/tools.jar

    Jason van Zyl <******@****.***> 1243661130 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 30 05:25:30 UTC 2009
    - 345 bytes
    - Viewed (0)
  5. maven-core/src/test/projects/plugin-manager/project-contributing-system-scope-plugin-dep/tools.jar

    Jason van Zyl <******@****.***> 1243568062 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 29 03:34:22 UTC 2009
    - Viewed (0)
  6. 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)
  7. .idea/tools.protobuf.xml

    Nikolay Krasko <******@****.***> 1506102691 +0300
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Sep 25 17:41:53 UTC 2017
    - 239 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

        }
    
        def "transform can receive a file collection containing substituted external dependencies as parameter"() {
            createDirs("tools", "tools/tool-a", "tools/tool-b")
            file("tools/settings.gradle") << """
                include 'tool-a', 'tool-b'
            """
            file("tools/build.gradle") << """
                allprojects {
                    group = 'test'
                    configurations.create("default")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    go 1.15
    
    replace (
    	example.net/tools v0.1.0 => ./tools
    	example.net/cmd v0.1.0 => ./cmd
    	example.net/testonly v0.1.0 => ./testonly
    	example.net/missing v0.1.0 => ./missing
    )
    
    -- tools/go.mod --
    module example.net/tools
    
    go 1.15
    
    // Requirements intentionally omitted.
    
    -- tools/tools.go --
    // +build tools
    
    package tools
    
    import (
    	_ "example.net/cmd/tool"
    	_ "example.net/missing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/DefaultSwiftcPlatformToolChain.java

        private final Map<ToolType, CommandLineToolConfigurationInternal> tools = new HashMap<ToolType, CommandLineToolConfigurationInternal>();
    
        public DefaultSwiftcPlatformToolChain(NativePlatform platform) {
            this.platform = platform;
        }
    
        public void add(DefaultCommandLineToolConfiguration tool) {
            tools.put(tool.getToolType(), tool);
        }
    
        @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)
Back to top