Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,062 for delegated (0.15 sec)

  1. pilot/pkg/config/kube/gateway/testdata/delegated.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/delegated.yaml.golden

    Mike Morris <******@****.***> 1702326113 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/delegated.status.yaml.golden

    Lior Lieberman <******@****.***> 1707338903 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/containers-delegated-properties/tests/delegated-properties.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-custom/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::delegated-properties[]
    val db by configurations.creating
    val integTestImplementation by configurations.creating {
        extendsFrom(configurations["testImplementation"])
    }
    
    dependencies {
        db("org.postgresql:postgresql")
        integTestImplementation("com.example:integ-test-support:1.3")
    }
    // end::delegated-properties[]
    
    // tag::string-reference[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 696 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Assert.fail
    import org.junit.Test
    
    
    class DelegatedGradlePropertiesExtensionsTest {
    
        @Test
        fun `non-nullable delegated property access of existing non-null gradle property`() {
    
            withMockForSettings(existing = "p" to 42) {
    
                val p: Int by settings
                assertThat(p, equalTo(42))
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnSingleFailureIntegrationTest.groovy

        tasks.succeeds.mustRunAfter tasks.fails
    """
            fails(buildA, ":delegate")
    
            then:
            failure.assertHasFailures(1)
            assertTaskExecuted(":buildB", ":fails")
            assertTaskNotExecuted(":buildB", ":succeeds")
            assertTaskNotExecuted(":", ":delegate")
        }
    
        def "attempts all dependencies when run with --continue when one delegated task dependency fails"() {
            when:
            buildA.buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DelegatedExtraPropertiesIntegrationTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class DelegatedExtraPropertiesIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `non-nullable delegated extra property access of non-existing extra property throws`() {
    
            withBuildScript(
                """
                val myTask = task("myTask") {}
                val foo: Int by myTask.extra
                foo.toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDelegatedMemberScope.kt

            return super.getCallableSymbols(nameFilter).filter { it.origin == KaSymbolOrigin.DELEGATED }
        }
    
        override fun getCallableSymbols(names: Collection<Name>): Sequence<KaCallableSymbol> = withValidityAssertion {
            return super.getCallableSymbols(names).filter { it.origin == KaSymbolOrigin.DELEGATED }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/containers-delegated-properties/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::delegated-properties[]
    val check by tasks.existing
    val myTask1 by tasks.registering
    
    val compileJava by tasks.existing(JavaCompile::class)
    val myCopy1 by tasks.registering(Copy::class)
    
    val assemble by tasks.existing {
        dependsOn(myTask1)  // <1>
    }
    val myTask2 by tasks.registering {
        description = "Some meaningful words"
    }
    
    val test by tasks.existing(Test::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
Back to top