Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 267 for light (0.12 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

        public StartParameterInternal toStartParameter(ProviderOperationParameters parameters, BuildLayoutResult buildLayout, AllProperties properties) {
            // Important that this is constructed on the client so that it has the right gradleHomeDir and other state internally
            StartParameterInternal startParameter = new StartParameterInternal();
    
            List<InternalLaunchable> launchables = parameters.getLaunchables();
            if (launchables != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/AssemblerTest.groovy

            super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
        }
    
        def "check that position sensitive arguments are in the right order"() {
            given:
            def genericArgs = [ '/c' ]
            def sourceArgs = [ 'path/to/source.s' ]
            def outputArgs = [ 'path/to/output.o' ]
            def compiler = getCompiler()
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/InvalidInstallationWarningReporterTest.groovy

            when:
            reporter.accept(location, metadata)
    
            then:
            1 * mockLogger.warn(
                "Invalid Java installation found at {}. " +
                    "It will be re-checked in the next build. This might have performance impact if it keeps failing. " +
                    "Run the 'javaToolchains' task for more details.",
                location.displayName
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/CapabilitiesConflictHandler.java

    import java.util.Collection;
    
    public interface CapabilitiesConflictHandler extends ConflictHandler<CapabilitiesConflictHandler.Candidate, ConflictResolutionResult> {
    
        /**
         * Was the given capability already seen which might require a conflict check later?
         * This is needed to determine if also implicit capabilities need to enter conflict detection.
         */
        boolean hasSeenCapability(Capability capability);
    
        interface Candidate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

    import org.gradle.api.tasks.TaskFilePropertyBuilder;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    
    /**
     * Container for {@link TaskPropertyRegistration}s that might not have a name. The container
     * ensures that whenever parameters are iterated they are always assigned a name.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

            copyToFinalDestination(checkoutDir)
    
            println("Building the commit distribution in $checkoutDir succeeded, now the baseline is ${commitBaseline.get()}")
        }
    
        /**
         * Sometimes, the nightly might be cleaned up before GA comes out. If this happens, we fall back to latest RC version or nightly version.
         */
        private
        fun determineClosestReleasedVersion(expectedBaseVersion: GradleVersion): GradleVersion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

            given:
            //required for composite builds
            buildTestFixture.withBuildInSubDir()
    
            //publish all the versions of ModuleC that we might need
            mavenRepo.module("myorg", "ModuleC", transitiveDep).publish()
            mavenRepo.module("myorg", "ModuleC", projectDep).publish()
    
            //publish ModuleB:1.0 and declare its dependency to ModuleC:$versionExternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

            fails "clean"
    
            then:
            failure.assertThatCause(containsString("Unable to delete directory '${file('build')}'"))
            failure.assertThatCause(containsString("Failed to delete some children. This might happen because a process has files open or has its working directory set in the target directory."))
            failure.assertThatCause(containsString(file("build/newFile").absolutePath))
    
            cleanup:
            lock?.release()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_tasks.adoc

    .myfile.txt
    [source,txt]
    ----
    HELLO FROM THE NAMED METHOD
    ----
    
    Consult the <<more_about_tasks.adoc#more_about_tasks,Developing Gradle Tasks chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

        override fun shouldHandleFeature(feature: InterpretationStepFeature.ResolutionResultPostprocessing) =
            // Use an is-check, as the implementation might be a proxy
            feature is InterpretationStepFeature.ResolutionResultPostprocessing.ConventionApplication
    
        override fun processResolutionResult(resolutionResult: ResolutionResult): ResolutionResult {
    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