Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for whee (0.07 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/EnableFileSystemWatchingIntegrationTest.groovy

            """
    
            when:
            run("assemble", "--info")
            then:
            outputContains(ENABLED_IF_AVAILABLE_MESSAGE)
            outputContains(ACTIVE_MESSAGE)
    
            where:
            watchMode << WatchMode.values()
        }
    
        def "cannot define a custom build scope cache dir when watching is explicitly enabled"() {
            buildFile << """
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
            resultRoot.children == childrenWithSelectedChildRemoved()
            isSameNodeType(resultRoot)
            removedNodes == [selectedChild]
            addedNodes.empty
            interaction { noMoreInteractions() }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

        }
    
        def "returns relative path where file inside of root"() {
            when:
            def file = new File(rootDir, filePath)
            def current = new File(rootDir, "current/dir")
    
            then:
            transform(current, file) == relativePath
    
            where:
            filePath                   | relativePath
            "child.txt"                | "../../child.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

        }
    
        def "get(#key) is tracked for non-strings"() {
            when:
            def result = getMapUnderTestToRead().get(key)
    
            then:
            result == expectedResult
            1 * listener.onAccess(key, expectedResult)
    
            where:
            key                     | expectedResult
            EXISTING_KEY            | EXISTING_VALUE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

        def comparer = ExhaustiveLinesSearcher.useLcsDiff()
    
        // region: assertLinesContainedIn
        def "neither expected or actual lines can be empty"() {
            when:
            comparer.assertLinesContainedIn([], ["a"])
            then:
            thrown(AssertionError)
    
            when:
            comparer.assertLinesContainedIn(["a"], [])
            then:
            thrown(AssertionError)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/ProgressStartEventSerializerTest.groovy

            where:
            category << BuildOperationCategory.values()
        }
    
        def "can serialize ProgressStartEvent messages with empty fields"() {
            given:
            def event = new ProgressStartEvent(OPERATION_ID, null, TIMESTAMP, CATEGORY, DESCRIPTION, loggingHeader, "", 0, false, null, BuildOperationCategory.UNCATEGORIZED)
    
            when:
            def result = serialize(event, serializer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

                    from 'parent'
                }
                """
            when:
            run "pack"
            file(archName).usingNativeTools()."$unpackMethod"(file("build"))
            then:
            file("build/child").mode == 0777
            file("build/child/reference.txt").mode == 0746
            where:
            taskName | unpackMethod
            "Zip"    | "unzipTo"
            "Tar"    | "untarTo"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

                }
                """
    
            when:
            succeeds taskName
    
            def archive = file("build/test.${fileExtension}")
            then:
            def firstFileHash = archive.md5Hash
    
            when:
            file('dir1/file11.txt').makeOlder()
            archive.delete()
            succeeds taskName
    
            then:
            archive.md5Hash == firstFileHash
    
            where:
            taskName << ['tar', 'zip']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractValidatingLockingIntegrationTest.groovy

            when:
            fails 'checkDeps'
    
            then:
            failure.assertHasCause("Could not resolve all files for configuration ':lockedConf'.")
            failure.assertHasCause("Resolved 'org:bar:1.0' which is not part of the dependency lock state")
    
            where:
            unique << [true, false]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/SettingsScriptPluginIntegrationSpec.groovy

            given:
            doConfigureSettingsPlugin()
            file("settings$settingScriptExtension") << use
    
            when:
            succeeds 'customTask'
    
            then:
            outputContains("Executing task added by a 'Settings' plugin")
    
            where:
            settingScriptExtension | use
            '.gradle.kts'          | USE_KOTLIN
            '.gradle'              | USE
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top