Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for unqualified (0.28 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/register.go

    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    // Resource takes an unqualified resource and returns a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

            result.assertTaskNotExecuted(":sub:test")
        }
    
        def "cannot use unqualified task paths to exclude tasks from included build roots"() {
            when:
            run("build", "-x", "test")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    
    class TaskSelectionIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "given an unqualified name traverse project tree from current project and select all tasks with matching name"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/use/resolve/internal/CorePluginResolverTest.groovy

        }
    
        def "can resolve unqualified"() {
            when:
            def request = request("foo")
            def result = resolver.resolve(request)
            result.getFound(request).applyTo(pluginManager)
    
            then:
            1 * pluginManager.apply(impl)
            1 * pluginRegistry.lookup(DefaultPluginId.of("foo")) >> impl
        }
    
        def "can resolve qualified"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/errors.go

    }
    
    // Don't report spurious errors as a consequence of earlier errors.
    // Add more tests as needed.
    func _() {
    	if err := foo /* ERROR "undefined" */ (); err != nil /* "no error here" */ {}
    }
    
    // Use unqualified names for package-local objects.
    type T struct{}
    var _ int = T /* ERROR "value of type T" */ {} // use T in error message rather than errors.T
    
    // Don't report errors containing "invalid type" (issue #24182).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

            val taskNames = requestedTaskNames.asSequence() + excludedTaskNames.asSequence()
            val hasRelativeTaskName = taskNames.any { !it.startsWith(':') }
            if (hasRelativeTaskName) {
                // Because unqualified task names are resolved relative to the selected
                // sub-project according to either `projectDirectory` or `currentDirectory`,
                // the relative directory information must be part of the key.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            "CppLibraryPluginIntegrationTest",
            "CppApplicationPluginIntegrationTest",
            "XcodePluginIntegrationTest",
            "IdeaPluginGoodBehaviourTest"
        ])
        void "can apply plugin unqualified"() {
            given:
            applyPluginUnqualified()
    
            expect:
            succeeds mainTask
        }
    
        def "plugin does not force creation of build dir during configuration"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // using one of the following forms:
    //
    //	dir/pkg.Function
    //	dir/pkg.Type.Method
    //	(*dir/pkg.Type).Method
    //
    // Otherwise the name is interpreted as a case-insensitive unqualified
    // identifier such as "errorf". Either way, if a listed name ends in f, the
    // function is assumed to be Printf-like, taking a format string before the
    // argument list. Otherwise it is assumed to be Print-like, taking a list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependenciesSpec.java

     * <h4>Core Plugins</h4>
     * <p>
     * Core Gradle plugins are able to be applied using the <code>plugins {}</code> block.
     * Core plugins must be specified without a version number, and can have a <i>qualified</i> or <i>unqualified</i> id.
     * That is, the {@code java} plugin can be used via:
     * </p>
     * <pre>
     * plugins {
     *   id 'java'
     * }
     * </pre>
     * <p>
     * Or via:
     * </p>
     * <pre>
     * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:46:02 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

            where:
            appliedBy << JAVA_PLUGIN_IDS * 2
            detectedBy << JAVA_PLUGIN_IDS + JAVA_PLUGIN_IDS.reverse()
        }
    
        @ToBeFixedForConfigurationCache(because = "Gradle.buildFinished")
        def "unqualified ids from classpath are detectable"() {
            def pluginBuilder = new PluginBuilder(testDirectory)
            pluginBuilder.addPlugin("")
            pluginBuilder.addRuleSource("test-rule-source")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top