Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 408 for Sall (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

            if (publications.isEmpty()) {
                return VariantCoordinateResolver.fixed(getImplicitCoordinates(coordsType, project));
            }
    
            // For all published components, find those that are not children of other components.
            // These are the top-level publications.
            Set<ProjectComponentPublication> topLevel = new LinkedHashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                lock.unlock();
            }
    
            // At this point:
            // If in daemon mode, the process has started successfully and all streams to the process have been closed
            // If in fork mode, the process has completed and all cleanup has been done
            // In both cases, all asynchronous work for the process has completed and we're done
    
            return result();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

        a. If the attribute has a known precedence, Gradle will stop as soon as there is a single candidate remaining.
        b. After all extra attributes with precedence are considered, the remaining candidates can be chosen if they are compatible with all of the non-ordered disambiguation rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

        /**
         * This method collects all source paths that will be passed to a compiler. While collecting paths it additionally also
         * collects all classes that are inside these sources, but were not detected as a dependency of changed classes.
         * This is important so all .class files that will be re-created are removed before compilation, otherwise
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Such modules, that only have a name as module description, are called _automatic module_ that export **all** their packages and can read **all** modules on the module path.
    
    A third case are traditional libraries that provide no module information at all -- for example `commons-cli:commons-cli:1.4`.
    Gradle puts such libraries on the classpath instead of the module path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                testing {
                    suites {
                        test {
                            useTestNG('$version')
                            targets {
                                all {
                                    testTask.configure {
                                        reports.junitXml.outputPerTestCase = true
                                        onOutput { test, event -> print "\$test -> \$event.message" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top