Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for Sherer (5.68 sec)

  1. .teamcity/README.md

    - Click the left sidebar "VCS Roots" here and create a VCS root [here](https://builds.gradle.org/admin/editProject.html?projectId=Gradle&cameFromUrl=%2Fproject.html%3FprojectId%3DGradle%26tab%3DprojectOverview%26branch_Gradle_Master_Check%3Dmaster)
      - Suppose the VCS root you just create is `MyNewVcsRoot`. Set "default branch" to `myTestBranch` where your code exists.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

                when (overlayItem) {
                    is PropertyNode -> {
                        // Either there is no underlay property or there is one, but we have ignored it in the underlay traversal
                        // above because it had a matching overlay merge key. In any case, even if there was a matching underlay
                        // property, we are no longer interested in it because the overlay property wins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

                """
                * Where:
                Script '${script.canonicalPath}' line: 1
                """
            }
        }
    
        @Test
        fun `location of exception thrown from buildscript block is reported`() {
    
            val script = withBuildScript("buildscript { $boom }")
    
            assertFailingBuildOutputOf("help") {
                """
                * Where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/extensions.kt

    fun Requirements.requiresNotEc2Agent() {
        doesNotContain("teamcity.agent.name", "ec2")
        // US region agents have name "EC2-XXX"
        doesNotContain("teamcity.agent.name", "EC2")
    }
    
    /**
     * We have some "shared" host where a Linux build agent and a Windows build agent
     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

     * - exposing an instance of [DependencyModifier] to modify dependencies without explicitly calling [DependencyModifier.modify]
     *
     * There are `invoke(...)` equivalents for all the `add(...)` and `addConstraint(...)` methods in [DependencyCollector].
     *
     * There are `invoke(...)` equivalents for all the `modify(...)` methods in [DependencyModifier].
     *
     * @since 8.0
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

            val codecForAny = codec.uncheckedCast<Codec<Any>>()
            val encodingProducer = producerForSubtypesOf(type, codecForAny)
            bind(encodingProducer, codecForAny)
        }
    
        fun <T> bind(codec: T) where T : EncodingProducer, T : Decoding =
            bind(codec, codec)
    
        fun bind(encodingProducer: EncodingProducer, decoding: Decoding) {
            bindings.add(
                Binding(
                    tag = bindings.size,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConventionExtensions.kt

    
    /**
     * Locates the plugin convention object with the given type.
     *
     * @param T the convention plugin type
     * @return the convention plugin
     * @throws [IllegalStateException] when there is no such object contained in this convention, or when there are multiple such objects
     * @see [Convention.getPlugin]
     */
    @Deprecated("The concept of conventions is deprecated. Use extensions instead.")
    inline fun <reified T : Any> Convention.getPlugin(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                from(junitXmlDir) {
                    include("**/TEST-*.xml")
                    includeEmptyDirs = false
                    eachFile {
                        try {
                            // skip files where all tests were skipped
                            if (allTestsWereSkipped(file)) {
                                exclude()
                            }
                        } catch (e: Exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskCollectionExtensions.kt

     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [TaskCollection.withType]
     */
    inline fun <reified S : Task> TaskCollection<in S>.withType(): TaskCollection<S> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

        launcherJar.from(tasks.jar)
        agentJars.from(resolveAgentsClasspath)
        // The trick below is to use the templates from the current code instead of the wrapper. It does not cover the case where the generation logic is updated though.
        unixScriptTemplate.from(layout.projectDirectory.file("../../../platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top