Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 310 for Sall (0.03 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

    import org.gradle.api.internal.tasks.TaskDependencyUsageTracker
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    /** Reports all usages of the tracked TaskDependency APIs as problems using the [problems] listener.
     * Also checks which tasks in the API return value come from the other projects and tracks the projects coupling using the [coupledProjectsListener]. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelCrossVersionSpec.groovy

            mavenRepo.module("org.example", "example-lib", "1.0").publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
        }
    
        // TODO (donat) add more coverage after all classpath entry types are exposed via the TAPI
    
        def "respects manipulation done in the eclipse.classpath.whenMerged closure"() {
            setup:
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    The Dataflow Actions API provides a way to schedule this type of work.
    A dataflow action is a parameterized isolated piece of work that becomes eligible for execution as soon as all input parameters become available.
    
    == Implementing a dataflow action
    
    The first step is to implement the action itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGenerator.java

    import java.io.UncheckedIOException;
    import java.io.Writer;
    import java.nio.charset.StandardCharsets;
    import java.util.Collection;
    import java.util.stream.Collectors;
    
    /**
     * Generates META-INF/services resource with all factory classes for generated JvmBytecodeCallInterceptors so we can load them at runtime
     */
    public class InterceptJvmCallsResourceGenerator implements InstrumentationResourceGenerator {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectInputStream.java

        @Override
        protected Class<?> lookupClass(String type) throws ClassNotFoundException {
            try {
                return super.lookupClass(type);
            } catch (ClassNotFoundException e) {
                // lookup class in all classloaders
                for (ClassLoaderDetails details : classLoaderDetails.values()) {
                    try {
                        return map.resolveClass(details, type);
                    } catch (ClassNotFoundException ignored) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    class DevelocityBuildLifecycleServiceIntegrationTest extends AbstractIntegrationSpec {
    
        def "can use lifecycle service to apply logic to all projects"() {
            settingsFile << """
                include 'foo', 'bar'
                includeBuild 'included'
    
                $beforeProject {
                    def projectPath = it.buildTreePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/plugins/AddSoftwareTypesAsExtensionsPluginTarget.java

                Class<?> returnType = softwareType.modelPublicType();
                extensions.add(returnType, softwareType.name(), Cast.uncheckedNonnullCast(value.call()));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

            } catch (RuntimeException ex) {
                throw problemsService.getInternalReporter().rethrowing(ex, builder -> buildProblemFrom(ex, builder));
            }
            boolean success = task.call();
            diagnosticToProblemListener.printDiagnosticCounts();
            if (!success) {
                throw new CompilationFailedException(result);
            }
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    <<build_scans.adoc#build_scans,Part 9.>> Build Scans +
    <<gradle_optimizations.adoc#gradle_optimizations,Part 10.>> Gradle Optimizations +
    
    [[getting_started]]
    == 2. Gradle Tutorial
    
    The tutorial will take you from Gradle initialization all the way through to utilizing Gradle's task caching for your basic Java App.
    No previous experience is necessary but a basic knowledge of Java and Kotlin is nice to have.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

            feature is InterpretationStepFeature.ResolutionResultPostprocessing.ConventionApplication
    
        override fun processResolutionResult(resolutionResult: ResolutionResult): ResolutionResult {
            // Find all the software types that are referenced in the build file
            val referencedSoftwareTypes = findUsedSoftwareTypeNames(resolutionResult)
                .mapNotNull(softwareTypeConventionRepository::findConventions)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top