Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 739 for Sall (0.19 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            print(output.value)
    
            then:
            output.value == """
    {failure}FAILURE: {normal}{failure}Build failed with an exception.{normal}
    
    * What went wrong:
    Could not resolve all task dependencies for org:example:1.0.
    {info}> {normal}first failure
       {info}> {normal}ultimate cause
    {info}> {normal}There is 1 more failure with an identical cause.
    
    * Try:
    $STACKTRACE
    $INFO_OR_DEBUG
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

     * <strong>This type should only be extended and/or thrown by Gradle internal code.</strong>
     */
    @Contextual
    @HasInternalProtocol
    public class ResolveException extends DefaultMultiCauseException {
    
        /**
         * Do not call this constructor.
         *
         * @deprecated This constructor will be removed in 9.0
         */
        @Deprecated
        public ResolveException(String message, Throwable cause) {
            super(message, cause);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

            (receiver as? ObjectOrigin.ImplicitThisReceiver)?.resolvedTo?.let { parent ->
                isConventionsCall(parent)
            }
        }
    
    
    /**
     * Checks is a given ObjectOrigin receiver is a call to the `conventions` function.
     */
    internal
    fun isConventionsCall(parent: ObjectOrigin.ReceiverOrigin) = parent is ObjectOrigin.AccessAndConfigureReceiver &&
        isTopLevelReceiver(parent.receiver) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGenerator.java

    import java.io.OutputStreamWriter;
    import java.io.UncheckedIOException;
    import java.io.Writer;
    import java.nio.charset.StandardCharsets;
    import java.util.Collection;
    import java.util.stream.Collectors;
    
    /**
     * Writes all instrumented types with inherited method interception to a resources
     */
    public class InstrumentedTypesResourceGenerator implements InstrumentationResourceGenerator {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderRegistry.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    public interface ClassLoaderRegistry {
        /**
         * Returns the root class loader shared by all builds. This class loader exposes the Gradle API and APIs for the built-in plugins.
         */
        ClassLoader getGradleApiClassLoader();
    
        /**
         * Returns the implementation class loader for the Gradle core.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/project-with-source/build.gradle

        maxHeapSize = testRunnerMemory
        maxParallelForks = 4
        forkEvery = testForkEvery
    }
    
    <% if (groovyProject) { %>
    apply plugin: 'groovy'
    dependencies {
        implementation 'org.codehaus:groovy:groovy-all:2.4.15'
    }
    <% } %>
    
    <% if (scalaProject) { %>
    apply plugin: 'scala'
    dependencies {
        implementation 'org.scala-lang:scala-library:2.9.2'
    }
    tasks.withType(ScalaCompile) {
        scalaCompileOptions.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/build.gradle.kts

        }
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/testkit/runner/internal/**")
    }
    
    tasks.integMultiVersionTest {
        systemProperty("org.gradle.integtest.testkit.compatibility", "all")
    }
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val GRADLE_INSTALL_PATH = "gradle_installPath"
    
    
        /**
         * Specify the flaky test quarantine strategy:
         *
         * -PflakyTests=include: run all tests, including flaky tests.
         * -PflakyTests=exclude: run all tests, excluding flaky tests.
         * -PflakyTests=only: run flaky tests only.
         *
         * Default value (if absent) is "include".
         */
        const val FLAKY_TEST = "flakyTests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

                    implementation 'org.example:lib:1.0'
                    implementation 'org.example:does not exist:1.0'
                }
            """
        }
    
        @TargetGradleVersion("=6.6")
        def "Older Gradle versions mark all dependencies as resolved"() {
            when:
            def project = loadToolingModel(EclipseProject)
            def allDependencies = project.classpath
    
            then:
            allDependencies.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/GroovyCallInterceptorsProvider.java

                } catch (ClassNotFoundException e) {
                    throw new RuntimeException(e);
                }
            }
    
            /**
             * @param interceptorsProviderClass the class providing the Groovy call interceptors.
             * It must have a method that follows the pattern: {@code public static List<CallInterceptor> getCallInterceptors()}
             */
            @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top