Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,947 for chansend (0.8 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            withProjectConfig("b") {
                outputFileName = "new"
                outputFileContent = "new"
            }
            succeeds(":a:resolve")
    
            then: // directory content has changed (file contents changed)
            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("b-dir")
            outputContains("result = [b-dir.green, c-dir.green]")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy

        }
    
        Violation maybeViolation(final JApiCompatibility member) {
            if (!(member instanceof JApiClass)) {
                return null
            }
    
            if (!changed(member)) {
                return null
            }
    
            Optional<CtClass> oldClass = member.oldClass
            Optional<CtClass> newClass = member.newClass
            if (!oldClass.isPresent() || !newClass.isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            then: "the cache entry is invalidated and the change is reported"
            configurationCache.assertStateStored()
            outputContains("because directory '$testFileName' has changed")
    
            when: "directory content is not changed since the last modification"
            configurationCacheRunLenient()
    
            then: "cache entry is reused"
            configurationCache.assertStateLoaded()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

            mavenMetadata.parsedPom.scopes.runtime.assertDependsOn("log4j:log4j:1.2.17")
        }
    
        def "test adding custom variant with dependency mapped to Maven compile scope, then changed to runtime scope, then changed back to compile"() {
            given:
            buildFile << """
                components.java.addVariantsFromConfiguration(configurations.custom) {
                    mapToMavenScope('compile')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultFileContentCacheFactoryTest.groovy

            result == 12
    
            and:
            interaction {
                snapshotRegularFile(file)
            }
            0 * _
        }
    
        def "reuses result when file content has not changed after task outputs may have changed"() {
            def file = new File("thing.txt")
            def cache = factory.newCache("cache", 12000, calculator, BaseSerializerFactory.INTEGER_SERIALIZER)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. releasenotes/notes/36813.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 36723
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 21 01:51:01 UTC 2022
    - 183 bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            when:
            logLineCountBeforeChange = daemon.logLineCount
            file("output.txt").text = "Changed"
            waitForChangesToBePickedUp()
            then:
            !daemon.logContains(logLineCountBeforeChange, NativeLogger.name)
        }
    
        def "logs handled events between builds only if something changed in the VFS"() {
            buildFile << """
                plugins {
                    id('java')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    					b.Func.Warnl(b.Controls[0].Pos, "Redirect %s based on %s", b.Controls[0].Op, p.Controls[0].Op)
    				}
    				changed = true
    				k--
    				break
    			}
    			ft.restore()
    		}
    		if len(b.Preds) == 0 && b != f.Entry {
    			// Block is now dead.
    			b.Kind = BlockInvalid
    		}
    	}
    	ft.restore()
    	ft.cleanup(f)
    	return changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            then:
            executedAndNotSkipped ":myTask"
    
            when:
            withWatchFs().run "myTask"
            then:
            skipped(":myTask")
    
            when:
            file(fileToChange).text = "changed"
            waitForChangesToBePickedUp()
            withWatchFs().run "myTask"
            then:
            executedAndNotSkipped ":myTask"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top