Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,209 for LIFECYCLE (0.22 sec)

  1. pkg/apis/extensions/v1beta1/zz_generated.defaults.go

    				}
    			}
    		}
    		if a.Lifecycle != nil {
    			if a.Lifecycle.PostStart != nil {
    				if a.Lifecycle.PostStart.HTTPGet != nil {
    					v1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
    				}
    			}
    			if a.Lifecycle.PreStop != nil {
    				if a.Lifecycle.PreStop.HTTPGet != nil {
    					v1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
    				}
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/handlers_test.go

    				NewHeader: http.Header{
    					"Accept":     {"*/*"},
    					"User-Agent": {"kube-lifecycle/."},
    					"Host":       {"from.header"},
    				},
    			},
    		},
    	}
    
    	containerID := kubecontainer.ContainerID{Type: "test", ID: "abc1234"}
    	containerName := "containerFoo"
    
    	container := v1.Container{
    		Name: containerName,
    		Lifecycle: &v1.Lifecycle{
    			PostStart: &v1.LifecycleHandler{},
    		},
    		Ports: []v1.ContainerPort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildLogLevelFilterRendererTest.groovy

            renderer.onOutput(event("lifecycle", LogLevel.LIFECYCLE))
            renderer.onOutput(event("warn", LogLevel.WARN))
    
            then:
            1 * listener.onOutput({it instanceof LogLevelChangeEvent})
            1 * listener.onOutput({it instanceof LogEvent && it.message == "warn"})
            0 * _
        }
    
        def "default to LogLevel.LIFECYCLE log level"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.lifecycle.DefaultLifecycles;
    import org.apache.maven.lifecycle.LifeCyclePluginAnalyzer;
    import org.apache.maven.lifecycle.Lifecycle;
    import org.apache.maven.lifecycle.mapping.LifecycleMapping;
    import org.apache.maven.lifecycle.mapping.LifecycleMojo;
    import org.apache.maven.lifecycle.mapping.LifecyclePhase;
    import org.apache.maven.model.InputLocation;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/apis/batch/v1/zz_generated.defaults.go

    				}
    			}
    		}
    		if a.Lifecycle != nil {
    			if a.Lifecycle.PostStart != nil {
    				if a.Lifecycle.PostStart.HTTPGet != nil {
    					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
    				}
    			}
    			if a.Lifecycle.PreStop != nil {
    				if a.Lifecycle.PreStop.HTTPGet != nil {
    					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PreStop.HTTPGet)
    				}
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 20.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerTest.groovy

            logger().info(Logging.LIFECYCLE, "message")
    
            then:
            singleLogEvent().message("message").logLevel(LIFECYCLE).eventExpected(eventExpected)
    
            when:
            logger().info(Logging.LIFECYCLE, "{}", arg1)
    
            then:
            singleLogEvent().message("arg1").logLevel(LIFECYCLE).eventExpected(eventExpected)
    
            when:
            logger().info(Logging.LIFECYCLE, "{} {}", arg1, arg2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java

        @Nonnull
        String goal() default "";
    
        /**
         * Lifecycle id of the lifecycle that defines {@link #phase()}. Only valid in combination with {@link #phase()}. If
         * not specified, Maven will use the lifecycle of the current build.
         *
         * @see <a href="https://maven.apache.org/maven-plugin-api/lifecycle-mappings.html">Lifecycle Mappings</a>
         * @return the lifecycle id
         */
        @Nonnull
        String lifecycle() default "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and
     * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to
     * calculate the execution plan, but custom lifecycles can use alternative mapping strategies.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleMappingDelegate.java

    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and
     * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to
     * calculate the execution plan, but custom lifecycles can use alternative mapping strategies.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. okhttp-android/src/main/baseline-prof.txt

    HSPLandroidx/lifecycle/Lifecycle$1;-><clinit>()V
    HSPLandroidx/lifecycle/Lifecycle$Event;-><clinit>()V
    HSPLandroidx/lifecycle/Lifecycle$Event;-><init>(Ljava/lang/String;I)V
    HSPLandroidx/lifecycle/Lifecycle$Event;->getTargetState()Landroidx/lifecycle/Lifecycle$State;
    HSPLandroidx/lifecycle/Lifecycle$Event;->upFrom(Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$Event;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (1)
Back to top