Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for ProjectInternal (0.7 sec)

  1. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginRules.java

                ProjectModelResolver projectModelResolver = serviceRegistry.get(ProjectModelResolver.class);
                ProjectRegistry<ProjectInternal> projectRegistry = Cast.uncheckedCast(serviceRegistry.get(DefaultProjectRegistry.class));
    
                for (ProjectInternal subproject : projectRegistry.getSubProjects(projectIdentifier.getPath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/action/WrapperPluginAutoApplyAction.java

     */
    
    package org.gradle.buildinit.plugins.internal.action;
    
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.configuration.project.ProjectConfigureAction;
    
    public class WrapperPluginAutoApplyAction implements ProjectConfigureAction {
        @Override
        public void execute(ProjectInternal project) {
            project.getPluginManager().apply("org.gradle.wrapper");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1008 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionBuildTaskSchedulerTest.groovy

        public static final String TEST_CLASS_NAME = "TestClass"
        public static final String TEST_METHOD_NAME = "testMethod"
        public static final String TEST_TASK_NAME = ":test"
    
        ProjectInternal projectInternal = Mock()
        ProjectState projectState = Mock()
        Test testTask
        TaskContainerInternal tasksContainerInternal
        TestFilter testFilter
        TaskOutputsInternal outputsInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaFeatureSpec.java

        private final Set<Capability> capabilities = new LinkedHashSet<>(1);
        private final ProjectInternal project;
    
        private SourceSet sourceSet;
        private boolean withJavadocJar = false;
        private boolean withSourcesJar = false;
        private boolean allowPublication = true;
    
        public DefaultJavaFeatureSpec(String name, ProjectInternal project) {
            this.name = name;
            this.project = project;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 01:52:06 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.Task
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.tasks.TaskDependencyUsageTracker
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildConverter.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.file.Directory;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.plugins.jvm.internal.JvmPluginServices;
    
    /**
     * Converts some existing build to a Gradle build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.buildconfiguration.tasks.UpdateDaemonJvm;
    import org.gradle.configuration.project.ProjectConfigureAction;
    
    public class DaemonJvmPropertiesConfigurator implements ProjectConfigureAction {
    
        public static final String TASK_NAME = "updateDaemonJvm";
    
        @Override
        public void execute(ProjectInternal project) {
            // Only useful for the root project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/initialization/buildsrc/GradlePluginApiVersionAttributeConfigurationAction.java

        @Override
        public void execute(ProjectInternal project) {
            project.getPlugins().withType(JavaBasePlugin.class, javaBasePlugin -> addGradlePluginApiVersionAttributeToClasspath(project));
        }
    
        private void addGradlePluginApiVersionAttributeToClasspath(ProjectInternal project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromProjectDependenciesTest.groovy

        def context = Mock(TaskDependencyResolveContext)
        def project1State = Mock(ProjectState)
        def project2State = Mock(ProjectState)
        def project1 = Mock(ProjectInternal)
        def project2 = Mock(ProjectInternal)
        def projectId1 = Path.path("project1")
        def projectId2 = Path.path("project2")
        def projectDep1 = Mock(ProjectDependencyInternal) { getIdentityPath() >> projectId1 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/TaskInternalExtensions.kt

    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.internal.service.ServiceRegistry
    
    
    internal
    inline fun <reified T : Any> TaskInternal.serviceOf(): T =
        project.serviceOf()
    
    
    inline fun <reified T : Any> Project.serviceOf(): T =
        (this as ProjectInternal).services.get()
    
    
    inline fun <reified T : Any> GradleInternal.serviceOf(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top