Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 649 for LIFECYCLE (0.3 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        }
    
        public Lifecycle(org.apache.maven.api.Lifecycle lifecycle) {
            this.lifecycle = lifecycle;
            this.id = lifecycle.id();
            this.phases = lifecycle.phases().stream()
                    .map(org.apache.maven.api.Lifecycle.Phase::name)
                    .toList();
            this.defaultPhases = getDefaultPhases(lifecycle);
        }
    
        // <lifecycle>
        //   <id>clean</id>
        //   <phases>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.lifecycle;
    
    /**
     *
     *         A custom lifecycle mapping definition.
     *
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class Lifecycle implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

    import org.apache.maven.api.model.Plugin;
    
    /**
     * Lifecycle definition
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Lifecycle extends ExtensibleEnum {
    
        String CLEAN = "clean";
    
        String DEFAULT = "default";
    
        String SITE = "site";
    
        String WRAPPER = "wrapper";
    
        /**
         * Name or identifier of this lifecycle.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

     * under the License.
     */
    package org.apache.maven.lifecycle.mapping;
    
    import java.util.Collections;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Lifecycle definition for a packaging (multiple packagings share the same lifecycle id = usually "default").
     */
    public class Lifecycle {
        /**
         * Field id
         */
        private String id;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/lifecycle.go

    // with apply.
    type LifecycleApplyConfiguration struct {
    	PostStart *LifecycleHandlerApplyConfiguration `json:"postStart,omitempty"`
    	PreStop   *LifecycleHandlerApplyConfiguration `json:"preStop,omitempty"`
    }
    
    // LifecycleApplyConfiguration constructs an declarative configuration of the Lifecycle type for use with
    // apply.
    func Lifecycle() *LifecycleApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 29 20:15:11 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

      xml.namespace="http://maven.apache.org/LIFECYCLE/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/lifecycle-${version}.xsd">
      <id>lifecycle</id>
      <name>Lifecycle</name>
      <description>
        Configuration of custom lifecycle mappings for the plugin, as generally stored in
        {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact.
      </description>
      <classes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/lifecycle.go

    Jordan Liggitt <******@****.***> 1596117312 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 30 21:25:26 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/lifecycle-executor.txt

    We have a lifecycle mapping for the packaging of *jar* below. You see that for this packaging we have a *default* lifecycle and a list of phases where each phase is a comma separated list of goals to run and they are in the form groupId:artifactId:version.
    
    <configuration>
      <lifecycles>
        <lifecycle>
          <id>default</id>
          <phases>
            <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/zz_generated.prerelease-lifecycle.go

    func (in *CSIStorageCapacityList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1alpha1/zz_generated.prerelease-lifecycle.go

    limitations under the License.
    */
    
    // Code generated by prerelease-lifecycle-gen. DO NOT EDIT.
    
    package v1alpha1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top