Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RunEclipseSynchronizationTasks (0.36 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunEclipseSynchronizationTasks.java

     *
     * This allows Buildship to run tasks before the model loading and load the models in a single step.
     *
     * @since 5.4
     */
    public interface RunEclipseSynchronizationTasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/r54/TellGradleToRunSyncTasks.java

    import org.gradle.tooling.BuildController;
    import org.gradle.tooling.model.eclipse.RunEclipseSynchronizationTasks;
    
    import java.io.Serializable;
    
    public class TellGradleToRunSyncTasks implements BuildAction<Void>, Serializable {
    
        @Override
        public Void execute(BuildController controller) {
                controller.getModel(RunEclipseSynchronizationTasks.class);
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunEclipseAutoBuildTasks.java

     */
    
    package org.gradle.tooling.model.eclipse;
    
    /**
     * A tooling model that instructs Gradle to run tasks from the Eclipse plugin configuration.
     *
     * Similarly to {@link RunEclipseSynchronizationTasks}, this is a special tooling model as it does
     * not provide any information. However, when requested, Gradle will override the client-provided
     * tasks with the ones stored in the {@code eclipse.autoBuildTasks} property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunClosedProjectBuildDependencies.java

     */
    
    package org.gradle.tooling.model.eclipse;
    
    /**
     * A tooling model that instructs Gradle to run tasks to build artifacts for closed projects.
     *
     * Similarly to {@link RunEclipseSynchronizationTasks}, this is a special tooling model as it does
     * not provide any information. However, when requested, Gradle will build the artifacts required
     * to substitute the closed gradle projects in the eclipse workspace.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/RunEclipseTasksBuilder.java

            return null;
        }
    
        private static boolean isSyncModel(String modelName) {
            return modelName.equals("org.gradle.tooling.model.eclipse.RunEclipseSynchronizationTasks");
        }
    
    
        private static boolean isAutoBuildModel(String modelName) {
            return modelName.equals("org.gradle.tooling.model.eclipse.RunEclipseAutoBuildTasks");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top