Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for LIFECYCLE (0.12 sec)

  1. 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)
  2. cmd/bucket-lifecycle.go

    )
    
    // LifecycleSys - Bucket lifecycle subsystem.
    type LifecycleSys struct{}
    
    // Get - gets lifecycle config associated to a given bucket name.
    func (sys *LifecycleSys) Get(bucketName string) (lc *lifecycle.Lifecycle, err error) {
    	lc, _, err = globalBucketMetadataSys.GetLifecycleConfig(bucketName)
    	return lc, err
    }
    
    // NewLifecycleSys - creates new lifecycle system.
    func NewLifecycleSys() *LifecycleSys {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-handlers_test.go

    }
    
    // Test S3 Bucket lifecycle APIs
    func TestBucketLifecycle(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testBucketLifecycleHandlers, endpoints: []string{"GetBucketLifecycle", "PutBucketLifecycle", "DeleteBucketLifecycle"}})
    }
    
    // Simple tests of bucket lifecycle: PUT, GET, DELETE.
    // Tests are related and the order is important.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

         *
         * @param lifecycle a lifecycle object.
         */
        public void removeLifecycle(Lifecycle lifecycle) {
            getLifecycles().remove(lifecycle);
        } // -- void removeLifecycle( Lifecycle )
    
        /**
         * Set the lifecycles field.
         *
         * @param lifecycles a lifecycles object.
         */
        public void setLifecycles(java.util.List<Lifecycle> lifecycles) {
            this.lifecycles = lifecycles;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

            def buildDirName = 'my-build-dir'
            def buildDir = file(buildDirName)
            buildFile """
    
                // lifecycle-base plugin registers layout.buildDirectory as a build output
                plugins { id 'lifecycle-base' }
    
                abstract class MyBuildService implements $BuildService.name<${BuildServiceParameters.name}.None> {
                    String buildDirFor(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: mark the sub-phase of 'init kubelet-finilize' called 'experimental-cert-rotation' as deprecated and print a warning if it is used directly; it will be removed in a future release. Add a replacement sub-phase 'enable-client-cert-rotation'. ([#124419](https://github.com/kubernetes/kubernetes/pull/124419), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleLifecycleIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'root'
            """
        }
    
        def "runs lifecycle callbacks only on reconfigured projects"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
    
                gradle.lifecycle.beforeProject {
                    println("Callback before \$it")
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     * <p>
     * The mojo can be annotated with {@code org.apache.maven.api.di.*} annotations to
     * control the lifecycle of the mojo itself, and to inject other beans.
     * </p>
     * <p>
     * The mojo class can also be injected with an {@link Execute} annotation to specify a
     * forked lifecycle.
     * </p>
     * <p>
     * The {@link Parameter} annotation can be added on fields to inject data
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/list.md

    | `minio_node_ilm_action_count_delete_version_action`          | Total action outcome of lifecycle checks since server start for deleting a version                         |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            return Objects.hash(getGoal(), getPluginDescriptor());
        }
    
        /**
         * @return the invocation lifecycle of the Mojo
         */
        public String getExecuteLifecycle() {
            return executeLifecycle;
        }
    
        /**
         * @param executeLifecycle the new invocation lifecycle of the Mojo
         */
        public void setExecuteLifecycle(String executeLifecycle) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top