Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 771 for SKIPPED (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/job/PurgeLogJob.java

                final int days = ComponentUtil.getFessConfig().getPurgeSearchLogDay();
                if (days >= 0) {
                    searchLogService.deleteBefore(days);
                } else {
                    resultBuf.append("Skipped to purge search logs.\n");
                }
            } catch (final Exception e) {
                logger.error("Failed to purge search logs.", e);
                resultBuf.append(e.getMessage()).append("\n");
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            when:
            succeeds("printCounts")
            then:
            skipped(':myTask')
            outputContains("outputFileCount = 1, inputFileCount = 2, inputValueCount = 1, nestedInputCount = 3, nestedInputValueCount = 1")
    
            when:
            file('build').deleteDir()
            withBuildCache().succeeds("printCounts")
            then:
            skipped(':myTask')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogEvent.java

        /**
         * A test has completed successfully. This event gets fired both for atomic and composite tests.
         */
        PASSED,
    
        /**
         * A test has been skipped. This event gets fired both for atomic and composite tests.
         */
        SKIPPED,
    
        /**
         * A test has failed. This event gets fired both for atomic and composite tests.
         */
        FAILED,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/IncrementalGroovyProjectBuildIntegrationTest.groovy

            '''
    
            when:
            run "groovydoc"
            then:
            indexFile.exists()
    
            when:
            def snapshot = indexFile.snapshot();
            run "groovydoc"
            then:
            skipped ":groovydoc"
            indexFile.assertHasNotChangedSince(snapshot)
    
            when:
            buildFile << '''
                groovydoc.link('http://download.oracle.com/javase/1.5.0/docs/api', 'java.')
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top