Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 771 for SKIPPED (0.1 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

         */
        UP_TO_DATE,
    
        /**
         * The task was not executed due to some reason.
         *
         * For Gradle version < 3.4, a task may be skipped if it had no work to do (e.g. no source to compile).
         */
        SKIPPED,
    
        /**
         * The task executed, but did not perform work as its output was found in a build cache.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/extensions/MultiTestLifecycleSpec.groovy

                "rule before", "setup", "unrolled test with required: 3: isFluid: true", "cleanup", "rule after",
                "rule before", "setup", "skipped test: isFluid: false", "cleanup", "rule after",
                "rule before", "setup", "skipped test: isFluid: true", "cleanup", "rule after"
            ])
        }
    
        def setup() {
            LIFECYCLE.pushEvent("setup")
        }
    
        def cleanup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

        private static final String TASK_PREFIX = "> Task ";
    
        //for example: ':a SKIPPED' or ':foo:bar:baz UP-TO-DATE' but not ':a'
        private static final Pattern SKIPPED_TASK_PATTERN = Pattern.compile("(> Task )?(:\\S+?(:\\S+?)*)\\s+((SKIPPED)|(UP-TO-DATE)|(NO-SOURCE)|(FROM-CACHE))");
    
        //for example: ':hey' or ':a SKIPPED' or ':foo:bar:baz UP-TO-DATE' but not ':a FOO'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            withBuildCache().run "jar"
            then:
            noneSkipped()
    
            expect:
            withBuildCache().run "clean"
    
            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
        }
    
        def "outputs are correctly loaded from cache"() {
            buildFile << """
                apply plugin: "application"
                application {
                    mainClass = "Hello"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/resources/org/gradle/api/internal/tasks/testing/report/style.css

    .success, .success a {
        color: #008000;
    }
    
    div.success, #successRate.success {
        background-color: #bbd9bb;
        border-color: #008000;
    }
    
    .failures, .failures a {
        color: #b60808;
    }
    
    .skipped, .skipped a {
        color: #c09853;
    }
    
    div.failures, #successRate.failures {
        background-color: #ecdada;
        border-color: #b60808;
    }
    
    ul.linkList {
        padding-left: 0;
    }
    
    ul.linkList li {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            """
    
            when:
            withWatchFs().run "myTask"
            then:
            executedAndNotSkipped(":myTask")
    
            when:
            withWatchFs().run "myTask"
            then:
            skipped(":myTask")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/11851")
        def "changes to #description are detected"() {
            file(fileToChange).createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            buildScript(classes.buildScript())
    
            when:
            succeeds scaladoc
            then:
            executedAndNotSkipped scaladoc
    
            when:
            succeeds scaladoc
            then:
            skipped scaladoc
            newScalaVersion != this.classes.scalaVersion
    
            when:
            this.classes.scalaVersion = newScalaVersion
            buildScript(this.classes.buildScript())
            succeeds scaladoc
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftCachingIntegrationTest.groovy

                inDirectory(newLocation)
            }
            withBuildCache().run upstreamCompileTasks
    
            then:
            skipped upstreamCompileTasks
    
            when:
            run compileTask(buildType), installTask(buildType)
    
            then:
            skipped upstreamCompileTasks
            executedAndNotSkipped compileTask(buildType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractDecoder.java

        public void skipBytes(long count) throws EOFException, IOException {
            long remaining = count;
            while (remaining > 0) {
                long skipped = maybeSkip(remaining);
                if (skipped <= 0) {
                    break;
                }
                remaining -= skipped;
            }
            if (remaining > 0) {
                throw new EOFException();
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            executedAndNotSkipped(":compileJava", ":compileTestJava", ":test")
            skipped(":processResources")
    
            when:
            testFile.text = "class TestThing extends Thing { static public int FLAG = 1; }"
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":compileTestJava", ":test")
            skipped(":processResources", ":compileJava")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top