Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 771 for SKIPPED (0.16 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskState.java

        /**
         * Returns true if the execution of this task was skipped for some reason.
         *
         * @return true if this task has been executed and skipped.
         */
        boolean getSkipped();
    
        /**
         * Returns a message describing why the task was skipped.
         *
         * @return the message. returns null if the task was not skipped.
         */
        @Nullable
        String getSkipMessage();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.createFile()
            run 'producesLink'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedRelocationIntegrationTest.groovy

            withBuildCache().run "jar", "customTask"
    
            then:
            skipped ":compileJava", ":customTask"
    
            when:
            executer.usingProjectDirectory(originalLocation)
            run "clean"
    
            executer.usingProjectDirectory(originalLocation)
            withBuildCache().run "jar", "customTask"
    
            then:
            skipped ":compileJava", ":customTask"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

            then:
            executedAndNotSkipped(":signJar")
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
    
            when:
            run "signJar"
    
            then:
            skipped(":signJar")
        }
    
        def "sign multiple jars with default signatory"() {
            given:
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
                ${javadocAndSourceJarsScript}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/tests/publishingMavenConditionally.out

    > Task :sourcesJar
    > Task :publishBinaryAndSourcesPublicationToExternalRepository SKIPPED
    > Task :publishBinaryAndSourcesPublicationToInternalRepository
    > Task :generateMetadataFileForBinaryPublication
    > Task :generatePomFileForBinaryPublication
    > Task :publishBinaryPublicationToExternalRepository
    > Task :publishBinaryPublicationToInternalRepository SKIPPED
    > Task :publish
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 619 bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCleanupProgressMonitor.java

        @Override
        public void incrementSkipped(long amount) {
            skipped += amount;
            updateProgress();
        }
    
        public long getDeleted() {
            return deleted;
        }
    
        private void updateProgress() {
            buildOperationContext.progress(mandatoryNumber(deleted, " entry", " entries") + " deleted"
                + optionalNumber(", ", skipped, " skipped"));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top