Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,152 for _reasonx (0.15 sec)

  1. pilot/pkg/config/kube/gateway/conditions.go

    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    					reason = ref.DeniedReason.Reason
    				}
    				if wantReason != reason {
    					// Skip this one, it is for a less relevant reason
    					continue
    				}
    				exist, f := report[k]
    				if f {
    					if ref.DeniedReason != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. 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)
  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/kubelet/lifecycle/predicate_test.go

    		},
    	}
    	for _, test := range resourceTests {
    		t.Run(test.name, func(t *testing.T) {
    			test.nodeInfo.SetNode(test.node)
    			reasons := generalFilter(test.pod, test.nodeInfo)
    			if diff := cmp.Diff(test.reasons, reasons); diff != "" {
    				t.Errorf("unexpected failure reasons (-want, +got):\n%s", diff)
    			}
    		})
    	}
    }
    
    func TestRejectPodAdmissionBasedOnOSSelector(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. 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)
  7. pkg/apis/certificates/types.go

    	// Approved, Denied, and Failed conditions may not be "False" or "Unknown".
    	// If unset, should be treated as "True".
    	// +optional
    	Status api.ConditionStatus
    	// brief reason for the request state
    	// +optional
    	Reason string
    	// human readable message with details about the request state
    	// +optional
    	Message string
    	// timestamp for the last update to this condition
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top