Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for SKIPPED (0.09 sec)

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

            then:
            skipped ":project-lib:jar", ":verify"
    
            when: "changing project library source code"
            withChangedSourceIn("project-lib")
            succeeds "verify"
    
            then:
            executedAndNotSkipped ":project-lib:jar"
            skipped ":verify"
    
            when:
            succeeds "verify"
    
            then:
            skipped ":project-lib:jar", ":verify"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            when:
            cleanBuildDir()
            withBuildCache().run "producer"
            then:
            skipped ":producer"
    
            when:
            withBuildCache().run "producer", "--info"
            !output.contains("Caching disabled for task ':producer'")
            then:
            skipped ":producer"
        }
    
        def "task can be cached after loaded from cache"() {
            file("input.txt").text = "input"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/runtime/cgocheck.go

    			if off < at.Elem.Size_ {
    				cgoCheckUsingType(at.Elem, src, off, size)
    			}
    			src = add(src, at.Elem.Size_)
    			skipped := off
    			if skipped > at.Elem.Size_ {
    				skipped = at.Elem.Size_
    			}
    			checked := at.Elem.Size_ - skipped
    			off -= skipped
    			if size <= checked {
    				return
    			}
    			size -= checked
    		}
    	case abi.Struct:
    		st := (*structtype)(unsafe.Pointer(typ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':wearable:generateDebugResources': FROM_CACHE,
            ':wearable:javaPreCompileDebug': FROM_CACHE,
            ':wearable:kaptDebugKotlin': SKIPPED,
            ':wearable:kaptGenerateStubsDebugKotlin': SKIPPED,
            ':wearable:mapDebugSourceSetPaths': SUCCESS,
            ':wearable:mergeDebugAssets': SUCCESS,
            ':wearable:mergeDebugGlobalSynthetics': FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

            when:
            run 'compileScala'
    
            then:
            executedAndNotSkipped ':compileScala'
    
            when:
            run 'compileScala'
    
            then:
            skipped ':compileScala'
    
            when:
            buildScript(scalaProjectBuildScript(newZincVersion, newScalaVersion))
            run 'compileScala'
    
            then:
            executedAndNotSkipped ':compileScala'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. 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)
  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. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                def pluginsWithProjectPath = result.tasks
                    .findAll {
                        !(it.outcome in [
                            TaskOutcome.NO_SOURCE,
                            TaskOutcome.SKIPPED
                        ]) && it.path.contains(taskPattern) && !it.path.startsWith(':plugins:') // ignore plugins project from previous version, it doesn't exist anymore (TODO: remove this check)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top