Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for individual (1.9 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/plugin/PluginConfigurationExpander.java

    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    public interface PluginConfigurationExpander {
    
        /**
         * Merges values from general build plugin configuration into the individual plugin executions of the given model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportConfigurationExpander.java

    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles expansion of general report plugin configuration into individual report sets.
     *
     */
    public interface ReportConfigurationExpander {
    
        /**
         * Merges values from general report plugin configuration into the individual reports sets of the given model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PluginConfigurationExpander.java

    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    public interface PluginConfigurationExpander {
    
        /**
         * Merges values from general build plugin configuration into the individual plugin executions of the given model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationCategory.java

         */
        RUN_WORK(false, false, false),
    
        /**
         * Execute an individual task.
         */
        TASK(true, true, true),
    
        /**
         * Execute an individual transform.
         */
        TRANSFORM(true, true, false),
    
        /**
         * Operation doesn't belong to any category.
         */
        UNCATEGORIZED(false, false, false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementTransformer.java

     * limitations under the License.
     */
    package org.gradle.groovy.scripts.internal;
    
    import org.codehaus.groovy.ast.stmt.Statement;
    import org.codehaus.groovy.control.SourceUnit;
    
    /**
     * A transformer of individual statements.
     */
    public interface StatementTransformer {
    
        // Return null to remove the statement
        Statement transform(SourceUnit sourceUnit, Statement statement);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 963 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/IConventionAware.java

     */
    public interface IConventionAware {
    
        /**
         * Returns the convention mapping for the properties of this object. The returned mapping object can be used to
         * manage the mapping for individual properties.
         *
         * @return The mapping. Never returns null.
         */
        ConventionMapping getConventionMapping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultPluginConfigurationExpander.java

    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    @Named
    @Singleton
    public class DefaultPluginConfigurationExpander implements PluginConfigurationExpander {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.operations;
    
    /**
     * An individual active, single use, queue of build operations.
     * <p>
     * The queue is active in that operations are potentially executed as soon as they are added.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.project.MavenProject;
    
    /**
     * <p>
     * Wraps individual MojoExecutions, containing information about completion status and scheduling.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java

    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles expansion of general report plugin configuration into individual report sets.
     *
     */
    @Named
    @Singleton
    public class DefaultReportConfigurationExpander implements ReportConfigurationExpander {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top