Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for discarded (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    isFailingBuildDueToSerializationError -> log("Configuration cache entry discarded with {}.", problemCountString)
                    cacheAction == STORE && discardStateDueToProblems && !hasProblems -> log("Configuration cache entry discarded${incompatibleTasksSummary()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            configurationCacheFails(*(projectConfig.tasks))
            server.resetExpectations()
    
            then:
            configurationCache.assertStateStoreFailed()
            outputContains("Configuration cache entry discarded")
            failure.assertHasFailures(1)
            failure.assertHasDescription("Configuration cache problems found in this build")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            assertHasWarningThatIncubatingFeatureUsed()
            assertProjectsConfigured(details)
            assertModelsQueried(details)
        }
    
        /**
         * Asserts that the cache entry was written but discarded due to some problems.
         *
         * Also asserts that the expected set of projects is configured, the expected models are queried
         * and the appropriate console logging, reports and build operations are generated.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            succeeds 'publish'
    
            then:
            module.assertPublishedAsJavaModule()
            if (GradleContextualExecuter.isConfigCache()) {
                postBuildOutputContains("Configuration cache entry discarded")
            }
        }
    
        def "can publish to authenticated repository with name not valid as identity as long as one uses inlined credentials "() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                tasks.named("jar") { dependsOn("printValue") }
            """)
    
            when:
            configurationCacheFails()
    
            then:
            outputContains("Configuration cache entry discarded with 1 problem.")
            problems.assertFailureHasProblems(failure) {
                totalProblemsCount = 1
                // TODO(mlopatkin): Is it possible to figure out a correct location? Report falls back to "Gradle runtime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            if (node is ActionNode) {
                val setupNode = node.action?.preExecutionNode
                // Could probably add some abstraction for nodes that can be executed eagerly and discarded
                if (setupNode is DefaultTransformUpstreamDependenciesResolver.FinalizeTransformDependenciesFromSelectedArtifacts.CalculateFinalDependencies) {
                    setupNode.run(object : NodeExecutionContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                    $exceptionHandlerImpl
                }
            """)
    
            when:
            configurationCacheFails()
    
            then:
            outputContains("Configuration cache entry discarded with 1 problem.")
            failure.assertHasFailures(expectedFailuresCount)
            problems.assertFailureHasProblems(failure) {
                totalProblemsCount == 1
                problemsWithStackTraceCount == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    // The output channel will be closed when all inputs are emptied.
    // If file names are equal, compareMeta is called to select which one to choose.
    // The entry not chosen will be discarded.
    // If the context is canceled the function will return the error,
    // otherwise the function will return nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder.go

    	// resolve cluster name conflicts. there can be duplicate cluster names if there are conflicting service definitions.
    	// for any clusters that share the same name the first cluster is kept and the others are discarded.
    	have := sets.String{}
    	out := make([]*discovery.Resource, 0, len(clusters))
    	for _, c := range clusters {
    		if !have.InsertContains(c.Name) {
    			out = append(out, c)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

        ConfigurationCacheFixture fixture = new ConfigurationCacheFixture(this)
    
        def "reports incompatible task serialization error and discards cache entry when task is scheduled"() {
            given:
            withBrokenSerializableType()
            addTasksWithProblems('new BrokenSerializable()')
    
            when:
            configurationCacheRun("declared")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top