Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,942 for sameId (5.45 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

            "with the same name and no classifier"               | "publishTest-1.9.jar"                  | null               | "Invalid publication 'ivy': multiple artifacts with the identical name, extension, type and classifier ('publishTest', jar', 'jar', 'null'"
            "with the same name and a classifier"                | "publishTest-1.9.jar"                  | "optional-feature" | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

            result.assertTaskSkipped(":a")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE, because = "Flaky")
        def "cannot mutate named instance from groovy"() {
            buildFile << """
                interface Thing extends Named { }
    
                def t1 = objects.named(Thing, "t1")
                task changeProp {
                    doLast {
                        t1.name = "123"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

     *
     * <p>Features are classified by their capabilities. Each variant of a feature provides at least
     * the same set of capabilities as the feature itself. Since all variants of a feature are derived
     * from the same sources, they all expose the same API or "content" and thus provide the same
     * capabilities. Some variants may expose additional capabilities than those of its owning feature,
     * for example with fat jars.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/PolymorphicManagedTypeIntegrationTest.groovy

                    @Mutate
                    void setName(Named named) {
                        named.name = "superclass"
                    }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, Named named) {
                        tasks.create("echo") {
                            it.doLast {
                                println "name: $named.name"
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

                onNamedWithAction("alice", DomainObjectBase.Foo::class, aliceProvider)
                on { named(eq("bob"), eq(DomainObjectBase.Bar::class.java)) } doReturn bobProvider
                on { named(eq("jim")) } doReturn defaultProvider
                on { named(eq("steve")) } doReturn defaultProvider
            }
    
            container {
                val a = "alice"(DomainObjectBase.Foo::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                        val integTest by registering(JvmTestSuite::class) {
                            useJUnit()
                        }
                    }
                }
    
                tasks.named("check") {
                    dependsOn(testing.suites.named("integTest"))
                }
    
                tasks.register("checkConfiguration") {
                    dependsOn("test", "integTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    }
    
    tasks.named("task1"){
        println("NAMED TASK1: This is executed during the configuration phase")
        doFirst {
            println("NAMED TASK1 - doFirst: This is executed during the execution phase")
        }
        doLast {
            println("NAMED TASK1 - doLast: This is executed during the execution phase")
        }
    }
    
    tasks.named("task2"){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. api/README

    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Each file in that directory contains a list of features that may be added
    to the next release of Go. The files in this directory only affect the
    warning output from the go api tool. Each file should be named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/c/kernels.h

    // Interprets the named kernel construction attribute as bool and
    // places it into *val. *status is set to TF_OK.
    //
    // If the attribute could not be found or could not be interpreted as
    // bool, *status is populated with an error.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_GetAttrBool(
        TF_OpKernelConstruction* ctx, const char* attr_name, TF_Bool* val,
        TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

        }
    
        static class PriorityTest {
    
            interface MyService {}
    
            @Named
            static class MyServiceImpl implements MyService {}
    
            @Named
            @Priority(10)
            static class MyPriorityServiceImpl implements MyService {}
    
            @Named
            static class MyMojo {
                @Inject
                MyService service;
            }
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top