Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,209 for LIFECYCLE (0.14 sec)

  1. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/external.gradle

    logging.captureStandardOutput LogLevel.INFO
    println 'external INFO message'
    
    System.err.println 'external ERROR error message'
    logging.captureStandardError LogLevel.LIFECYCLE
    System.err.println 'external LIFECYCLE error message'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 313 bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java

     * under the License.
     */
    package org.apache.maven.lifecycle;
    
    /**
     * Signals a failure to locate a lifecycle.
     *
     */
    public class LifecycleNotFoundException extends Exception {
    
        private final String lifecycleId;
    
        /**
         * Creates a new exception to indicate that the specified lifecycle is unknown.
         *
         * @param lifecycleId The identifier of the lifecycle that could not be located, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/api/logging/LoggingTest.groovy

            when:
            logger.debug("debug")
            logger.info("info")
            logger.warn("warn")
            logger.lifecycle("lifecycle")
            logger.error("error")
            logger.quiet("quiet")
            logger.log(LogLevel.LIFECYCLE, "lifecycle via level")
    
            then:
            1 * outputEventListener.onOutput({ it.message == "debug" && it.logLevel == LogLevel.DEBUG })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. cmd/data-scanner.go

    	case lifecycle.DeleteVersionAction, lifecycle.DeleteAction,
    		lifecycle.DeleteRestoredAction, lifecycle.DeleteRestoredVersionAction,
    		lifecycle.DeleteAllVersionsAction, lifecycle.DelMarkerDeleteAllVersionsAction:
    		success = applyExpiryRule(event, src, obj)
    	case lifecycle.TransitionAction, lifecycle.TransitionVersionAction:
    		success = applyTransitionRule(event, src, obj)
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. cmd/data-scanner-metric.go

    func (p *scannerMetrics) lifetimeActions(a lifecycle.Action) uint64 {
    	if a == lifecycle.NoneAction || a >= lifecycle.ActionCount {
    		return 0
    	}
    	val := atomic.LoadUint64(&p.actions[a])
    	return val
    }
    
    // lastMinuteActions returns the last minute statistics of an ilm metric.
    func (p *scannerMetrics) lastMinuteActions(a lifecycle.Action) AccElem {
    	if a == lifecycle.NoneAction || a >= lifecycle.ActionCount {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

    import org.apache.maven.lifecycle.DefaultLifecycles;
    import org.apache.maven.lifecycle.Lifecycle;
    import org.apache.maven.lifecycle.LifecycleMappingDelegate;
    import org.apache.maven.lifecycle.LifecycleNotFoundException;
    import org.apache.maven.lifecycle.LifecyclePhaseNotFoundException;
    import org.apache.maven.lifecycle.MavenExecutionPlan;
    import org.apache.maven.lifecycle.MojoExecutionConfigurator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

         */
        void info(Action<TestLogging> action);
    
        /**
         * Returns logging options for lifecycle level.
         *
         * @return logging options for lifecycle level
         */
        TestLogging getLifecycle();
    
        /**
         * Sets logging options for lifecycle level.
         *
         * @param logging logging options for lifecycle level
         */
        void setLifecycle(TestLogging logging);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/labels_test.go

    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    func TestContainerLabels(t *testing.T) {
    	deletionGracePeriod := int64(10)
    	terminationGracePeriod := int64(10)
    	lifecycle := &v1.Lifecycle{
    		// Left PostStart as nil
    		PreStop: &v1.LifecycleHandler{
    			Exec: &v1.ExecAction{
    				Command: []string{"action1", "action2"},
    			},
    			HTTPGet: &v1.HTTPGetAction{
    				Path:   "path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

                )
                lifecycle(
                    'A lifecycle info log message.',
                    'An error message which is logged at LIFECYCLE level',
                    'A task message which is logged at LIFECYCLE level',
                    'settings lifecycle log',
                    'init : lifecycle log',
                    'init :buildSrc lifecycle log',
                    'external LIFECYCLE error message',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/DESIGN.md

    ### Additional notes
    
    Tiering and lifecycle transition are applicable only to erasure/distributed MinIO.
    
    ## Explore Further
    
    - [MinIO | Golang Client API Reference](https://min.io/docs/minio/linux/developers/go/API.html#setbucketlifecycle-ctx-context-context-bucketname-config-lifecycle-configuration-error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top