Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for unnecessary (1.86 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

    import gradlebuild.testcleanup.extension.TestFilesCleanupProjectState
    
    /**
     * When run from a Continuous Integration environment, we only want to archive a subset of reports, mostly for
     * failing tasks only, to not use up unnecessary disk space on Team City. This also improves the performance of
     * artifact publishing by reducing the artifacts and packaging reports that consist of multiple files.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/PublishArtifactLocalArtifactMetadataCodec.kt

    import org.gradle.internal.serialize.graph.WriteContext
    
    
    /**
     * This class exists because PublishArtifactLocalArtifactMetadata is used as its own id, and so when serialized as an id causes
     * a lot of unnecessary and unserializable state to be dragged in.
     *
     * A better change would be to split an immutable id type out of PublishArtifactLocalArtifactMetadata (or reuse one of the existing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            // 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:
    
         1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

        /**
         * Stops recording [ClassLoaderScopeSpec]s and releases any recorded state.
         */
        fun dispose() {
            synchronized(lock) {
                // TODO:configuration-cache find a way to make `dispose` unnecessary;
                //  maybe by extracting an `ConfigurationCacheBuildDefinition` service
                //  from DefaultConfigurationCacheHost so a decision based on the configured
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

                }
            }
        }
    
        static void checkEnvironmentVariableUnset(String key) {
            // We can't "unset" the variable with the API executer provides, but it isn't necessary, thanks to the filtering in
            // build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt
            if (System.getenv().containsKey(key)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.support.serviceOf
    
    /**
     * In build-logic and main build, register a BuildService instance separately,
     * which collects necessary information for build scan.
     */
    fun <T : AbstractBuildScanInfoCollectingService> Project.registerBuildScanInfoCollectingService(
        /* the implementation class to collect information from task execution result */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/internal/coerce/MethodArgumentsTransformer.java

     */
    public interface MethodArgumentsTransformer {
    
        /**
         * Transforms an argument list to call a method with.
         *
         * May return {@code args} if no transform is necessary.
         */
        Object[] transform(CachedClass[] types, Object[] args);
    
        /*
         * Returns Whether the transformer can transform
         * these arguments at all.
         */
        boolean canTransform(Object[] args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/projects/StageProject.kt

            performanceTests.forEach { performanceTestTrigger ->
                // The space removal is necessary - otherwise it doesn't show
                val artifactDirName = performanceTestTrigger.name.replace(" ", "")
                performancePartialTrigger.dependencies {
                    artifacts(performanceTestTrigger) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementReplacingVisitorSupport.java

    import org.codehaus.groovy.ast.stmt.*;
    import org.codehaus.groovy.control.SourceUnit;
    
    /**
     * Adds the ability to replace statements.
     */
    // Implementation note: It is only necessary to override visit methods
    // for AST nodes that reference statements. For ClosureExpression we rely on
    // the assumption that it always references a BlockStatement and hence our
    // visitBlockStatement() method gets called.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    dirName = layout.buildDirectory.file('dirName.txt')
                }
    
                tasks.register('answer', Consumer) {
                    // TODO:configuration should this `dependsOn` be necessary here?
                    dependsOn 'producer'
    
                    Provider<String> computedDirName = computeDirName.flatMap { it.dirName }.map { it.asFile.text }
                    def file = layout.buildDirectory.$provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top