Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for SKIPPED (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecutionOutcome.java

        UP_TO_DATE(true, true, "UP-TO-DATE"),
        SKIPPED(true, false, "SKIPPED"),
        NO_SOURCE(true, false, "NO-SOURCE"),
        EXECUTED(false, false, null);
    
        private final boolean skipped;
        private final boolean upToDate;
        private final String message;
    
        TaskExecutionOutcome(boolean skipped, boolean upToDate, @Nullable String message) {
            this.skipped = skipped;
            this.upToDate = upToDate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 16:09:32 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            file('build/input.txt').makeOlder()
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
    
            buildFile << """
                task other {}
            """
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
        }
    
        def "task with type declared in build script is not up-to-date after build script change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            and:
            final projectFile = projectFile("mainExe.vcxproj")
            assert projectFile.sourceFiles.contains('src/main/cpp/foo.cpp')
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("main")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCleanupProgressMonitorTest.groovy

            1 * context.progress("2 entries deleted, 1 skipped")
        }
    
        def "always reports deleted, even if all entries are skipped"() {
            when:
            progressMonitor.incrementSkipped()
    
            then:
            1 * context.progress("0 entries deleted, 1 skipped")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            }
        }
    
        def "captures skipped test progress logging events" () {
            withSkippedTestClasses(10)
    
            when:
            succeeds("test")
    
            then:
            events.statusLogged("0 tests completed")
            events.statusLogged("1 test completed, 1 skipped")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed, ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

            when:
            logging.events STARTED, SKIPPED
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows events to be added as string values"() {
            when:
            logging.events "started", "skipped"
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows stack trace formats to be added as enum values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/BuildCacheOutputOriginIntegrationTest.groovy

            when:
            succeeds "clean", "write"
    
            then:
            skipped ":write"
            with(origin(":write")) {
                buildInvocationId == thirdBuildId
                buildCacheKey == thirdBuildCacheKey
            }
    
            when:
            succeeds  "write"
    
            then:
            skipped ":write"
            originBuildInvocationId(":write") == thirdBuildId
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 14:10:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/testing/match_test.go

    		{"", "TestFoo/skipped", "", "TestFoo", true, false},
    		{"TestFoo", "TestFoo/skipped", "", "TestFoo", true, false},
    		{"TestFoo/", "TestFoo/skipped", "", "TestFoo", true, true},
    		{"TestFoo/bar/baz", "TestFoo/skipped", "", "TestFoo", true, true},
    		{"TestFoo", "TestFoo/skipped", "", "TestBar", false, false},
    		{"TestFoo/", "TestFoo/skipped", "", "TestBar", false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/CachedScalaCompileIntegrationTest.groovy

            withBuildCache().run compilationTask
    
            then:
            skipped compilationTask
            // Local state is removed when loaded from cache
            classes.analysisFile.assertDoesNotExist()
    
            when:
            cleanBuildDir()
            withBuildCache().run compilationTask
    
            then:
            skipped compilationTask
            // Local state is removed when loaded from cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/TaskExecutionTest.groovy

    import org.gradle.api.tasks.TaskState
    import spock.lang.Specification
    
    class TaskExecutionTest extends Specification {
    
        def "knows task status"() {
            def skipped = Stub(TaskState) {
                getSkipped() >> true
                getSkipMessage() >> "Skipped for a good reason."
            }
            def busy = Stub(TaskState) {
                getSkipped() >> false
                getDidWork() >> true
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top