Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 701 for SKIPPED (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoCachingIntegrationTest.groovy

            when:
            succeeds "clean"
            then:
            reportFile.assertDoesNotExist()
    
            when:
            withBuildCache().run "jacocoTestReport", "jacocoTestCoverageVerification"
            then:
            skipped ":test", ":jacocoTestReport", ":jacocoTestCoverageVerification"
            reportFile.assertContentsHaveNotChangedSince(snapshot)
        }
    
        def "jacoco file results are not cached when sharing output with another task"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                        case SUCCESS:
                            return Collections.singleton(success(classId, execution.getId()));
                        case SKIPPED:
                            return Collections.singleton(skipped(classId, execution.getId()));
                        case FAILURE:
                            return failures(classId, execution, allFailed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestClassExecutionResult.java

         * Asserts that the given tests have the given outcome for the given test class.
         */
        default TestClassExecutionResult assertTestOutcomes(TestOutcome status, String... testNames) {
            if (status == TestOutcome.SKIPPED) {
                return assertTestsSkipped(testNames);
            }
            for (String testName : testNames) {
                switch (status) {
                    case PASSED:
                        assertTestPassed(testName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedDecoder.java

            // Work around some bugs in Input.skip()
            int remaining = input.limit() - input.position();
            if (remaining == 0) {
                long skipped = inputStream.skip(count);
                if (skipped > 0) {
                    extraSkipped += skipped;
                }
                return skipped;
            } else if (count <= remaining) {
                input.setPosition(input.position() + (int) count);
                return count;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top