Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 771 for SKIPPED (0.1 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/tests/publishingIvyConditionally.out

    > Task :sourcesJar
    > Task :publishBinaryAndSourcesPublicationToExternalRepository SKIPPED
    > Task :publishBinaryAndSourcesPublicationToInternalRepository
    > Task :generateDescriptorFileForBinaryPublication
    > Task :generateMetadataFileForBinaryPublication
    > 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
    - 633 bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            when:
            withBuildCache().run 'myTask', '-Panonymous'
            then:
            skipped(':myTask')
    
            when:
            withBuildCache().run 'myTask'
            then:
            skipped(':myTask')
    
            when:
            withBuildCache().run 'myTask', '-Panonymous'
            then:
            skipped(':myTask')
        }
    
        private TestFile setupTaskClassWithActionProperty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/TestResultModel.java

            switch (getResultType()) {
                case SUCCESS:
                    return "success";
                case FAILURE:
                    return "failures";
                case SKIPPED:
                    return "skipped";
                default:
                    throw new IllegalStateException();
            }
        }
    
        public String getFormattedResultType() {
            switch (getResultType()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K 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. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/recognizer/recognizer.go

    	var (
    		lastErr error
    		skipped []runtime.Decoder
    	)
    
    	// try recognizers, record any decoders we need to give a chance later
    	for _, r := range d.decoders {
    		switch t := r.(type) {
    		case RecognizingDecoder:
    			ok, unknown, err := t.RecognizesData(data)
    			if err != nil {
    				lastErr = err
    				continue
    			}
    			if unknown {
    				skipped = append(skipped, t)
    				continue
    			}
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

            then:
            succeeds ":b:${language.compileTaskName}"
            skipped ":a:${language.compileTaskName}"
            skipped ":b:${language.compileTaskName}"
    
            when:
            resourceFile.delete()
    
            then:
            succeeds ":b:${language.compileTaskName}"
            skipped ":a:${language.compileTaskName}"
            skipped ":b:${language.compileTaskName}"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            given:
            buildFile << basicScalaProject()
            file('src/main/scala/MyClass.java') << javaClassWithCustomAnnotation()
    
            when:
            fails 'compileScala'
    
            then:
            skipped(':compileJava')
            executedAndNotSkipped(':compileScala')
            result.assertHasErrorOutput('error: package org.gradle does not exist')
            failure.assertHasCause('javac returned non-zero exit code')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. 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)
Back to top