Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 654 for unqualified (3.08 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/register.go

    var Unversioned = schema.GroupVersion{Group: "", Version: "v1"}
    
    // WatchEventKind is name reserved for serializing watch events.
    const WatchEventKind = "WatchEvent"
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // scheme is the registry for the common types that adhere to the meta v1 API spec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/register.go

    )
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
    
    // Kind takes an unqualified kind and returns a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // addToGroupVersion registers common meta types into schemas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 2.9K 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. 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)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // set.  That would look like this:
    //
    //	<nested-name>
    //	-> <template-prefix> <template-args>
    //	-> <prefix> <template-unqualified-name> <template-args>
    //	-> <unqualified-name> <template-unqualified-name> <template-args>
    //	-> <source-name> <template-unqualified-name> <template-args>
    //	-> <source-name> <operator-name> <template-args>
    //	-> <source-name> cv <type> <template-args>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginManager.java

         * All other plugins must be queried for by their full ID (e.g. {@code "org.company.some-plugin"}).
         * <p>
         * Some Gradle plugins have not yet migrated to fully qualified plugin IDs.
         * Such plugins can be detected with this method by simply using the unqualified ID (e.g. {@code "some-third-party-plugin"}.
         *
         * @param id the plugin ID
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  10. 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)
Back to top