Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for toolbar (0.13 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    (number.test(columns[j]) ? " align=\"right\">" : ">") + columns[j] + "</td>"; } text += "</tr>"; } } text += "</table>"; } showText(text); } function showText(text) { list = window.open("", "list", "dependent=yes,location=no,menubar=yes,resizable=yes,toolbar=no,scrollbars=yes,width=500,height=400"); list.document.close(); list.document.open(); list.document.write("<html><head><style type=\"text/css\">"); list.document.write("body { font-family:Helvetica,Arial,sans-serif; } "); list.document.write(".link...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 23.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/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",
    		},
    		Scope: v1.ClusterScoped,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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. 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)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            fromObjectList()   | "command.execute(new String[] {'FOOBAR=foobar'}, file('$pwd'))"                       | pwd               | "foobar"
            fromString()       | "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
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight.size() == 3
            barInsight[0].name == 'foo:bar:2.0'
            barInsight[0].resolvable == 'RESOLVED'
            barInsight[0].hasConflict == false
            barInsight[0].description == null
            barInsight[0].children.size() == 0
    
            barInsight[1].name == 'foo:bar:2.0'
            barInsight[1].resolvable == 'RESOLVED'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top