Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for unnecessary (0.81 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-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SummarizingChangeContainer.java

    package org.gradle.internal.execution.history.changes;
    
    import com.google.common.collect.ImmutableList;
    
    import java.util.List;
    
    /**
     * Provides an efficient summary of the changes, without doing too much unnecessary work.
     * - Will only emit changes of a single type (from a single delegate change set)
     */
    public class SummarizingChangeContainer implements ChangeContainer {
        private final List<ChangeContainer> sources;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. .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)
  5. 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)
  6. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

            synchronized (delegate) {
                delegate.replaceAll((k, v) -> {
                    Object newValue = function.apply(k, v);
                    // It is a bit of optimization to avoid storing unnecessary stores when the value doesn't change.
                    // Strings and primitive wrappers are tested with "equals", user types are tested for reference
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ChangingOutputsContext.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    /**
     * Context necessary for steps that change the outputs.
     *
     * This context doesn't add any new information, it encodes a requirement
     * in the type system that a step can change the outputs.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1023 bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

       This build uses PGP verification and SHA256 checksum verification for unsigned artifacts:
    
       ./gradlew -i -write-verification-metadata sha256,pgp -export-keys resolveAllDependencies
    
       Then check the diff, remove the unnecessary entries (for old dependencies) and make sure
       the new ones are correct. If any ignored keys are added, attempt to download them from a keyserver
       and follow the steps in documentation to add them to the keyring if found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            return doRegisterTestProject(testProject, type, configurationAction) {
                // AndroidStudio jvmArgs could be set per project, but at the moment that is not necessary
                jvmArgumentProviders.add(androidProjectJvmArguments)
                environment("JAVA_HOME", LazyEnvironmentVariable { javaLauncher.get().metadata.installationPath.asFile.absolutePath })
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. 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)
Back to top