Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 114 for Builds (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

                // Trigger resolution, including any failures
                files.getFiles();
                return new DefaultTransformDependencies(files);
            }
        }
    
        /**
         * A work node used in builds where the upstream dependencies must be resolved. This implementation is not used when the work graph is loaded from the configuration cache,
         * as the dependencies have already been resolved in that case.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        }
    
        def 'no extra executions for composite builds'() {
            // This test does two things:
            // - shake out internal listener registration that isn't using InternalListener.
            //   There are a lost of listeners registered through the methods that we've decorated in the composite build code
            // - sanity check application ids for the multi-build case
            given:
            file('buildSrc/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            Map<String, Object> vars = new HashMap<String, Object>();
            for (Map.Entry<String, ?> entry : envVars.entrySet()) {
                // The following are known variables that can change between builds and should not be inherited
                if (APP_NAME_REGEX.matcher(entry.getKey()).matches()
                    || JAVA_MAIN_CLASS_REGEX.matcher(entry.getKey()).matches()
                    || entry.getKey().equals("TERM_SESSION_ID")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //(SF) this is a workaround until this story is completed. I'm hardcoding setting the idle timeout to be max X mins.
            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
            int maxTimeout = 2 * 60 * 1000;
            if (daemonParameters.getIdleTimeout() > maxTimeout) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

         * wait for any executing builds to stop before returning. This is by design as we currently have no way of
         * gracefully stopping a build process and blocking until it's done would not allow us to tear down the jvm
         * like we need to. This may change in the future if we create a way to interrupt a build.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

            *.threaddump => $hiddenArtifactDestination
            build/report-* => $hiddenArtifactDestination
            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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

        def "can run tasks from transitive included builds"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('other-build')
            """
            file('other-build/settings.gradle') << """
                rootProject.name = 'other-build'
                includeBuild('../third-build')
            """
            file('third-build/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            expectReindentedValidationMessage()
            // This is required for the daemon to clean up symlinks between builds
            executer.requireDaemon()
            executer.requireIsolatedDaemons()
        }
    
        def "#desc can handle symlinks"() {
            def buildScript = file("build.gradle")
            def baseDir = file('build')
            baseDir.file('file').text = 'some contents'
            def symlinked = baseDir.file('symlinked')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                        excludes.addAll(defined.excludes);
                    }
                });
    
                DependencyState state = new DependencyState(dependencies.build(), files.build(), excludes.build());
                return new DefaultLocalConfigurationMetadata.ConfigurationDependencyMetadata(
                    maybeForceDependencies(state.dependencies, attributes), state.files, state.excludes
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            state.getConfiguration("child2").metadata.dependencies*.source == [dependency1]
            state.getConfiguration("other").metadata.dependencies.isEmpty()
        }
    
        def "builds and caches exclude rules for a configuration"() {
            given:
            def conf = dependencyScope("conf")
            def child = resolvable("child", [conf])
    
            conf.exclude([group: "group1", module: "module1"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top