Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 280 for includedIf (0.14 sec)

  1. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

            file("included/build.gradle") << """
                apply plugin: 'java'
                group = "com.example"
                version = "2.0"
            """
            // Copy cache configuration
            file("included/settings.gradle").text = settingsFile.text
            buildFile << """
                task gradleBuild(type: GradleBuild) {
                    dir = file("included/")
                    tasks = [ "build" ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. subprojects/composite-builds/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Included build controller and composite build infrastructure"
    
    errorprone {
        disabledChecks.addAll(
            "FutureReturnValueIgnored", // 1 occurrences
            "SameNameButDifferent", // 11 occurrences
            "ThreadLocalUsage", // 1 occurrences
            "UnusedMethod", // 4 occurrences
        )
    }
    
    dependencies {
        api(projects.concurrent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            }
    
            /**
             * Finds the longest {@code path} prefix that identifies an included build and returns a pair
             * with the matching {@code path} prefix and {@link BuildState included build reference}.
             *
             * @return {@code null} if no {@code path} prefix identifying an included build is found
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. internal/ringbuffer/LICENSE

    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. releasenotes/notes/51081.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/IgnoredConfigurationInputs.kt

    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.File
    
    
    /**
     * Defines specific configuration inputs that should not be included in the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    interface IgnoredConfigurationInputs {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicChangesIntegrationTest.groovy

    import org.gradle.internal.cc.impl.fixtures.BuildLogicChangeFixture
    
    class ConfigurationCacheIncludedBuildLogicChangesIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "invalidates cache upon change to included #fixtureSpec"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = fixtureSpec.fixtureForProjectDir(file('build-logic'))
            fixture.setup()
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. releasenotes/notes/56781.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            workGraphLoaded()
            loadOpInCcHitBuild.result.originBuildInvocationId == buildInvocationId
        }
    
        def "emits relevant build operations when configuration cache is used - included build dependency"() {
            given:
            withLibBuild()
            withAppBuild()
    
            when:
            inDirectory 'app'
            configurationCacheRun 'assemble'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

            file("${subprojectName}/src/main/java/${className}.java") << "public class ${className} {}"
        }
    
        @Ignore("this test doesn't really test anything as is; see TODO in setupIncludedBuild()")
        def "included build with different toolchain repository definition"() {
            given:
            settingsFile << settingsForBuildWithIncludedBuilds()
            buildFile << buildConfigForBuildWithIncludedBuilds()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top