Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 208 for Here (0.14 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestClassExecutionResult.java

    public interface TestClassExecutionResult {
        /**
         * Asserts that the given tests (and only the given tests) were executed for the given test class.
         */
        TestClassExecutionResult assertTestsExecuted(String... testNames);
    
        /**
         * Asserts that the given tests (and only the given tests) were executed for the given test class.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/LenientConfiguration.java

         *
         * @since 3.1
         * @return all resolved dependencies
         */
        Set<ResolvedDependency> getAllModuleDependencies();
    
        /**
         * returns dependencies that were attempted to resolve but failed.
         * If empty then all dependencies are neatly resolved.
         *
         * @return only unresolved dependencies
         */
        Set<UnresolvedDependency> getUnresolvedModuleDependencies();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdCustomRulesIntegrationTest.groovy

            """
    
            file("src/main/java/org/gradle/ruleusing/Class1.java") << breakingDefaultRulesCode()
    
            expect:
            fails(":pmdMain")
            errorOutput.contains("PMD rule violations were found")
        }
    
        private static breakingDefaultRulesCode() {
            """
                package org.gradle.ruleusing;
    
                public final class Class1 {
    
                    void foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/CacheLayout.java

        // If you update FILE_STORE, you may also need to update LocallyAvailableResourceFinderFactory
        FILE_STORE(MODULES, "files", introducedIn("1.9-rc-1")),
    
        META_DATA(MODULES, "metadata",
            // skipped versions were not used in a release
            introducedIn("1.9-rc-2")
            .changedTo(2, "1.11-rc-1")
            .changedTo(6, "1.12-rc-1")
            .changedTo(12, "2.0-rc-1")
            .changedTo(13, "2.1-rc-3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PredicatesFile.java

            boolean found = acceptedCombinations.contains(predicateClassNames);
    
            if (!found) {
                String message = String.format(
                    "Requested requirements [%s] were not in the list of accepted combinations. " +
                        "Add it to 'subprojects/internal-testing/src/main/resources/valid-precondition-combinations.csv' to be accepted. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

            } else if (foundTransforms.size() > 1) {
                throw new AssertionError(String.format("Multiple grouped outputs for transform '%s' were found. Consider specifying a subject.%nOutput:%n%s", transformer, originalOutput));
            }
    
            return foundTransforms.get(0);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

        static final String DISABLE_SYS_PROP = "-D$DISABLE_GRADLE_PROP"
        // Should be provided if a link to the report is expected even if no errors were found
        static final String LOG_REPORT_LINK_AS_WARNING = "-Dorg.gradle.configuration-cache.internal.report-link-as-warning=true"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

                } else if (significantlySlowerThan(current)) {
                    sb.append "Speed $displayName: AWESOME! we're faster than $version"
                } else {
                    sb.append "Speed $displayName: Results were inconclusive"
                }
                String confidencePercent = DataSeries.confidenceInDifference(results.totalTime, current.totalTime) * 100 as int
                sb.append(" with " + confidencePercent + "% confidence.\n")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/InvalidMultipleVariantsFailureDescriber.java

            StringBuilder sb = new StringBuilder("Multiple incompatible variants of ")
                .append(failure.getRequestedName())
                .append(" were selected:\n");
            for (AssessedCandidate assessedCandidate : failure.getAssessedCandidates()) {
                sb.append("   - Variant ").append(assessedCandidate.getDisplayName()).append(" has attributes ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/build.gradle.kts

    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        // Some cycles have been inherited from the time these classes were in :core
        excludePatterns.add("org/gradle/api/internal/file/collections/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top