Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 753 for Sall (0.05 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/MultiVersionTestInterceptor.groovy

            if (versions != null) {
                return versionsFrom(versions.value() as List)
            } else if (coverage != null) {
                return versionsFrom(coverage.value().newInstance(target, target).call() as List)
            } else {
                throw new RuntimeException("Target class '$target' is not annotated with @${TargetVersions.simpleName} nor with @${TargetCoverage.simpleName}.")
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
         * Resets all pending expectations after verifying them.
         * Must throw when a verification fails.
         */
        void resetExpectations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/CoverageContext.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.compatibility;
    
    public enum CoverageContext {
        DEFAULT("default"), LATEST("latest"), PARTIAL("partial"), FULL("all"), UNKNOWN(null);
    
        public final String selector;
    
        CoverageContext(String selector) {
            this.selector = selector;
        }
    
        static CoverageContext from(String requested) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                    .runWithFailure()
    
            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':compileJava'.")
                   .assertHasCause("Could not resolve all dependencies for configuration ':compileClasspath'.")
                   .assertHasCause("Failed to calculate the value of task ':compileJava' property 'javaCompiler'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

        /**
         * Visits the structure of this collection, that is, zero or more atomic sources of files.
         *
         * <p>The implementation should call the most specific methods on {@link FileCollectionStructureVisitor} that it is able to.</p>
         */
        void visitStructure(FileCollectionStructureVisitor visitor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/BuildLogLevelMixIn.java

                try {
                    return Optional.of(LogLevelOption.parseLogLevel(logLevelCommandLineProperty));
                } catch (IllegalArgumentException e) {
                    // fall through
                }
            }
            return empty();
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

        }
    
        @Override
        public void enableUserStandardOutputListeners() {
            // Create all of the pipeline eagerly as soon as this is enabled, to track the state of build operations.
            // All of the pipelines do this, so should instead have a single stage that tracks this for all pipelines and that can replay the current state to new pipelines
            // Then, a pipeline can be added for each listener as required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DependencyResolutionFailure.groovy

            assertFailedConfiguration(configuration);
        }
    
        DependencyResolutionFailure assertFailedConfiguration(String configuration) {
            failure.assertThatCause(matchesRegexp("Could not resolve all (dependencies|artifacts|files) for configuration '${Pattern.quote(configuration)}'."))
            this
        }
    
        DependencyResolutionFailure assertFailedDependencyRequiredBy(String dependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNRequestsThenReleaseOne.java

            if (yetToBeReceived > 0) {
                handler.release(1);
            } else {
                // No more requests coming to auto release, so release all remaining requests
                handler.releaseAll();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

            """
    
            m1.ivy.expectGet()
            m2.ivy.expectGet()
            m1.getArtifact(name: 'some-jar', type: 'jar').expectGet()
    
            expect:
            succeeds "resolve"
            // Currently builds all file dependencies
            executed ":lib:jar", ":lib:utilClasses", ":lib:utilDir", ":lib:utilJar", ":ui:jar", ":app:resolve"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top