Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,209 for LIFECYCLE (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/internal/project/ant/AntLoggingAdapter.java

                    return LogLevel.LIFECYCLE;
                } else if (defaultLevel.ordinal() >= LogLevel.LIFECYCLE.ordinal()
                    && AntMessagePriority.from(messagePriority).ordinal() < lifecycleLogLevel.ordinal()) {
                    // would normally log at a level higher than (or equal to) lifecycle, but the Ant message priority is
                    // actually lower than the set lifecycle log level
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/scheduling/v1beta1/types.go

    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.11
    // +k8s:prerelease-lifecycle-gen:deprecated=1.14
    // +k8s:prerelease-lifecycle-gen:removed=1.22
    // +k8s:prerelease-lifecycle-gen:replacement=scheduling.k8s.io,v1,PriorityClass
    
    // DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/nodeshutdown/nodeshutdown_manager.go

    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/prober"
    	"k8s.io/utils/clock"
    )
    
    // Manager interface provides methods for Kubelet to manage node shutdown.
    type Manager interface {
    	Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult
    	Start() error
    	ShutdownStatus() error
    }
    
    // Config represents Manager configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 24 09:20:34 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. pkg/kubelet/lifecycle/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package lifecycle contains handlers for pod lifecycle events and interfaces
    // to integrate with kubelet admission, synchronization, and eviction of pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 21 01:44:54 UTC 2020
    - 799 bytes
    - Viewed (0)
  5. pkg/kubelet/cm/admission/errors.go

    	return ErrorReasonUnexpected
    }
    
    func GetPodAdmitResult(err error) lifecycle.PodAdmitResult {
    	if err == nil {
    		return lifecycle.PodAdmitResult{Admit: true}
    	}
    
    	var admissionErr Error
    	if !errors.As(err, &admissionErr) {
    		admissionErr = &unexpectedAdmissionError{err}
    	}
    
    	return lifecycle.PodAdmitResult{
    		Message: admissionErr.Error(),
    		Reason:  admissionErr.Type(),
    		Admit:   false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 21:15:37 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/WelcomeMessageAction.java

                    logger.lifecycle("");
                    logger.lifecycle("Welcome to Gradle " + gradleVersion.getVersion() + "!");
    
                    String featureList = readReleaseFeatures();
    
                    if (StringUtils.isNotBlank(featureList)) {
                        logger.lifecycle("");
                        logger.lifecycle("Here are the highlights of this release:");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    
    /**
     * Interface that can be provided by the plugin to wire in custom lifecycles
     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
     * in the plugin, Maven will provide a default implementation that will parse
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/LogEventSerializerTest.groovy

            when:
            def event = new LogEvent(TIMESTAMP, CATEGORY, LogLevel.LIFECYCLE, MESSAGE, new RuntimeException(), new OperationIdentifier(42L))
            def result = serialize(event, serializer)
    
            then:
            result instanceof LogEvent
            result.timestamp == TIMESTAMP
            result.category == CATEGORY
            result.logLevel == LogLevel.LIFECYCLE
            result.message == MESSAGE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/api/internal/project/ant/AntLoggingAdapterTest.groovy

            null                       | Project.MSG_ERR     | LogLevel.ERROR
            AntMessagePriority.DEBUG   | Project.MSG_DEBUG   | LogLevel.LIFECYCLE
            AntMessagePriority.DEBUG   | Project.MSG_VERBOSE | LogLevel.LIFECYCLE
            AntMessagePriority.DEBUG   | Project.MSG_INFO    | LogLevel.LIFECYCLE
            AntMessagePriority.DEBUG   | Project.MSG_WARN    | LogLevel.WARN
            AntMessagePriority.DEBUG   | Project.MSG_ERR     | LogLevel.ERROR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

            """
    
            file("lifecycle/lifecycle-viewmodel-savedstate/build.gradle") << """
                plugins {
                    id("com.android.library")
                }
    
                android {
                    namespace "androidx.lifecycle.viewmodel.savedstate"
                    compileSdkVersion "android-34"
                }
            """
    
            file("lifecycle/lifecycle-viewmodel/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top