Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for StartParameter (2.76 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

        private final BuildOperationListenerManager buildOperationListenerManager;
    
        public BuildOperationTrace(StartParameter startParameter, BuildOperationListenerManager buildOperationListenerManager) {
            this.buildOperationListenerManager = buildOperationListenerManager;
    
            Set<String> filter = getFilter(startParameter);
            if (filter != null) {
                this.outputTree = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            File userHomeDir = gradleUserHomeDir == null ? new File(projectDir, "userHome") : FileUtils.canonicalize(gradleUserHomeDir);
            StartParameterInternal startParameter = new StartParameterInternal();
            startParameter.setGradleUserHomeDir(userHomeDir);
    
            // ProjectBuilder tests are more lightweight and native services shouldn't be required, so we disable them by default.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile """
                def startParameter = gradle.startParameter
                tasks.help {
                    doLast {
                        println "isConfigurationCacheRequested=" + startParameter.isConfigurationCacheRequested()
                    }
                }
            """
    
            when:
            run "help"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                        if (modelName == '${CustomProjectsLoadedModel.name}') {
                            StartParameter startParameter = project.getGradle().getStartParameter();
                            Set<String> tasks = new HashSet(startParameter.getTaskNames());
                            tasks.addAll(parameter.getTasks());
                            startParameter.setTaskNames(tasks);
                            return new DefaultCustomModel('loadingWithTasks');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            }
        }
    
        private
        fun determineCacheAction(): ConfigurationCacheAction = when {
            startParameter.recreateCache -> {
                logBootstrapSummary("Recreating configuration cache")
                ConfigurationCacheAction.STORE
            }
    
            startParameter.isRefreshDependencies -> {
                logBootstrapSummary(
                    "{} as configuration cache cannot be reused due to {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

                ExceptionAnalyser exceptionAnalyser,
                List<ProblemReporter> problemReporters,
                BuildLoggerFactory buildLoggerFactory,
                InternalOptions options,
                StartParameter startParameter,
                InternalProblems problemsService,
                ProblemStream problemStream
            ) {
                return new InitProblems(
                    new InitDeprecationLoggingActionExecutor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

    import org.gradle.problems.buildtree.ProblemReporter.ProblemConsumer
    import java.io.File
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheProblems(
    
        private
        val startParameter: ConfigurationCacheStartParameter,
    
        private
        val report: ConfigurationCacheReport,
    
        private
        val cacheKey: ConfigurationCacheKey,
    
        private
        val listenerManager: ListenerManager,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        private ClassLoaderScope baseProjectClassLoaderScope;
    
        public DefaultGradle(@Nullable BuildState parent, StartParameter startParameter, ServiceRegistryFactory parentRegistry) {
            this.parent = parent;
            this.startParameter = startParameter;
            this.services = parentRegistry.createFor(this);
            this.crossProjectConfigurator = services.get(CrossProjectConfigurator.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            }
        }
    
        private LoggingManagerInternal createLoggingManager(StartParameter startParameter, OutputStream outputStream, OutputStream errorStream) {
            LoggingManagerInternal loggingManager = GLOBAL_SERVICES.getFactory(LoggingManagerInternal.class).create();
            loggingManager.captureSystemSources();
    
            ConsoleOutput consoleOutput = startParameter.getConsoleOutput();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            services.get<StartParameterInternal>().let { startParameter ->
                ProjectSchemaBuildStartParameter(
                    BuildLayoutParameters(
                        startParameter.gradleHomeDir,
                        startParameter.gradleUserHomeDir,
                        projectDir,
                        projectDir,
                        null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top