Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 709 for Sall (0.12 sec)

  1. 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)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

            lateIncludedBuildTaskPosition < rootBuildFinishedPosition
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def "fires build finished events for all builds when settings script for child build cannot be compiled"() {
            given:
            buildA.settingsFile << """
                gradle.buildFinished {
                    println "build A finished"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.add(2, 'c')
    
            then:
            list == ['a', 'b', 'c']
        }
    
        def "fires events when element is added at index"() {
            Action<String> action = Mock()
    
            given:
            list.all(action)
    
            when:
            list.add(0, 'a')
            list.add(0, 'b')
    
            then:
            1 * action.execute('a')
            1 * action.execute('b')
            0 * action._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Use '--warning-mode all' to show the individual deprecation warnings.
    See https://docs.gradle.org/6.0/userguide/command_line_interface.html#sec:command_line_warnings
    ```
    
    The deprecation warnings show up in https://scans.gradle.com/s/txrptciitl2ha/deprecations[build scans] for every build, regardless of the command-line switches used.
    
    When the build is executed with `--warning-mode all`, the individual warnings will be shown:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

                """
                compilationDetails.outputFile = "\${project.name}-${name}-1.0.jar"
    
                spec.delegate = compilationDetails
                spec.call(compilationDetails)
                compilations[name] = compilationDetails
            }
        }
    
        def publishes(String component) {
            settingsFile << """
                include 'other'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

            return buildOperationRunner.call(new CallableBuildOperation<BuildCacheController>() {
                @Override
                public BuildCacheController call(BuildOperationContext context) {
                    if (buildCacheState == BuildCacheMode.DISABLED) {
                        context.setResult(ResultImpl.disabled());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/common/extensions.kt

            build/tmp/teŝt files/** => $hiddenArtifactDestination/teŝt-files
            build/errorLogs/** => $hiddenArtifactDestination/errorLogs
            subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports
            build/reports/dependency-verification/** => dependency-verification-reports
        """.trimIndent()
    
        paramsForBuildToolBuild(buildJvm, os, arch)
        params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

         */
        public void sign(Configuration... configurations) {
            for (Configuration configuration : configurations) {
                configuration.getAllArtifacts().all(artifact -> {
                    if (artifact instanceof Signature || hasSignatureFor(artifact)) {
                        return;
                    }
                    signArtifact(artifact);
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. 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)
Back to top