Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for toolbar (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    		Kind:       "CustomResourceDefinition",
    	},
    	ObjectMeta: metav1.ObjectMeta{
    		Name: "coolbar.stable.example.com",
    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolbars",
    			Singular:   "coolbar",
    			ShortNames: []string{"bar"},
    			Kind:       "CoolBar",
    			ListKind:   "CoolBarList",
    			Categories: []string{"cool"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            ex.message.contains('foobar')
        }
    
        def "falls back to PATH if executable cannot be found when using default java"() {
            given:
            def home = tmpDir.createDir("home")
            System.properties['java.home'] = home.absolutePath
            _ * os.findInPath("foobar") >> new File('/path/foobar.exe')
    
            when:
            def exec = jvm.getExecutable("foobar")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                    convention: implementation("foo:bar:1.0"),
                    buildConfiguration: "",
                    expectedConfigurations: [
                        "implementation = ${externalDependency('foo', 'bar', '1.0')}"
                    ]
                ],
                [
                    testCase: "implementation has convention and api is set",
                    convention: implementation("foo:bar:1.0"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top