Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 749 for reason2 (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

                this.group = group;
                this.module = module;
                this.versionConstraint = versionConstraint;
                this.reason = reason;
                this.attributes = attributes;
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/certificates/v1/generated.proto

      // status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // message contains a human readable message with details about the request state
      // +optional
      optional string message = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

                    this.origin = origin;
                }
            }
    
            /**
             * Sets the reason, if not set already.
             */
            void withReason(String reason) {
                if (this.reason == null) {
                    this.reason = reason;
                }
            }
    
            void addChecksum(String checksum) {
                if (value == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. pkg/kubelet/status/generate.go

    	// If the status of ContainersReady is not True, return the same status, reason and message as ContainersReady.
    	if containersReady.Status != v1.ConditionTrue {
    		return v1.PodCondition{
    			Type:    v1.PodReady,
    			Status:  containersReady.Status,
    			Reason:  containersReady.Reason,
    			Message: containersReady.Message,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    	// RollbackRevisionNotFound is not found rollback event reason
    	RollbackRevisionNotFound = "DeploymentRollbackRevisionNotFound"
    	// RollbackTemplateUnchanged is the template unchanged rollback event reason
    	RollbackTemplateUnchanged = "DeploymentRollbackTemplateUnchanged"
    	// RollbackDone is the done rollback event reason
    	RollbackDone = "DeploymentRollback"
    
    	// Reasons for deployment conditions
    	//
    	// Progressing:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        lastTransitionTime: "2019-07-09T16:22:08Z"
        message: containerd is functioning properly
        reason: FrequentContainerdRestart
        status: "False"
        type: FrequentContainerdRestart
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:22:06Z"
        message: docker overlay2 is functioning properly
        reason: CorruptDockerOverlay2
        status: "False"
        type: CorruptDockerOverlay2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/kubelet/status/generate_test.go

    		})
    	}
    }
    
    func getPodCondition(conditionType v1.PodConditionType, status v1.ConditionStatus, reason, message string) v1.PodCondition {
    	return v1.PodCondition{
    		Type:    conditionType,
    		Status:  status,
    		Reason:  reason,
    		Message: message,
    	}
    }
    
    func getReadyStatus(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name:  cName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

            String alias
            String kind = 'alias'
            String notation
            String reason
            String solution
    
            InvalidDependencyNotation() {
                intro = """Invalid catalog definition:
    """
            }
    
            InvalidDependencyNotation usingSettingsApi() {
                reason = "The 'to(String)' method only supports 'group:artifact:version' coordinates."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            "cacheIf('cache-if reason') { false }"            | CACHE_IF_SPEC_NOT_SATISFIED    | "'cache-if reason' not satisfied"
            "doNotCacheIf('do-not-cache-if reason') { true }" | DO_NOT_CACHE_IF_SPEC_SATISFIED | "'do-not-cache-if reason' satisfied"
        }
    
        def "cacheability for a #taskType task can be enabled via #condition"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

                    assert actualRejects == expectedRejects
                    this
                }
    
                DependencyView hasReason(String reason) {
                    assert find()?.reason == reason
                    this
                }
    
                DependencyView hasAttribute(String attribute) {
                    assert find()?.attributes?.containsKey(attribute)
                    this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top