Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withEmptyBuild (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeLifecycleController.java

         * When this method returns, all user code will have completed, including 'build finished' hooks.
         */
        <T> T withEmptyBuild(Function<? super SettingsInternal, T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 00:39:25 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

                    }
                }
                T model = modelCreator.fromBuildModel(action);
                return ExecutionResult.succeeded(model);
            });
        }
    
        @Override
        public <T> T withEmptyBuild(Function<? super SettingsInternal, T> action) {
            return runBuild(() -> {
                T result = buildLifecycleController.withSettings(action);
                return ExecutionResult.succeeded(result);
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            val startParameter = projectSchemaBuildStartParameterFor(projectDir)
            return createNestedBuildTree("$path:${projectDir.name}", startParameter, services).run { controller ->
                controller.withEmptyBuild { settings ->
                    Try.ofFailable {
                        val gradle = settings.gradle
                        val baseScope = classLoaderScopeRegistry.coreAndPluginsScope.createChild("accessors-classpath", null).apply {
    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