Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 445 for SKIPPED (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            run "copy"
    
            then:
            skipped(':copy')
    
            when:
            run "copy", "-Dcase-sensitive"
    
            then:
            executedAndNotSkipped(':copy')
    
            when:
            run "copy", "-Dcase-sensitive"
    
            then:
            skipped(':copy')
        }
    
        @ToBeImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top