Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for Replication (0.8 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/ReflectionDemo.kt

                    id("org.jetbrains.kotlin.jvm") version kotlinVersion
                    id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                    val java = id("java")
                    val app = id("application")
                    app.apply(java.apply)
                }
                """.trimIndent()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 659 bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/build.gradle.kts

        integTestImplementation(testFixtures(project(":build-cache")))
        integTestImplementation(libs.jetty)
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/build.gradle.kts

        crossVersionTestImplementation(libs.ant)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

                    includeBuild '../lib'
                """
                file('build.gradle') << """
                    plugins {
                        id 'java'
                        id 'application'
                    }
                    application {
                       mainClass = 'Main'
                    }
                    dependencies {
                        implementation 'org.test:lib:1.0'
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/ReflectionDemo.kt

                    id("org.jetbrains.kotlin.jvm") version kotlinVersion
                    id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                    id("java") apply false
    
                    val app = id("application")
                    app.apply(false)
                }""".trimIndent()
            val result = schema.reflect(code)
    
            printReflection(result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/package-info.java

     *     <li>{@link org.gradle.api.internal.provider.DefaultMapProperty} - implements the {@link org.gradle.api.provider.MapProperty map} property API.
     *     Note that this class and <code>AbstractCollectionProperty</code> have a lot of duplication, as they implement very similar contracts.
     * </ul>
     */
    @NonNullApi
    package org.gradle.api.internal.provider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

    System_Boundary(gradleBuildTool, "Gradle") {
    
        System_Ext(gradle, "Gradle Build Tool") {
    
            System_Ext(gradleScriptEvaluation, "Script Evaluation")
            System_Ext(gradlePluginApplication, "Plugin Application")
        }
    
        System_Boundary(gradleKotlinDsl, "Gradle Kotlin DSL") {
    
            Container_Boundary(provider, "Kotlin DSL Provider") {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. architecture/standards/0004-use-a-platform-architecture.md

    This is a general-purpose automation platform which takes care of the efficient definition and execution of work, such as tasks.
    This platform is agnostic to what exactly the purpose of the work is.
    It might be creating an application, setting up development environments, orchestrating deployments, running simulations, etc.
    
    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. architecture/platforms.md

    This is a general-purpose automation platform which takes care of the efficient definition and execution of work, such as tasks.
    This platform is agnostic to what exactly the purpose of the work is.
    It might be creating an application, setting up development environments, orchestrating deployments, running simulations, etc.
    
    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/AccessorsClassPathModelCrossVersionSpec.groovy

            def s1 = setOfAutomaticAccessorsFor(["application"])
            def s2 = setOfAutomaticAccessorsFor(["java"])
            def s3 = setOfAutomaticAccessorsFor(["application"])
            def s4 = setOfAutomaticAccessorsFor(["application", "java"])
            def s5 = setOfAutomaticAccessorsFor(["java"])
    
            expect:
            assertThat(s1, not(equalTo(s2))) // application ≠ java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top