Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for Gill (0.09 sec)

  1. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            requiresNotEc2Agent()
            requiresNotSharedHost()
        }
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
         To avoid unnecessary rerun, what we do here is a bit complicated:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. architecture/build-state-model.md

    A session runs the build one or more times.
    For example, when continuous build is enabled, the session may run the build many times, but when it is disabled, the session will run the build once only.
    
    The build session state is managed by the `BuildSessionState` class.
    An instance is created at the start of a Gradle invocation and discarded at the end of that invocation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/GradleDelegate.kt

    import org.gradle.internal.deprecation.DeprecationLogger
    import java.io.File
    
    
    /**
     * Facilitates the implementation of the [Gradle] interface by delegation via subclassing.
     */
    @Deprecated("Will be removed in Gradle 9.0")
    abstract class GradleDelegate : Gradle {
    
        init {
            @Suppress("DEPRECATION")
            if (!org.gradle.kotlin.dsl.InitScriptApi::class.java.isAssignableFrom(this::class.java)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            // and that usage can be benign. This is especially important when the currently running task is
            // marked as `notCompatibleWithConfigurationCache` - attributing the error to `task` will cause
            // the build to fail when it really shouldn't.
            val contextTask = runningTask ?: task
            val isExecutingOtherTask = contextTask != task
            problemsListenerFor(contextTask).onProblem(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

            }
    
            override fun toRestoring(): Restoring {
                // Restoration must consider properties that was overridden after store.
                // When property was loaded and stored then loaded value will be presented for execution time after restore.
                // This is a wrong behavior if property was overridden. Execution time must see overridden value instead of restored one.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/AccessorTest.kt

            assertEquals(123, runtimeInstanceFromResult.myLambdaReceiver.x)
            assertEquals("test", runtimeInstanceFromResult.myLambdaReceiver.y)
        }
    
        // don't make this private, will produce failures on Java 8 (due to https://youtrack.jetbrains.com/issue/KT-37660)
        val runtimeCustomAccessors = object : RuntimeCustomAccessors {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                </p>
                ${writeFilterPreset(project)}
    """.stripIndent()
    
            it.renderer.set(EnrichedReportRenderer.class)
        } as Action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                params("${providedBy.size + 1}")
            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
        fun ConfigurationContainer.forceUpgrade(to: String, version: String) = all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. Development.md

    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val gradleUserHomeDir: File,
            val jvm: String,
            val startParameterProperties: Map<String, Any?>,
            /**
             * 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,
            /**
    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