Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for Change (0.29 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ResolverCoordinatorTest.kt

    import org.gradle.kotlin.dsl.fixtures.assertInstanceOf
    
    import org.junit.Test
    
    
    class ResolverCoordinatorTest {
    
        @Test
        fun `given an environment with a 'getScriptSectionTokens' entry, when no buildscript change, it will not try to retrieve the model`() {
    
            val environment =
                environmentWithGetScriptSectionTokensReturning(
                    "buildscript" to sequenceOf(""),
                    "plugins" to sequenceOf("")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. testing/smoke-test/build.gradle.kts

        smokeTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    tasks {
    
        /**
         * Santa Tracker git URI.
         *
         * Note that you can change it to `file:///path/to/your/santa-tracker-clone/.git`
         * if you need to iterate quickly on changes to Santa Tracker.
         */
        val santaGitUri = "https://github.com/gradle/santa-tracker-android.git"
    
        val santaTracker by registering(RemoteProject::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/groovy/build.gradle

                        fromResolutionResult()
                    }
                }
            }
        }
    // end::versions-resolved[]
    // end::customize-descriptor[]
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url layout.buildDirectory.dir('repo')
            }
        }
    }
    
    // tag::generate[]
    generateDescriptorFileForIvyCustomPublication {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

                    }
                }
    // tag::versions-resolved[]
            }
        }
    // end::versions-resolved[]
    // end::pom-customization[]
        repositories {
            maven {
                // change URLs to point to your repos, e.g. http://my.org/repo
                val releasesRepoUrl = uri(layout.buildDirectory.dir("repos/releases"))
                val snapshotsRepoUrl = uri(layout.buildDirectory.dir("repos/snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

                    }
                }
    // tag::versions-resolved[]
            }
        }
    // end::versions-resolved[]
    // end::pom-customization[]
        repositories {
            maven {
                // change URLs to point to your repos, e.g. http://my.org/repo
                def releasesRepoUrl = layout.buildDirectory.dir('repos/releases')
                def snapshotsRepoUrl = layout.buildDirectory.dir('repos/snapshots')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildOperationsAssertions.kt

            .filter { it.startsWith("Cannot use Kotlin build script compile avoidance with") }
            // filter out avoidance warnings for versioned jars - those come from Kotlin/libraries that don't change when code under test changes
            .filterNot { it.contains(Regex("\\d.jar: ")) }
    
        init {
            if (!expectWarnings) {
                MatcherAssert.assertThat(compileAvoidanceWarnings, Matchers.isEmpty())
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/kotlin/build.gradle.kts

            }
            create<MavenPublication>("binaryAndSources") {
                from(components["java"])
                artifact(tasks["sourcesJar"])
            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            maven {
                name = "external"
                url = uri(layout.buildDirectory.dir("repos/external"))
            }
            maven {
                name = "internal"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        else -> actualBranch
    }
    
    /**
     * The build environment.
     *
     * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
     *          since this whole object is kept in the classloader between builds.
     *          Anything that changes must be in a val with a get() method that recomputes the value each time.
     */
    object BuildEnvironment {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. .teamcity/README.md

    ## Develop and verify
    
    After you make a change, you can run `mvn clean teamcity-configs:generate` to generate and verify the generated TeamCity configuration XMLs.
    
    You also need to run `mvn clean verify` with Java 8 before committing changes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            /**
             * Whether the undeclared inputs accessed while serializing the task graph will be
             * excluded from input tracking. This is a temporary opt-out flag after a change
             * was made in that behavior.
             */
            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean,
            /**
             * Whether the instrumentation agent was used when computing the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top