Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,947 for chansend (0.13 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

        }
    
        def "not up-to-date when task name changed"() {
            expect:
            changesBetween(
                impl(PreviousTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
            ) == ["The type of task ':test' has changed from '$PreviousTask.name' to '$SimpleTask.name'." as String]
        }
    
        def "not up-to-date when class-loader has changed"() {
            def previousHash = TestHashCodes.hashCodeFrom(987)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            def project3 = javaLibrary(ivyRepo.module("changed.org", "changed-module", "changed"))
    
            createBuildScripts("""
    project(":project3") {
        publishing {
            publications.ivy {
                organisation "changed.org"
                module "changed-module"
                revision "changed"
            }
        }
    }
    """)
    
            when:
            run "publish"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    }
                    if (host.startParameterProperties != startParameterProperties) {
                        return "the set of Gradle properties has changed"
                    }
                    if (host.ignoreInputsInConfigurationCacheTaskGraphWriting != ignoreInputsInConfigurationCacheTaskGraphWriting) {
                        return "the set of ignored configuration inputs has changed"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentStatus.java

    import javax.annotation.Nullable;
    
    class DefaultDeploymentStatus implements Deployment.Status {
        private final boolean changed;
        private final Throwable failure;
    
        DefaultDeploymentStatus(boolean changed, @Nullable Throwable failure) {
            this.changed = changed;
            this.failure = failure;
        }
    
        @Override
        public Throwable getFailure() {
            return failure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/deployment/internal/OutOfDateTrackingDeployment.java

        private boolean changed;
        private Throwable failure;
    
        @Override
        public synchronized Status status() {
            Status result = new DefaultDeploymentStatus(changed, failure);
            changed = false;
            return result;
        }
    
        @Override
        public synchronized void outOfDate() {
            changed = true;
            failure = null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/NullabilityChangesTest.kt

                    "Method com.example.Source.foo(java.lang.String): Parameter 0 nullability changed from non-nullable to nullable",
                    "Constructor com.example.Source(java.lang.String): Parameter 0 nullability changed from non-nullable to nullable",
                    "Method com.example.SourceKt.invoke(com.example.Source,java.lang.String): Parameter 1 nullability changed from non-nullable to nullable"
                )
                assertHasNoInformation()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/PropertiesTransformerTest.groovy

            Properties original = props(removed:'value', changed:'old')
            when:
            def result = transformer.transform(original)
            then:
            action.execute(_) >> { Properties props ->
                props.remove('removed')
                props.changed = 'new'
                props.added = 'value'
            }
            props(changed:'new', added:'value') == result
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

            then:
            assert classloader.loadClass('Thing').getDeclaredFields()*.name == ["CHANGED"]
        }
    
        @UnsupportedWithConfigurationCache(because = "taskGraph.afterTask")
        def "new build should be triggered when input files to tasks are changed after each task has been executed, but before the build has completed (changed: #changingInput)"() {
            given:
            ['a', 'b', 'c', 'd'].each { file(it).createDir() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    		} else {
    			existingCondition.LastTransitionTime = metav1.NewTime(time.Now())
    		}
    		changed = true
    	}
    
    	if existingCondition.Reason != newCondition.Reason {
    		existingCondition.Reason = newCondition.Reason
    		changed = true
    	}
    	if existingCondition.Message != newCondition.Message {
    		existingCondition.Message = newCondition.Message
    		changed = true
    	}
    	if existingCondition.ObservedGeneration != newCondition.ObservedGeneration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            def project3 = javaLibrary(mavenRepo.module("changed.group", "changed-artifact-id", "changed"))
    
            def extra = """
    project(":project3") {
        publishing {
            publications.maven {
                groupId "changed.group"
                artifactId "changed-artifact-id"
                version "changed"
            }
        }
    }
    """
            if (mapping) {
                extra = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top