Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 435 for toolbar (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromStringList(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            File toolsJar = new File(javaHome, "lib/tools.jar");
            if (toolsJar.exists()) {
                return Optional.of(toolsJar);
            }
            if (javaHome.getName().equalsIgnoreCase("jre")) {
                javaHome = javaHome.getParentFile();
                toolsJar = new File(javaHome, "lib/tools.jar");
                if (toolsJar.exists()) {
                    return Optional.of(toolsJar);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

            fromStringArray() | "ProcessGroovyMethods.execute(command, new String[] {\"FOOBAR=foobar\"}, project.file(\"$pwd\"))" | pwd               | "foobar"
            fromStringList()  | "ProcessGroovyMethods.execute(command, new String[] {\"FOOBAR=foobar\"}, project.file(\"$pwd\"))" | pwd               | "foobar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                // Null argument handling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/config/model_test.go

    			},
    		},
    		// mock type
    		{
    			input: &config.MockConfig{Key: "foobar"},
    			mp: map[string]any{
    				"key": "foobar",
    			},
    		},
    		// XDS type, to test golang/proto
    		{
    			input: &cluster.Cluster{Name: "foobar"},
    			mp: map[string]any{
    				"name": "foobar",
    			},
    		},
    		// Random struct
    		{
    			input: &TestStruct{Name: "foobar"},
    			mp: map[string]any{
    				"name": "foobar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/tidy.go

    	tidyCompat goVersionFlag // go version for which the tidied go.mod and go.sum files should be “compatible”
    )
    
    func init() {
    	cmdTidy.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	cmdTidy.Flag.BoolVar(&cfg.BuildX, "x", false, "")
    	cmdTidy.Flag.BoolVar(&tidyE, "e", false, "")
    	cmdTidy.Flag.BoolVar(&tidyDiff, "diff", false, "")
    	cmdTidy.Flag.Var(&tidyGo, "go", "")
    	cmdTidy.Flag.Var(&tidyCompat, "compat", "")
    	base.AddChdirFlag(&cmdTidy.Flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

    compileClasspath - Compile classpath for source set 'main'.
    +--- project :a
    |    \\--- foo:bar:1.0 -> 3.0
    |         \\--- foo:baz:5.0
    +--- project :b
    |    \\--- foo:bar:0.5.dont.exist -> 3.0 (*)
    +--- project :c
    |    \\--- foo:bar:3.0 (*)
    +--- project :d
    |    \\--- foo:bar:2.0 -> 3.0 (*)
    \\--- project :e
         \\--- foo:bar:3.0 (*)
    """
        }
    
        def "renders the dependency tree"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/tool/tool.go

    func isGccgoTool(tool string) bool {
    	switch tool {
    	case "cgo", "fix", "cover", "godoc", "vet":
    		return true
    	}
    	return false
    }
    
    func init() {
    	base.AddChdirFlag(&CmdTool.Flag)
    	CmdTool.Flag.BoolVar(&toolN, "n", false, "")
    }
    
    func runTool(ctx context.Context, cmd *base.Command, args []string) {
    	if len(args) == 0 {
    		telemetry.Inc("go/subcommand:tool")
    		listTools()
    		return
    	}
    	toolName := args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. tools/docker-builder/main.go

    	rootCmd.Flags().BoolVar(&globalArgs.Push, "push", globalArgs.Push, "push targets to registry")
    	rootCmd.Flags().BoolVar(&globalArgs.Save, "save", globalArgs.Save, "save targets to tar.gz")
    	rootCmd.Flags().BoolVar(&globalArgs.NoCache, "no-cache", globalArgs.NoCache, "disable caching")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "command.execute(['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "command.execute(['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromStringList(), "command.execute(['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top