Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 445 for SKIPPED (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

        /**
         * Asserts that exactly the given set of tasks have been skipped.
         */
        ExecutionResult assertTasksSkipped(Object... taskPaths);
    
        /**
         * Asserts the given task has been skipped.
         */
        ExecutionResult assertTaskSkipped(String taskPath);
    
        /**
         * Asserts that exactly the given set of tasks have not been skipped.
         */
        ExecutionResult assertTasksNotSkipped(Object... taskPaths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ForkCapableRelocationIntegrationTest.groovy

            when:
            inDirectory(originalDir)
            withBuildCache().run taskName
    
            then:
            skipped taskName
    
            when:
            inDirectory(relocatedDir)
            withBuildCache().run taskName
    
            then:
            skipped taskName
        }
    
        void setupProjectWithJavaAgentIn(TestFile directory) {
            setupProjectIn(directory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedDecoder.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
    - 7.3K bytes
    - Viewed (0)
Back to top