Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 202 for light (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    ----
    =====
    ====
    
    If you have just gotten the latest version of the source from your version control system, which included changes in other projects that `:api` depends on, you might want to build all the projects you depend on AND test them too.
    
    The `buildNeeded` task builds AND tests all the projects from the project dependencies of the `testRuntime` configuration:
    
    ====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    === Delegation
    
    The <<#groovy:properties,section on properties>> lists where unqualified properties might be found. One common place is on the `Project` object. But there is an alternative source for those unqualified properties and methods inside a block: the block's _delegate object_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            passedInIgnoredTestDetails.assertPassed()
    
            def ignoredTestDetails = someIgnoredClassFile.testDetails('ignored')
            ignoredTestDetails.assertDuration("-") //is this right? it seems an ignored test may still have a duration?
            ignoredTestDetails.assertIgnored()
    
            def failingClassFile = results(reportDir.file('classes/org.gradle.failing.SomeIgnoredSomePassedSomeFailed.html'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    ====
    
    In other cases, you might want to modify a variant that was added by one of the Java plugins already.
    For example, if you activate publishing of Javadoc and sources, these become additional variants of the `java` component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    Gradle doesn't consider private getters as inputs for up-to-date checking, which means that your annotations effectively are ignored.
    It is important to fix because you might think that you have declared an input when it's not the case.
    
    To fix this, either make the getter public, or annotate an existing getter instead, or create a new annotated getter.
    
    [[ignored_property_must_not_be_annotated]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

            and:
            // rebuild for Swift3
            succeeds("compileDebugSwift")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
        }
    
        // This isn't quite right, we really want to assert something like "has both swiftc3 and swiftc4"
        @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC_4)
        def 'changing Swift tool chain rebuilds everything'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    NOTE: This means that using toolchains with a recent Java version and an old Scala version can result in failures because Scala only supported Java 8 bytecode for some time.
    The solution is then to either use the right Java version in the toolchain or explicitly downgrade the target when needed.
    
    The following table explains the values computed by Gradle:
    
    .Scala target parameter based on project configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                connection.dispatch(build);
                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
                LOGGER.debug("Connected to a stale daemon address.", e);
                // We might fail hard here on the assumption that something weird happened to the daemon.
                // However, since we haven't yet started running the build, we can recover by just trying again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                        val unfinishedTasks = shutdownNow()
                        logger.warn(
                            "Configuration cache report is taking too long to write... "
                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

            }
    
            @Override
            protected void handle(Pair<BuildOperationDescriptor, OperationFinishEvent> message) {
                listenerProvider.get().finished(message.left, message.right);
            }
    
            @Override
            public List<Object> getListeners() {
                return ImmutableList.of(this);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top